mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-26 00:12: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.
59 lines
1.0 KiB
Makefile
59 lines
1.0 KiB
Makefile
SUBDIRS = xpm tiff po
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
wpexecbindir = @wprefs_bindir@
|
|
|
|
wpexecbin_PROGRAMS = WPrefs
|
|
|
|
wpdatadir = @wprefs_datadir@
|
|
|
|
wpdata_DATA = WPrefs.tiff WPrefs.xpm
|
|
|
|
EXTRA_DIST = $(wpdata_DATA)
|
|
|
|
WPrefs_SOURCES = \
|
|
main.c \
|
|
WPrefs.c \
|
|
WPrefs.h \
|
|
Appearance.c \
|
|
Configurations.c \
|
|
Expert.c \
|
|
Focus.c \
|
|
FontSimple.c \
|
|
Icons.c \
|
|
KeyboardSettings.c \
|
|
KeyboardShortcuts.c \
|
|
Menu.c \
|
|
MenuPreferences.c \
|
|
MouseSettings.c \
|
|
Paths.c \
|
|
Preferences.c \
|
|
TexturePanel.c \
|
|
TexturePanel.h \
|
|
Themes.c \
|
|
WindowHandling.c \
|
|
Workspace.c \
|
|
double.c \
|
|
double.h \
|
|
editmenu.c \
|
|
editmenu.h \
|
|
imagebrowser.c \
|
|
imagebrowser.h \
|
|
xmodifier.c
|
|
|
|
AM_CPPFLAGS = -DLOCALEDIR=\"$(NLSDIR)\" -DRESOURCE_PATH=\"$(wpdatadir)\"
|
|
|
|
AM_CFLAGS = @NOSTRICTALIASING@
|
|
|
|
INCLUDES = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@
|
|
|
|
WPrefs_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
WPrefs_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.la\
|
|
$(top_builddir)/WINGs/libWUtil.la\
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@XFTLIBS@ \
|
|
@INTLIBS@
|