mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +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.
78 lines
1.9 KiB
Makefile
78 lines
1.9 KiB
Makefile
SUBDIRS = po
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
|
|
bin_PROGRAMS = wxcopy wxpaste wdwrite wdread getstyle setstyle convertfonts \
|
|
seticons geticonset wmsetbg wmagnify wmgenmenu
|
|
|
|
bin_SCRIPTS = wmaker.inst wm-oldmenu2new wkdemenu.pl
|
|
|
|
EXTRA_DIST = wmaker.inst.in bughint wm-oldmenu2new directjpeg.c wkdemenu.pl
|
|
|
|
AM_CPPFLAGS = -DLOCALEDIR=\"$(NLSDIR)\"
|
|
|
|
INCLUDES = $(DFLAGS) -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib \
|
|
@HEADER_SEARCH_PATH@ \
|
|
-DETCDIR=\"sysconfdir\" -DDATADIR=\"pkgdatadir\"
|
|
|
|
liblist= @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
wdwrite_LDADD = $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
wdread_LDADD = $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
wxcopy_LDADD = @XLFLAGS@ @XLIBS@
|
|
|
|
wxpaste_LDADD = @XLFLAGS@ @XLIBS@
|
|
|
|
getstyle_LDADD = $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
getstyle_SOURCES = getstyle.c fontconv.c
|
|
|
|
setstyle_LDADD = \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XLFLAGS@ @XLIBS@ $(liblist)
|
|
|
|
setstyle_SOURCES = setstyle.c fontconv.c
|
|
|
|
convertfonts_LDADD = $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
convertfonts_SOURCES = convertfonts.c fontconv.c
|
|
|
|
seticons_LDADD= $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
geticonset_LDADD= $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
wmagnify_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
wmsetbg_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@XLFLAGS@ @XLIBS@ @XFTLIBS@ @INTLIBS@
|
|
|
|
wmgenmenu_LDADD = \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@INTLIBS@
|
|
|
|
wmgenmenu_SOURCES = wmgenmenu.c wmgenmenu.h
|
|
|
|
CLEANFILES = wmaker.inst
|
|
|
|
wmaker.inst: $(srcdir)/wmaker.inst.in ./Makefile
|
|
-rm -f wmaker.inst
|
|
sed -e "s|#pkgdatadir#|$(pkgdatadir)|" \
|
|
-e "s|#sysconfdir#|$(sysconfdir)/WindowMaker|" \
|
|
-e "s|#version#|$(VERSION)|" \
|
|
-e "s|#bindir#|$(bindir)|" \
|
|
$(srcdir)/wmaker.inst.in >wmaker.inst
|
|
|
|
chmod 755 wmaker.inst
|
|
|