mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +01:00
This patch adds the --disable-verbose-compile switch to the configure script. When this option is used it reduces the verbosity of compilation messages to the essential. However compiler warnings are not affected and thus gain visibility by not standing in the middle of a storm of other messages. In summary, the compilation messages are reduced to a stream of CC array.o CC bagtree.o CC configuration.o CC connection.o CC data.o [...] instead of a mind-boggling flux of gcc -DHAVE_CONFIG_H -I. -I../src -I../WINGs/WINGs -I../wrlib -I../src -I/usr/include/freetype2 -I/usr/local/include -DLOCALEDIR=\"/usr/local/lib/loca\"/usr/local/share/WINGs\" -DDEBUG -fno-strict-aliasing -g -O2 -c array.c gcc -DHAVE_CONFIG_H -I. -I../src -I../WINGs/WINGs -I../wrlib -I../src -I/usr/include/freetype2 -I/usr/local/include -DLOCALEDIR=\"/usr/local/lib/loca\"/usr/local/share/WINGs\" -DDEBUG -fno-strict-aliasing -g -O2 -c bagtree.c [...]
143 lines
2.5 KiB
Makefile
143 lines
2.5 KiB
Makefile
## automake input file for WINGs
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
SUBDIRS = WINGs . po Documentation Resources Examples Extras Tests
|
|
|
|
LIBTOOL = $(QUIET) $(SHELL) $(top_srcdir)/libtool $(LIBTOOL_ARG)
|
|
|
|
libWINGs_a_AR = $(QUIET_AR) $(AR) $(ARFLAGS)
|
|
|
|
libWUtil_a_AR = $(QUIET_AR) $(AR) $(ARFLAGS)
|
|
|
|
#libWINGs_la_LDFLAGS = -version-info 1:1:0
|
|
|
|
bin_SCRIPTS = get-wings-flags get-wutil-flags
|
|
|
|
lib_LIBRARIES = libWINGs.a libWUtil.a
|
|
|
|
|
|
LDADD= libWINGs.a $(top_builddir)/wrlib/libwraster.la @INTLIBS@
|
|
|
|
|
|
EXTRA_DIST = BUGS make-rgb python/Makefile python/README python/WINGs.i \
|
|
python/WINGs.py python/setup.py python/test.py
|
|
|
|
|
|
# wbutton.c
|
|
libWINGs_a_SOURCES = \
|
|
array.c \
|
|
bagtree.c \
|
|
configuration.c \
|
|
connection.c \
|
|
data.c \
|
|
dragcommon.c \
|
|
dragdestination.c \
|
|
dragsource.c \
|
|
error.c \
|
|
findfile.c \
|
|
handlers.c \
|
|
hashtable.c \
|
|
host.c \
|
|
international.c \
|
|
memory.c \
|
|
misc.c \
|
|
notification.c \
|
|
proplist.c \
|
|
rgb.h \
|
|
selection.c \
|
|
snprintf.c \
|
|
string.c \
|
|
tree.c \
|
|
userdefaults.c \
|
|
usleep.c \
|
|
wapplication.c \
|
|
wappresource.c \
|
|
wballoon.c \
|
|
wbox.c \
|
|
wbrowser.c \
|
|
wbutton.c \
|
|
wcolor.c \
|
|
wcolorpanel.c \
|
|
wcolorwell.c \
|
|
wconfig.h \
|
|
wevent.c \
|
|
wfilepanel.c \
|
|
wframe.c \
|
|
wfont.c \
|
|
wfontpanel.c \
|
|
widgets.c \
|
|
winputmethod.c \
|
|
wlabel.c \
|
|
wlist.c \
|
|
wmenuitem.c \
|
|
wmisc.c \
|
|
wpanel.c \
|
|
wpixmap.c \
|
|
wpopupbutton.c \
|
|
wprogressindicator.c \
|
|
wruler.c \
|
|
wscroller.c \
|
|
wscrollview.c \
|
|
wslider.c \
|
|
wsplitview.c \
|
|
wtabview.c \
|
|
wtext.c \
|
|
wtextfield.c \
|
|
wview.c \
|
|
wwindow.c
|
|
|
|
|
|
libWUtil_a_SOURCES = \
|
|
array.c \
|
|
bagtree.c \
|
|
connection.c \
|
|
data.c \
|
|
error.c \
|
|
findfile.c \
|
|
handlers.c \
|
|
hashtable.c \
|
|
host.c \
|
|
international.c \
|
|
memory.c \
|
|
misc.c \
|
|
notification.c \
|
|
proplist.c \
|
|
snprintf.c \
|
|
string.c \
|
|
tree.c \
|
|
userdefaults.c \
|
|
usleep.c \
|
|
wapplication.c \
|
|
wconfig.h \
|
|
wutil.c
|
|
|
|
|
|
AM_CPPFLAGS = -DLOCALEDIR=\"$(NLSDIR)\" -DRESOURCE_PATH=\"$(datadir)/WINGs\" -DDEBUG
|
|
|
|
AM_CFLAGS = @NOSTRICTALIASING@
|
|
|
|
INCLUDES = -I$(top_srcdir)/WINGs/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
@XFTFLAGS@ @HEADER_SEARCH_PATH@
|
|
|
|
DISTCLEANFILES = WINGs.pc
|
|
|
|
install-exec-local:
|
|
@$(NORMAL_INSTALL)
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir)/pkgconfig
|
|
@list='WINGs.pc'; for p in $$list; do \
|
|
if test -f $$p; then \
|
|
echo "$(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/pkgconfig/"; \
|
|
$(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/pkgconfig/; \
|
|
else :; fi; \
|
|
done
|
|
|
|
.c.o:
|
|
$(QUIET)$(COMPILE) -c $<
|
|
|
|
.c.obj:
|
|
$(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
|
|
.c.lo:
|
|
$(QUIET)$(LTCOMPILE) -c -o $@ $<
|