mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-22 14:08:06 +01:00
I just spent an hour trying to find out why the latest wmaker-crm was ignoring a number of the preferences in my configuration file. It turns out the problem was that commit f41db5 added a value into the middle of the enum in src/keybind.h, and the setting of AUTOMAKE_OPTIONS = no-dependencies in all the Makefile.ams meant that make wasn't smart enough to rebuild the files depending on it. Would anyone mind if we just remove no-dependencies from AUTOMAKE_OPTIONS? People can still run ./configure with --disable-dependency-tracking to disable it at configure time.
24 lines
476 B
Makefile
24 lines
476 B
Makefile
## automake input file for wrlib
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
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)
|