mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-27 17:02:33 +01:00
configure: Remove --disable-verbose-compile hack
Instead of using the --disable-verbose-compile hack, let's use the standard option --enable-silent-rules (or 'make V=0' directly) available with autoconf 1.11 and higher. This is enabled in autoconf by using 'silent-rules' in AM_INIT_AUTOMAKE. The verbosity of compilation is reduced in a similar manner as using the --disable-verbose-compile option, so we can remove all that ugly hackery.
This commit is contained in:
@@ -10,8 +10,6 @@ INCLUDES = -I$(srcdir)/.. $(DFLAGS) @HEADER_SEARCH_PATH@
|
||||
|
||||
LIBLIST = $(top_builddir)/wrlib/libwraster.la
|
||||
|
||||
LIBTOOL = $(QUIET)$(top_srcdir)/libtool --silent
|
||||
|
||||
testdraw_SOURCES = testdraw.c
|
||||
testdraw_LDADD = $(LIBLIST)
|
||||
|
||||
@@ -23,12 +21,3 @@ testrot_LDADD = $(LIBLIST)
|
||||
|
||||
view_SOURCES= view.c
|
||||
view_LDADD = $(LIBLIST)
|
||||
|
||||
.c.o:
|
||||
$(QUIET)$(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
$(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
$(QUIET)$(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
Reference in New Issue
Block a user