mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +01:00
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.
24 lines
492 B
Makefile
24 lines
492 B
Makefile
## automake input file for wrlib
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
noinst_PROGRAMS = testdraw testgrad testrot view
|
|
|
|
EXTRA_DIST = test.png tile.xpm ballot_box.xpm
|
|
|
|
INCLUDES = -I$(srcdir)/.. $(DFLAGS) @HEADER_SEARCH_PATH@
|
|
|
|
LIBLIST = $(top_builddir)/wrlib/libwraster.la
|
|
|
|
testdraw_SOURCES = testdraw.c
|
|
testdraw_LDADD = $(LIBLIST)
|
|
|
|
testgrad_SOURCES = testgrad.c
|
|
testgrad_LDADD = $(LIBLIST)
|
|
|
|
testrot_SOURCES = testrot.c
|
|
testrot_LDADD = $(LIBLIST)
|
|
|
|
view_SOURCES= view.c
|
|
view_LDADD = $(LIBLIST)
|