mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 12:58:08 +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 [...]
32 lines
861 B
Makefile
32 lines
861 B
Makefile
|
|
defsdatadir = $(sysconfdir)/WindowMaker
|
|
|
|
defsdata_DATA = WMRootMenu WMWindowAttributes WindowMaker WMState WMGLOBAL
|
|
|
|
wpexecbindir = @wprefs_bindir@
|
|
|
|
EXTRA_DIST = WMGLOBAL WMWindowAttributes.in WindowMaker.in WMState.in
|
|
|
|
CLEANFILES = WMWindowAttributes WindowMaker WMState
|
|
|
|
WMWindowAttributes: $(srcdir)/WMWindowAttributes.in
|
|
@-rm -f WMWindowAttributes
|
|
@sed -e "s:#extension#:@ICONEXT@:" \
|
|
$(srcdir)/WMWindowAttributes.in > WMWindowAttributes
|
|
chmod 644 WMWindowAttributes
|
|
|
|
WindowMaker: $(srcdir)/WindowMaker.in
|
|
@-rm -f WindowMaker
|
|
@sed -e "s:#pkgdatadir#:$(pkgdatadir):" $(srcdir)/WindowMaker.in \
|
|
> WindowMaker
|
|
chmod 644 WindowMaker
|
|
|
|
WMState: $(srcdir)/WMState.in
|
|
@-rm -f WMState
|
|
@sed -e "s:#wprefs#:$(wpexecbindir)/WPrefs:" $(srcdir)/WMState.in > WMState
|
|
chmod 644 WMState
|
|
|
|
WMRootMenu: $(srcdir)/../plmenu
|
|
-cp -f $(srcdir)/../plmenu WMRootMenu
|
|
|