mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-18 12:00:31 +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.
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
## automake input file for WINGs - Examples
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
|
|
noinst_PROGRAMS = connect server fontl puzzle colorpick
|
|
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
fontl_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
puzzle_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
connect_DEPENDENCIES = $(top_builddir)/WINGs/libWUtil.la
|
|
|
|
connect_LDADD = $(top_builddir)/WINGs/libWUtil.la @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
server_DEPENDENCIES = $(top_builddir)/WINGs/libWUtil.la
|
|
|
|
server_LDADD = $(top_builddir)/WINGs/libWUtil.la @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ -DDEBUG
|
|
|
|
LIBTOOL = $(QUIET) $(SHELL) $(top_builddir)/libtool $(LIBTOOL_ARG)
|
|
|
|
.c.o:
|
|
$(QUIET)$(COMPILE) -c $<
|
|
|
|
.c.obj:
|
|
$(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
|
|
.c.lo:
|
|
$(QUIET)$(LTCOMPILE) -c -o $@ $<
|