mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-30 02:12:30 +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.
23 lines
598 B
Makefile
23 lines
598 B
Makefile
## automake input file for WINGs - Tests
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
noinst_PROGRAMS = wtest wmquery wmfile testmywidget
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
|
|
testmywidget_SOURCES = testmywidget.c mywidget.c mywidget.h
|
|
|
|
wtest_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
|
|
EXTRA_DIST = logo.xpm upbtn.xpm wm.html wm.png
|
|
|
|
INCLUDES = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @XFTFLAGS@ @HEADER_SEARCH_PATH@ \
|
|
-DDEBUG
|
|
|