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 [...]
83 lines
2.1 KiB
Makefile
83 lines
2.1 KiB
Makefile
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
|
|
bin_PROGRAMS = wxcopy wxpaste wdwrite wdread getstyle setstyle convertfonts \
|
|
seticons geticonset wmsetbg wmsetup wmagnify
|
|
|
|
bin_SCRIPTS = wmaker.inst wm-oldmenu2new wkdemenu.pl
|
|
|
|
EXTRA_DIST = wmaker.inst.in bughint wm-oldmenu2new directjpeg.c wkdemenu.pl
|
|
|
|
INCLUDES = $(DFLAGS) -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib \
|
|
@HEADER_SEARCH_PATH@ \
|
|
-DETCDIR=\"sysconfdir\" -DDATADIR=\"pkgdatadir\"
|
|
|
|
liblist= @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
wdwrite_LDADD = $(top_builddir)/WINGs/libWUtil.a $(liblist)
|
|
|
|
wdread_LDADD = $(top_builddir)/WINGs/libWUtil.a $(liblist)
|
|
|
|
wxcopy_LDADD = @XLFLAGS@ @XLIBS@
|
|
|
|
wxpaste_LDADD = @XLFLAGS@ @XLIBS@
|
|
|
|
getstyle_LDADD = $(top_builddir)/WINGs/libWUtil.a $(liblist)
|
|
|
|
getstyle_SOURCES = getstyle.c fontconv.c
|
|
|
|
setstyle_LDADD = \
|
|
$(top_builddir)/WINGs/libWUtil.a \
|
|
@XLFLAGS@ @XLIBS@ $(liblist)
|
|
|
|
setstyle_SOURCES = setstyle.c fontconv.c
|
|
|
|
convertfonts_LDADD = $(top_builddir)/WINGs/libWUtil.a $(liblist)
|
|
|
|
convertfonts_SOURCES = convertfonts.c fontconv.c
|
|
|
|
seticons_LDADD= $(top_builddir)/WINGs/libWUtil.a $(liblist)
|
|
|
|
geticonset_LDADD= $(top_builddir)/WINGs/libWUtil.a $(liblist)
|
|
|
|
wmagnify_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.a \
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@XFTLIBS@ @INTLIBS@ @DLLIBS@
|
|
|
|
wmsetup_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.a \
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@XFTLIBS@ @INTLIBS@ @DLLIBS@
|
|
|
|
wmsetbg_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.a \
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@XLFLAGS@ @XLIBS@ @XFTLIBS@ @INTLIBS@ @DLLIBS@
|
|
|
|
CLEANFILES = wmaker.inst
|
|
|
|
wmaker.inst: $(srcdir)/wmaker.inst.in ./Makefile
|
|
@-rm -f wmaker.inst
|
|
@sed -e "s|#pkgdatadir#|$(pkgdatadir)|" \
|
|
-e "s|#sysconfdir#|$(sysconfdir)/WindowMaker|" \
|
|
-e "s|#version#|$(VERSION)|" \
|
|
-e "s|#bindir#|$(bindir)|" \
|
|
-e "s|#LITE#|@LITE@|" \
|
|
$(srcdir)/wmaker.inst.in >wmaker.inst
|
|
|
|
chmod 755 wmaker.inst
|
|
|
|
LIBTOOL = $(QUIET) $(SHELL) $(top_srcdir)/libtool $(LIBTOOL_ARG)
|
|
|
|
.c.o:
|
|
$(QUIET)$(COMPILE) -c $<
|
|
|
|
.c.obj:
|
|
$(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
|
|
.c.lo:
|
|
$(QUIET)$(LTCOMPILE) -c -o $@ $<
|