]> git.draconx.ca Git - cdecl99.git/blob - Makefile.am
Actually generate (void) function parameter lists in randomdecl.
[cdecl99.git] / Makefile.am
1 # Copyright © 2011 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
9
10 # For Gnulib
11 MOSTLYCLEANFILES =
12 noinst_LTLIBRARIES =
13
14 AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src \
15         -I$(top_builddir)/lib -I$(top_srcdir)/lib \
16         -I$(top_builddir)/test \
17         -DBISON_LOCALEDIR=\"$(BISON_LOCALEDIR)\" \
18         -DLOCALEDIR=\"$(localedir)\"
19
20 AM_CFLAGS = $(GSL_CFLAGS)
21
22 MAINTAINERCLEANFILES = src/scan.c src/scan.h src/scan.stamp \
23         src/parse.c src/parse.h src/parse.stamp
24
25 CLEANFILES = src/validtypes.h src/errtab.h src/namespecs.h src/ordspecs.h \
26         test/typegen.h
27
28 EXTRA_DIST = m4/gnulib-cache.m4 src/types.lst src/validtypes.sed \
29         src/specs.lst src/namespecs.sed src/ordspecs.sed \
30         src/errors.lst src/strtab.sed test/typegen.sh \
31         src/parse.y src/parse.stamp src/scan.l src/scan.stamp \
32         COPYING.WTFPL2
33
34 dist_man_MANS = doc/man/cdecl99.1 doc/man/libcdecl.3
35
36 include_HEADERS = src/cdecl.h
37 noinst_HEADERS = conf_pre.h conf_post.h src/typemap.h src/output.h src/scan.h \
38         src/parse.h src/i18n.h src/normalize.h src/error.h test/declgen.h \
39         test/test.h
40
41 noinst_DATA = $(MOFILES)
42
43 lib_LTLIBRARIES = libcdecl.la
44 libcdecl_la_LDFLAGS = -no-undefined \
45         -export-symbols-regex '^cdecl_[[:lower:]]'
46 libcdecl_la_SOURCES = src/scan.c src/parse.c src/parse-decl.c src/typemap.c \
47         src/output.c src/explain.c src/declare.c src/i18n.c src/error.c \
48         src/normalize.c
49 libcdecl_la_LIBADD = libgnu.la $(LTLIBINTL) $(LTLIBTHREAD)
50 $(libcdecl_la_OBJECTS): $(gnulib_headers)
51
52 bin_PROGRAMS = cdecl99
53 cdecl99_SOURCES = src/cdecl99.c
54 cdecl99_LDADD = libcdecl.la libgnu.la $(LTLIBINTL) $(LTLIBREADLINE)
55 $(cdecl99_OBJECTS): $(gnulib_headers)
56
57 check_PROGRAMS = test/crossparse
58 check_LTLIBRARIES = libtest.la
59 libtest_la_LIBADD = $(GSL_LIBS)
60 libtest_la_SOURCES = test/testlib.c
61 $(libtest_la_OBJECTS): $(gnulib_headers)
62
63 if HAVE_GSL
64 libtest_la_SOURCES += test/declgen.c
65 check_PROGRAMS += test/randomdecl
66 endif
67
68 test_crossparse_LDADD = libcdecl.la libtest.la libgnu.la
69 $(test_crossparse_OBJECTS): $(gnulib_headers)
70 test_randomdecl_LDADD = libcdecl.la libtest.la libgnu.la
71 $(test_randomdecl_OBJECTS): $(gnulib_headers)
72
73 TESTS_ENVIRONMENT = SHELL='$(SHELL)' LIBTOOL='$(LIBTOOL)' EXEEXT='$(EXEEXT)'
74 TEST_EXTENSIONS = .sh
75 SH_LOG_COMPILER = $(SHELL)
76
77 TESTS = tests/libcdecl-static-symbols.sh tests/randomdecl-sanity.sh \
78         tests/crossparse-c-random.sh
79 EXTRA_DIST += $(TESTS)
80
81 src/parse.lo: src/scan.h
82 src/scan.lo: src/parse.h
83 src/parse-decl.lo: src/scan.h src/parse.h
84 src/typemap.lo: src/validtypes.h
85 src/error.lo: src/errtab.h
86 src/normalize.lo: src/ordspecs.h
87 src/output.lo: src/namespecs.h
88 test/declgen.lo: test/typegen.h
89
90 src/validtypes.h: $(srcdir)/src/types.lst $(srcdir)/src/validtypes.sed
91         $(AM_V_GEN)sed -f $(srcdir)/src/validtypes.sed \
92                 < $(srcdir)/src/types.lst > $@.tmp
93         $(AM_V_at)mv -f $@.tmp $@
94
95 src/namespecs.h: $(srcdir)/src/specs.lst $(srcdir)/src/namespecs.sed
96         $(AM_V_GEN) sed -f $(srcdir)/src/namespecs.sed \
97                 < $(srcdir)/src/specs.lst > $@.tmp
98         $(AM_V_at) mv -f $@.tmp $@
99
100 src/ordspecs.h: $(srcdir)/src/specs.lst $(srcdir)/src/ordspecs.sed
101         $(AM_V_GEN) sed -f $(srcdir)/src/ordspecs.sed \
102                 < $(srcdir)/src/specs.lst > $@.tmp
103         $(AM_V_at) mv -f $@.tmp $@
104
105 src/errtab.h: $(srcdir)/src/errors.lst $(srcdir)/src/strtab.sed
106         $(AM_V_GEN)sed -f $(srcdir)/src/strtab.sed \
107                 < $(srcdir)/src/errors.lst > $@.tmp
108         $(AM_V_at)mv -f $@.tmp $@
109
110 test/typegen.h: $(srcdir)/src/types.lst $(srcdir)/test/typegen.sh
111         $(AM_V_GEN) $(SHELL) $(srcdir)/test/typegen.sh \
112                 < $(srcdir)/src/types.lst > $@.tmp
113         $(AM_V_at)mv -f $@.tmp $@
114
115 # Supporting rules for gettext.
116 ALL_MOFILES = $(POFILES:.po=.mo)
117 EXTRA_DIST += po/$(PACKAGE).pot po/LINGUAS $(POFILES) $(ALL_MOFILES)
118 MAINTAINERCLEANFILES += po/$(PACKAGE).pot $(ALL_MOFILES)
119 XGETTEXT_OPTS = -D $(builddir) -D $(srcdir) --from-code=utf-8 \
120         --add-comments=TRANSLATORS: --foreign-user \
121         --package-name=$(PACKAGE) --package-version=$(PACKAGE_VERSION) \
122         --msgid-bugs-address=$(PACKAGE_BUGREPORT) \
123         --keyword=_ --keyword=N_ --keyword=PN_:1c,2
124
125 po/$(PACKAGE).pot: $(SOURCES) src/errors.lst
126         $(AM_V_at)  $(MKDIR_P) $(@D)
127         $(AM_V_GEN) $(XGETTEXT) $(XGETTEXT_OPTS) -o $@.tmp $(SOURCES)
128         $(AM_V_at)  $(XGETTEXT) $(XGETTEXT_OPTS) --omit-header -Lc \
129                 -ajo $@.tmp src/errors.lst
130         $(AM_V_at)  mv -f $@.tmp $@
131
132 .po.mo:
133         $(AM_V_at)$(MKDIR_P) $(@D)
134         $(AM_V_GEN)$(MSGFMT) -c -o $@ $<
135
136 install-data-local: install-mo
137 install-mo: $(MOFILES)
138         for mo in $?; do \
139                 lang=`expr "$$mo" : '.*/\(.*\)\.mo' \| "$$mo" : '\(.*\)\.mo'`; \
140                 test x"$$lang" = x"" && exit 1; \
141                 inst="$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \
142                 (set -x; $(MKDIR_P) "$$inst") \
143                         || exit $$?; \
144                 (set -x; $(INSTALL_DATA) "$$mo" "$$inst/$(PACKAGE).mo") \
145                         || exit $$?; \
146         done
147
148 installdirs-local: installdirs-mo
149 installdirs-mo:
150         for mo in $(MOFILES); do \
151                 lang=`expr "$$mo" : '.*/\(.*\)\.mo' \| "$$mo" : '\(.*\)\.mo'`; \
152                 test x"$$lang" = x"" && exit 1; \
153                 inst="$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \
154                 (set -x; $(MKDIR_P) "$$inst") || exit $$?; \
155         done
156
157 uninstall-local: uninstall-mo
158 uninstall-mo:
159         for mo in $(ALL_MOFILES); do \
160                 lang=`expr "$$mo" : '.*/\(.*\)\.mo' \| "$$mo" : '\(.*\)\.mo'`; \
161                 test x"$$lang" = x"" && exit 1; \
162                 inst="$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \
163                 (set -x; cd "$$inst" && rm -f '$(PACKAGE).mo'); \
164         done
165
166 .PHONY: install-mo installdirs-mo uninstall-mo
167
168 # These are required to prevent the builtin lex/yacc rules from
169 # superseding ours...
170 src/scan.c src/scan.h: src/scan.stamp
171 src/parse.c src/parse.h: src/parse.stamp
172
173 # The flex/bison rules refrain from updating unchanged headers for the
174 # convenience of developers, but the headers must be distributed with
175 # up-to-date timestamps, otherwise make will try to update them in a fresh
176 # VPATH build.
177 dist-hook: update-headers
178 update-headers: unfuck-distdir
179         touch -c '$(distdir)/src/scan.h'
180         touch -c '$(distdir)/src/parse.h'
181 .PHONY: update-headers
182
183 # When running "make dist" in a VPATH build with a read-only srcdir, Automake
184 # will produce a distribution with all files read-only.  Moreover, the files
185 # are read-only in distdir when the dist hooks are run.  This hook will
186 # manually fix up the permissions.  All dist hooks that modify files in distdir
187 # should list unfuck-distdir as a prerequisite.
188 dist-hook: unfuck-distdir
189 unfuck-distdir:
190         find '$(distdir)' -type f -exec chmod u+w {} +
191 .PHONY: unfuck-distdir
192
193 # Supporting rules for bison/flex.
194
195 BISON_V   = $(BISON_V_$(V))
196 BISON_V_  = $(BISON_V_$(AM_DEFAULT_VERBOSITY))
197 BISON_V_0 = @echo "  BISON " $<;
198
199 FLEX_V   = $(FLEX_V_$(V))
200 FLEX_V_  = $(FLEX_V_$(AM_DEFAULT_VERBOSITY))
201 FLEX_V_0 = @echo "  FLEX  " $<;
202
203 .y.c: ;
204 .l.c: ;
205
206 .y.stamp:
207         $(AM_V_at) touch $@.tmp
208         $(BISON_V) $(BISON) -o $*.c --defines=$*.h.tmp $(BISONFLAGS) $<
209         $(AM_V_at) if cmp $*.h.tmp $*.h >/dev/null 2>&1; then \
210                 rm -f $*.h.tmp; \
211         else \
212                 mv -f $*.h.tmp $*.h; \
213         fi
214         $(AM_V_at) mv -f $@.tmp $@
215
216 .l.stamp:
217         $(AM_V_at) touch $@.tmp
218         $(FLEX_V) $(FLEX) -o $*.c --header-file=$*.h.tmp $(FLEXFLAGS) $<
219         $(AM_V_at) if cmp $*.h.tmp $*.h >/dev/null 2>&1; then \
220                 rm -f $*.h.tmp; \
221         else \
222                 mv -f $*.h.tmp $*.h; \
223         fi
224         $(AM_V_at) mv -f $@.tmp $@
225
226 .stamp.c:
227         @if test -f $@; then :; else \
228                 rm -f $<; \
229                 $(MAKE) $(AM_MAKEFLAGS) $<; \
230         fi
231
232 .stamp.h:
233         @if test -f $@; then :; else \
234                 rm -f $<; \
235                 $(MAKE) $(AM_MAKEFLAGS) $<; \
236         fi
237
238 include $(top_srcdir)/lib/gnulib.mk
239 include $(top_srcdir)/glconfig.mk