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