]> git.draconx.ca Git - upkg.git/blob - Makefile.am
Improve incremental builds with unmodified GOB headers.
[upkg.git] / Makefile.am
1 # Copyright © 2009-2012, 2015, 2019-2020 Nick Bowler
2 #
3 # License WTFPL2: Do What The Fuck You Want To Public License, version 2.
4 # This is free software: you are free to do what the fuck you want to.
5 # There is NO WARRANTY, to the extent permitted by law.
6
7 AUTOMAKE_OPTIONS = parallel-tests color-tests
8 ACLOCAL_AMFLAGS = -I m4 -I common/m4
9 MAINTAINERCLEANFILES =
10 MOSTLYCLEANFILES =
11 DISTCLEANFILES =
12 CLEANFILES =
13
14 # Distribution should be buildable without working gob.
15 AM_DISTCHECK_CONFIGURE_FLAGS = GOB2=false
16
17 EXTRA_DIST = $(MAINTAINERCLEANFILES) m4/gnulib-cache.m4
18
19 AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src \
20         -I$(top_srcdir)/$(DX_BASEDIR)/src \
21         -I$(top_builddir)/lib -I$(top_srcdir)/lib \
22         -DPKGLIBDIR=\"$(pkglibdir)\" -DPKGDATADIR=\"$(pkgdatadir)\"
23
24 AM_CFLAGS = $(LTDLINCL) $(GLIB_CFLAGS) $(LIBMODPLUG_CFLAGS)
25
26 bin_PROGRAMS = upkg
27 lib_LTLIBRARIES = libupkg.la libuobject.la
28 pkglib_LTLIBRARIES = engine.la
29 noinst_LTLIBRARIES =
30 EXTRA_LTLIBRARIES =
31 include_HEADERS =
32
33 dist_man_MANS = doc/man/upkg.1
34
35 # This trick should define orderonly to | iff we're using GNU make.
36 have_orderonly = $(findstring order-only,$(.FEATURES))
37 orderonly = $(have_orderonly:order-only=|)
38
39 upkg_SOURCES  = src/upkg.c src/upkg.h
40 upkg_LDFLAGS  = $(AM_LDFLAGS) -export-dynamic
41 upkg_LDADD    = libuobject.la libupkg.la libgnu.la $(GLIB_LIBS)
42 $(upkg_OBJECTS): $(gnulib_headers)
43
44 libupkg_la_SOURCES = src/libupkg.c common/src/pack.c common/src/pack.h
45
46 uobjectdir = $(includedir)/uobject
47 uobject_HEADERS = src/uobject/uobject.h src/uobject/exportable.h \
48         src/uobject/loadable.h src/uobject/module.h src/uobject/package.h \
49         src/uobject/vfs.h
50
51 libuobject_la_SOURCES = src/uobject/uobject.c src/uobject/module.c \
52         src/uobject/avl.c src/uobject/avl.h src/uobject/package.c \
53         src/uobject/exportable.c src/uobject/loadable.c src/uobject/vfs.c \
54         src/uobject/primitives.c
55 libuobject_la_LDFLAGS  = $(AM_LDFLAGS) -export-symbols-regex '^u_'
56 libuobject_la_LIBADD   = libgnu.la $(LIBLTDL) $(GLIB_LIBS)
57 $(libuobject_la_OBJECTS): $(gnulib_headers)
58
59 libuobject_la = libuobject.la
60 $(libuobject_la): $(LTDLDEPS)
61
62 moduleflags = -module -avoid-version -export-symbols-regex _LTX_
63
64 engine_GOBS = src/engine/palette.gob src/engine/texture.gob \
65         src/engine/music.gob src/engine/sound.gob src/engine/mesh.gob
66 EXTRA_DIST += $(engine_GOBS)
67
68 MAINTAINERCLEANFILES += $(engine_GOBS:.gob=.gobstamp) \
69         $(engine_GOBS:.gob=.c) $(engine_GOBS:.gob=.h)
70
71 engine_la_SOURCES = $(engine_GOBS:.gob=.c) $(engine_GOBS:.gob=.h) \
72         src/engine/engine.c \
73         src/engine/music-module.h \
74         src/engine/pcx.c \
75         src/engine/pcx.h
76 engine_la_LDFLAGS  = $(AM_LDFLAGS) $(moduleflags)
77 engine_la_LIBADD   = $(GLIB_LIBS)
78 $(engine_la_OBJECTS): $(orderonly) $(engine_GOBS:.gob=.gobstamp)
79
80 if USE_DUMMYMOD
81 engine_la_SOURCES += src/engine/music-dummymod.c
82 endif
83
84 if USE_LIBMODPLUG
85 engine_la_SOURCES  += src/engine/music-modplug.c src/engine/modplug-types.h
86 engine_la_LIBADD   += $(LIBMODPLUG_LIBS)
87 endif
88
89 check_LTLIBRARIES = libtest.la
90 check_PROGRAMS = test/decodeindex test/pcxrle
91
92 libtest_la_SOURCES = test/common.c test/common.h
93
94 test_decodeindex_LDADD = libupkg.la libgnu.la libtest.la
95 $(test_decodeindex_OBJECTS): $(gnulib_headers)
96 test_pcxrle_LDADD = src/engine/pcx.lo libupkg.la libgnu.la libtest.la
97 $(test_pcxrle_OBJECTS): $(gnulib_headers)
98
99 TESTS_ENVIRONMENT = SHELL='$(SHELL)' EXEEXT='$(EXEEXT)'
100 TEST_EXTENSIONS = .sh
101 SH_LOG_COMPILER = $(SHELL)
102
103 TESTS = tests/libupkg-index-decode.sh tests/engine-pcx-rlencode.sh
104 EXTRA_DIST += $(TESTS)
105
106 # Supporting rules for GObject Builder
107 GOB_V   = $(GOB_V_@AM_V@)
108 GOB_V_  = $(GOB_V_@AM_DEFAULT_V@)
109 GOB_V_0 = @printf '  %$(DX_ALIGN_V)s %s\n' 'GOB     ' $<;
110
111 # Unfortunately, GOB's output filenames depend on the contents of the gob file,
112 # rather than its filename.  This isn't really suitable for use with make, so
113 # this rule has to make some assumptions about the source tree layout.
114 .gob.gobstamp:
115 if HAVE_GOB2_DYN
116         $(AM_V_at) touch $@.tmp
117         $(GOB_V) od='$(@D)'; case $$od in \
118           src/*) od=src ;; \
119           */src/*) od=$${od%/src/*}/src ;; \
120           esac; $(GOB2) -o "$$od" --file-sep=/ \
121             --no-private-header --no-touch-headers $<
122         $(AM_V_at) mv -f $@.tmp $@
123 else
124 if HAVE_GOB2
125         @echo "ERROR: *** $(GOB2) does not support dynamic types." 1>&2
126 else
127         @echo "ERROR: *** gob2 is missing on your system."  1>&2
128 endif
129         @:; { \
130          echo "       *** Because of this, I cannot compile $<, but"; \
131          echo "       *** (perhaps because you modified it) the sources appear out of date."; \
132          echo "       *** A newer version of gob2 may be required; the latest version"; \
133          echo "       *** may be found at <https://draconx.ca/projects/gob-dx/>."; \
134          echo "       *** See config.log for more details."; \
135         } 1>&2
136         @false
137 endif
138
139 STAMP_RECOVER = \
140         @if test -f $@; then :; else rm -f $<; $(MAKE) $(AM_MAKEFLAGS) $<; fi
141 .gobstamp.c: ; $(STAMP_RECOVER)
142 .gobstamp.h: ; $(STAMP_RECOVER)
143
144 # The gob rules refrain from updating unchanged headers for the convenience of
145 # developers, but the headers should be distributed with up-to-date timestamps.
146 dist-hook: update-headers
147 update-headers: unfuck-distdir
148         for f in $(engine_GOBS:.gob=.h); do \
149           touch -c '$(distdir)'/"$$f" || exit; \
150         done
151 .PHONY: update-headers
152
153 # When running "make dist" in a VPATH build with a read-only srcdir, Automake
154 # will produce a distribution with all files read-only.  Moreover, the files
155 # are read-only in distdir when the dist hooks are run.  This hook will
156 # manually fix up the permissions.  All dist hooks that modify files in
157 # distdir should list unfuck-distdir as a prerequisite.
158 dist-hook: unfuck-distdir
159 unfuck-distdir:
160         find '$(distdir)' -type f -exec chmod u+w {} +
161 .PHONY: unfuck-distdir
162
163 include $(top_srcdir)/lib/gnulib.mk
164 include $(top_srcdir)/libltdl/ltdl.mk