]> git.draconx.ca Git - upkg.git/blob - Makefile.am
Improve GOB rebuild rules for VPATH builds.
[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 EXTRA_DIST = $(MAINTAINERCLEANFILES) m4/gnulib-cache.m4
15
16 AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src \
17         -I$(top_srcdir)/$(DX_BASEDIR)/src \
18         -I$(top_builddir)/lib -I$(top_srcdir)/lib \
19         -DPKGLIBDIR=\"$(pkglibdir)\" -DPKGDATADIR=\"$(pkgdatadir)\"
20
21 AM_CFLAGS = $(LTDLINCL) $(GLIB_CFLAGS) $(LIBMODPLUG_CFLAGS)
22
23 bin_PROGRAMS = upkg
24 lib_LTLIBRARIES = libupkg.la libuobject.la
25 pkglib_LTLIBRARIES = engine.la
26 noinst_LTLIBRARIES =
27 EXTRA_LTLIBRARIES =
28 include_HEADERS =
29
30 dist_man_MANS = doc/man/upkg.1
31
32 # This trick should define orderonly to | iff we're using GNU make.
33 have_orderonly = $(findstring order-only,$(.FEATURES))
34 orderonly = $(have_orderonly:order-only=|)
35
36 upkg_SOURCES  = src/upkg.c src/upkg.h
37 upkg_LDFLAGS  = $(AM_LDFLAGS) -export-dynamic
38 upkg_LDADD    = libuobject.la libupkg.la libgnu.la $(GLIB_LIBS)
39 $(upkg_OBJECTS): $(gnulib_headers)
40
41 libupkg_la_SOURCES = src/libupkg.c common/src/pack.c common/src/pack.h
42
43 uobjectdir = $(includedir)/uobject
44 uobject_HEADERS = src/uobject/uobject.h src/uobject/exportable.h \
45         src/uobject/loadable.h src/uobject/module.h src/uobject/package.h \
46         src/uobject/vfs.h
47
48 libuobject_la_SOURCES = src/uobject/uobject.c src/uobject/module.c \
49         src/uobject/avl.c src/uobject/avl.h src/uobject/package.c \
50         src/uobject/exportable.c src/uobject/loadable.c src/uobject/vfs.c \
51         src/uobject/primitives.c
52 libuobject_la_LDFLAGS  = $(AM_LDFLAGS) -export-symbols-regex '^u_'
53 libuobject_la_LIBADD   = libgnu.la $(LIBLTDL) $(GLIB_LIBS)
54 $(libuobject_la_OBJECTS): $(gnulib_headers)
55
56 libuobject_la = libuobject.la
57 $(libuobject_la): $(LTDLDEPS)
58
59 moduleflags = -module -avoid-version -export-symbols-regex _LTX_
60
61 engine_GOBS = src/engine/palette.gob src/engine/texture.gob \
62         src/engine/music.gob src/engine/sound.gob src/engine/mesh.gob
63
64 MAINTAINERCLEANFILES += $(engine_GOBS:.gob=.gobstamp) \
65         $(engine_GOBS:.gob=.c) $(engine_GOBS:.gob=.h)
66
67 engine_la_SOURCES = $(engine_GOBS:.gob=.c) $(engine_GOBS:.gob=.h) \
68         src/engine/engine.c \
69         src/engine/music-module.h \
70         src/engine/pcx.c \
71         src/engine/pcx.h
72 engine_la_LDFLAGS  = $(AM_LDFLAGS) $(moduleflags)
73 engine_la_LIBADD   = $(GLIB_LIBS)
74 $(engine_la_OBJECTS): $(orderonly) $(engine_GOBS:.gob=.gobstamp)
75
76 if USE_DUMMYMOD
77 engine_la_SOURCES += src/engine/music-dummymod.c
78 endif
79
80 if USE_LIBMODPLUG
81 engine_la_SOURCES  += src/engine/music-modplug.c src/engine/modplug-types.h
82 engine_la_LIBADD   += $(LIBMODPLUG_LIBS)
83 endif
84
85 check_LTLIBRARIES = libtest.la
86 check_PROGRAMS = test/decodeindex test/pcxrle
87
88 libtest_la_SOURCES = test/common.c test/common.h
89
90 test_decodeindex_LDADD = libupkg.la libgnu.la libtest.la
91 $(test_decodeindex_OBJECTS): $(gnulib_headers)
92 test_pcxrle_LDADD = src/engine/pcx.lo libupkg.la libgnu.la libtest.la
93 $(test_pcxrle_OBJECTS): $(gnulib_headers)
94
95 TESTS_ENVIRONMENT = SHELL='$(SHELL)' EXEEXT='$(EXEEXT)'
96 TEST_EXTENSIONS = .sh
97 SH_LOG_COMPILER = $(SHELL)
98
99 TESTS = tests/libupkg-index-decode.sh tests/engine-pcx-rlencode.sh
100 EXTRA_DIST += $(TESTS)
101
102 # Supporting rules for GObject Builder
103 GOB_V   = $(GOB_V_@AM_V@)
104 GOB_V_  = $(GOB_V_@AM_DEFAULT_V@)
105 GOB_V_0 = @printf '  %$(DX_ALIGN_V)s %s\n' 'GOB     ' $<;
106
107 # Unfortunately, GOB's output filenames depend on the contents of the gob file,
108 # rather than its filename.  This isn't really suitable for use with make, so
109 # this rule has to make some assumptions about the source tree layout.
110 .gob.gobstamp:
111 if HAVE_GOB2_DYN
112         $(AM_V_at) touch $@.tmp
113         $(GOB_V) od='$(@D)'; case $$od in \
114           src/*) od=src ;; \
115           */src/*) od=$${od%/src/*}/src ;; \
116           esac; $(GOB2) -o "$$od" --file-sep=/ --no-private-header $<
117         $(AM_V_at) mv -f $@.tmp $@
118 else
119 if HAVE_GOB2
120         @echo "ERROR: *** $(GOB2) does not support dynamic types." 1>&2
121 else
122         @echo "ERROR: *** gob2 is missing on your system."  1>&2
123 endif
124         @:; { \
125          echo "       *** Because of this, I cannot compile $<, but"; \
126          echo "       *** (perhaps because you modified it) the sources appear out of date."; \
127          echo "       *** A newer version of gob2 may be required; the latest version"; \
128          echo "       *** may be found at <https://draconx.ca/projects/gob-dx/>."; \
129          echo "       *** See config.log for more details."; \
130         } 1>&2
131         @false
132 endif
133
134 STAMP_RECOVER = \
135         @if test -f $@; then :; else rm -f $<; $(MAKE) $(AM_MAKEFLAGS) $<; fi
136 .gobstamp.c: ; $(STAMP_RECOVER)
137 .gobstamp.h: ; $(STAMP_RECOVER)
138
139 include $(top_srcdir)/lib/gnulib.mk
140 include $(top_srcdir)/libltdl/ltdl.mk