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