* lib/am/configure.am: Replace leading spaces with a real tab.
[platform/upstream/automake.git] / Makefile.am
1 ## Process this file with automake to create Makefile.in
2
3 ## Makefile for Automake.
4
5 ## Copyright (C) 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003
6 ## Free Software Foundation, Inc.
7
8 ## This program is free software; you can redistribute it and/or modify
9 ## it under the terms of the GNU General Public License as published by
10 ## the Free Software Foundation; either version 2, or (at your option)
11 ## any later version.
12
13 ## This program is distributed in the hope that it will be useful,
14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ## GNU General Public License for more details.
17
18 ## You should have received a copy of the GNU General Public License
19 ## along with this program; if not, write to the Free Software
20 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 ## 02111-1307, USA.
22
23 ## We need `.' in SUBDIRS because we want `check' to build `.' before
24 ## tests.
25 SUBDIRS = . m4 lib tests
26
27 bin_SCRIPTS = automake aclocal
28 info_TEXINFOS = automake.texi
29
30 CLEANFILES = $(bin_SCRIPTS)
31 AUTOMAKESOURCES = automake.in aclocal.in
32
33 TAGS_FILES = $(AUTOMAKESOURCES)
34
35 # The following requires a fixed version of the Emacs 19.30 etags.
36 ETAGS_ARGS = --lang=none \
37  --regex='/^@node[ \t]+\([^,]+\)/\1/' $(srcdir)/automake.texi
38 TAGS_DEPENDENCIES = automake.texi
39
40 EXTRA_DIST = ChangeLog.96 ChangeLog.98 ChangeLog.00 ChangeLog.01 ChangeLog.02 \
41   $(AUTOMAKESOURCES)
42
43 ## Make versioned links.  We only run the transform on the root name;
44 ## then we make a versioned link with the transformed base name.  This
45 ## seemed like the most reasonable approach.
46 install-exec-hook:
47         @$(POST_INSTALL)
48         @for p in $(bin_SCRIPTS); do \
49           f="`echo $$p|sed '$(transform)'`"; \
50           fv="$$f-$(APIVERSION)"; \
51           rm -f $(DESTDIR)$(bindir)/$$fv; \
52           echo " $(LN) $(DESTDIR)$(bindir)/$$f $(DESTDIR)$(bindir)/$$fv"; \
53           $(LN) $(DESTDIR)$(bindir)/$$f $(DESTDIR)$(bindir)/$$fv; \
54         done
55
56 uninstall-hook:
57         @for p in $(bin_SCRIPTS); do \
58           f="`echo $$p|sed '$(transform)'`"; \
59           fv="$$f-$(APIVERSION)"; \
60           rm -f $(DESTDIR)$(bindir)/$$fv; \
61         done
62
63
64 ## We can't use configure to do the substitution here; we must do it
65 ## by hand.  We use a funny notation here to avoid configure
66 ## substitutions in our text.
67 do_subst = sed -e 's,[@]datadir[@],$(datadir),g' -e 's,[@]PERL[@],$(PERL),g' \
68             -e 's,[@]configure_input[@],@configure_input@,g' \
69             -e 's,[@]PACKAGE[@],$(PACKAGE),g' \
70             -e 's,[@]VERSION[@],$(VERSION),g' \
71             -e 's,[@]APIVERSION[@],$(APIVERSION),g' \
72             -e 's,[@]SHELL[@],$(SHELL),g'
73
74 automake: automake.in Makefile
75         $(do_subst) < $(srcdir)/automake.in > automake
76         chmod +x automake
77
78 aclocal: aclocal.in Makefile
79         $(do_subst) < $(srcdir)/aclocal.in > aclocal
80         chmod +x aclocal
81
82 ## The master location for INSTALL is lib/INSTALL.
83 ## This is where `make fetch' will install new versions.
84 ## Make sure we also update this copy.
85 INSTALL: lib/INSTALL
86         cp lib/INSTALL $@
87
88 ################################################################
89 ##
90 ## Everything past here is useful to the maintainer, but probably not
91 ## to anybody else
92 ##
93
94 # Some simple checks, and then ordinary check.  These are only really
95 # guaranteed to work on my machine.
96 maintainer-check: automake aclocal
97 ## This check avoids accidental configure substitutions in the source.
98 ## There are exactly 8 lines that should be modified.  This works out
99 ## to 28 lines of diffs.
100         @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 28; then \
101           echo "found too many diffs between automake.in and automake"; 1>&2; \
102           diff -c $(srcdir)/automake.in automake; \
103           exit 1; \
104         fi
105 ## Syntax check with default Perl (on my machine, Perl 5).
106         perllibdir=$(srcdir)/lib $(PERL) -c -w automake
107         perllibdir=$(srcdir)/lib $(PERL) -c -w aclocal
108 ## expect no instances of '${...}'.  However, $${...} is ok, since that
109 ## is a shell construct, not a Makefile construct.
110         @if grep -F '$${' $(srcdir)/lib/am/[a-z]*.am | \
111                grep -F -v '$$$$'; then \
112           echo "Found too many uses of '\$${' in the lines above." 1>&2; \
113           exit 1;                               \
114         else :; fi
115 ## Make sure `rm' is called with `-f'.
116         @if grep -E '\<rm ([^-]|\-[^f ]*\>)' \
117                   $(srcdir)/lib/am/[a-z]*.am $(srcdir)/tests/*.test | \
118               grep -v '##'; then \
119           echo "Suspicious 'rm' invocation." 1>&2; \
120           exit 1;                               \
121         else :; fi
122 ## Never use something like `for file in $(FILES)', this doesn't work
123 ## if FILES is empty or if it contains shell meta characters (e.g. $ is
124 ## commonly used in Java filenames).
125         @if grep 'for .* in \$$(' $(srcdir)/lib/am/[a-z]*.am; then \
126           echo 'Use "list=$$(mumble); for var in $$$$list".' 1>&2 ; \
127           exit 1; \
128         else :; fi
129 ## Make sure all invocations of mkinstalldirs are correct.
130         @if grep -n 'mkinstalldirs' $(srcdir)/lib/am/[a-z]*.am | \
131               grep -F -v '$$(mkinstalldirs)'; then \
132           echo "Found incorrect use of mkinstalldirs in the lines above" 1>&2; \
133           exit 1; \
134         else :; fi
135 ## We never want to use "undef", only "delete", but for $/.
136         @if grep -n -w 'undef ' $(srcdir)/automake.in | \
137               grep -F -v 'undef $$/'; then \
138           echo "Found undef in automake.in; use delete instead" 1>&2; \
139           exit 1; \
140         fi
141 ## We never want split (/ /,...), only split (' ', ...).
142         @if grep -n 'split (/ /' $(srcdir)/automake.in; then \
143           echo "Found bad split in the lines above." 1>&2; \
144           exit 1; \
145         fi
146 ## Look for cd within backquotes
147         @if grep -n '^[^#]*` *cd ' $(srcdir)/automake.in \
148               $(srcdir)/lib/am/*.am; then \
149           echo "Consider using $$$$(am__cd) in the line above." 1>&2; \
150           exit 1; \
151         fi
152 ## Using @_ in a scalar context is most probably a programming error.
153         @if grep -Hn '[^) ] *= *@_' $(srcdir)/automake.in; then \
154           echo "Using @_ in a scalar context in the lines above." 1>&2; \
155           exit 1; \
156         fi
157 ## Forbid using parens with `local' to ease counting.
158         @if grep '^[ \t]*local *(' $(srcdir)/automake.in; then \
159           echo "Don't use \`local' with parens: use several \`local' above." >&2; \
160           exit 1; \
161         fi
162 ## Allow only `local $_' in Automake.
163         @if grep -v '^[ \t]*local \$$_;' $(srcdir)/automake.in | \
164                 grep '^[ \t]*local [^*]'; then \
165           echo "Please avoid \`local'." 1>&2; \
166           exit 1; \
167         fi
168 ## Don't let AMDEP_TRUE substitution appear in automake.in.
169         @if grep '@AMDEP''_TRUE@' $(srcdir)/automake.in; then \
170           echo "Don't put AMDEP_TRUE substitution in automake.in" 1>&2; \
171           exit 1; \
172         fi
173 ## Tests should never call make directly.
174         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*make'; then \
175           echo 'Do not run "make" in the above tests.  Use "$$MAKE" instead.' 1>&2; \
176           exit 1; \
177         fi
178 ## Tests should never call autoconf directly.
179         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*autoconf'; then \
180           echo 'Do not run "autoconf" in the above tests.  Use "$$AUTOCONF" instead.' 1>&2; \
181           exit 1; \
182         fi
183 ## Tests should never call autoupdate directly.
184         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*autoupdate'; then \
185           echo 'Do not run "autoupdate" in the above tests.  Use "$$AUTOUPDATE" instead.' 1>&2; \
186           exit 1; \
187         fi
188 ## Tests should never call automake directly.
189         @if grep -v '^#' $(srcdir)/tests/*.test | grep -E ':[   ]*automake([^:]|$$)'; then \
190           echo 'Do not run "automake" in the above tests.  Use "$$AUTOMAKE" instead.' 1>&2;  \
191           exit 1; \
192         fi
193 ## Tests should never call aclocal directly.
194         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*aclocal'; then \
195           echo 'Do not run "aclocal" in the above tests.  Use "$$ACLOCAL" instead.' 1>&2;  \
196           exit 1; \
197         fi
198 ## Tests should never call perl directly.
199         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*perl'; then \
200           echo 'Do not run "perl" in the above tests.  Use "$$PERL" instead.' 1>&2; \
201           exit 1; \
202         fi
203 ## Overriding a Makefile macro on the command line is not portable when
204 ## recursive targets are used.  Better use an envvar.  SHELL is an exception,
205 ## POSIX says it can't come from the environment.
206         @if grep -E '\$$MAKE .*(SHELL=.*=|=.*SHELL=)' $(srcdir)/tests/*.test; then \
207           echo 'Rewrite "$$MAKE foo=bar SHELL=$$SHELL" as "foo=bar $$MAKE -e SHELL=$$SHELL"' 1>&2; \
208           echo ' in the above lines, it is more portable.' 1>&2; \
209           exit 1; \
210         fi
211         @if grep -v SHELL $(srcdir)/tests/*.test | grep '\$$MAKE .*=' ; then \
212           echo 'Rewrite "$$MAKE foo=bar" as "foo=bar $$MAKE -e" in the above lines,' 1>&2; \
213           echo 'it is more portable.' 1>&2; \
214           exit 1; \
215         fi
216         @if grep 'SHELL=.*\$$MAKE' $(srcdir)/tests/*.test; then \
217           echo '$$MAKE ignores the SHELL envvar, use "$$MAKE SHELL=$$SHELL" in' 1>&2; \
218           echo 'the above lines.' 1>&2; \
219           exit 1; \
220         fi
221 ## Never use `sleep 1' to create files with different timestamps.
222 ## Use `$sleep' instead.  Some filesystems (e.g., Windows') have only
223 ## a 2sec resolution.
224         @if grep -E '\bsleep +[12345]\b' $(srcdir)/tests/*.test; then \
225           echo 'Do not use "sleep x" in the above tests.  Use "$$sleep" instead.' 1>&2; \
226           exit 1; \
227         fi
228 ## fgrep and egrep are not required by POSIX.
229         @if grep -E '\b[ef]grep\b' $(srcdir)/tests/*.test ; then \
230           echo 'Do not use egrep or fgrep in test cases.  Use $$FGREP or $$EGREP.' 1>&2; \
231           exit 1; \
232         fi
233         @if grep -E '\b[ef]grep\b' $(srcdir)/lib/am/*.am $(srcdir)/m4/*.m4; then \
234           echo 'Do not use egrep or fgrep in the above files, they are not portable.' 1>&2; \
235           exit 1; \
236         fi
237 ## Try to make sure all @...@ substitutions are covered by our
238 ## substitution rule.
239         @if test `grep -E '@[A-Za-z_0-9]+@' aclocal | wc -l` -ne 0; then \
240           echo "Unresolved @...@ substitution in aclocal" 1>&2; \
241           exit 1; \
242         fi
243 ## In automake there are a few valid ones.
244         @if test `grep -E '@[A-Za-z_0-9]+@' automake | wc -l` -ne 5; then \
245           echo "Unresolved @...@ substitution in automake" 1>&2; \
246           exit 1; \
247         fi
248
249
250 # Tag before making distribution.  Also, don't make a distribution if
251 # checks fail.  Also, make sure the NEWS file is up-to-date.
252 cvs-dist: maintainer-check distcheck
253         @if sed 1q $(srcdir)/NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \
254           echo "NEWS not updated; not releasing" 1>&2; \
255           exit 1;                               \
256         fi
257         cd $(srcdir) && cvs -q tag `echo "Release-$(VERSION)" | sed 's/\./-/g'`
258         $(MAKE) dist
259
260 cvs-diff:
261         thisver=`echo "Release-$(VERSION)" | sed 's/\./-/g'`; \
262         if test -z "$$OLDVERSION"; then \
263           prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
264         else prevno="$$OLDVERSION"; fi; \
265         prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \
266         cvs -f rdiff -c -r $$prevver -r $$thisver $(PACKAGE) \
267             > $(PACKAGE)-$$prevno-$(VERSION).diff
268
269 ## Check our path lengths.
270 path-check: distdir
271         (cd $(distdir) && \
272 ## FIXME there's got to be a better way!  pathchk should take the list
273 ## of files on stdin, at least.
274           find . -print | xargs pathchk -p); \
275           status=$$?; \
276           chmod -R a+w $(distdir) > /dev/null 2>&1; rm -rf $(distdir); \
277           exit $$status
278
279 ## Program to use to fetch files.
280 WGET = wget
281
282 ## Files that we fetch and which we compare against.
283 ## FIXME should be a lot more here
284 FETCHFILES = \
285 Automake/Struct.pm \
286 Automake/XFile.pm \
287 INSTALL \
288 config.guess \
289 config.sub \
290 texinfo.tex
291
292 ## Fetch the latest versions of files we care about.
293 fetch:
294         rm -rf Fetchdir > /dev/null 2>&1
295         mkdir Fetchdir; mkdir Fetchdir/Automake
296 ## If a get fails then that is a problem.
297         (cd Fetchdir && \
298         $(WGET) ftp://ftp.gnu.org/gnu/config/config.guess; \
299         $(WGET) ftp://ftp.gnu.org/gnu/config/config.sub; \
300         $(WGET) ftp://ftp.gnu.org/gnu/texinfo/texinfo.tex; \
301         $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/autoconf/autoconf/lib/Autom4te/Struct.pm?content-type=text/plain -O Automake/Struct.pm; \
302         $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/autoconf/autoconf/lib/Autom4te/XFile.pm?content-type=text/plain -O Automake/XFile.pm; \
303         $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/autoconf/autoconf/INSTALL?content-type=text/plain -O INSTALL)
304         perl -pi -e 's/Autom4te::/Automake::/g' \
305           Fetchdir/Automake/Struct.pm Fetchdir/Automake/XFile.pm
306 ## Don't exit after test because we want to give as many errors as
307 ## possible.
308         @stat=0; for file in $(FETCHFILES); do \
309           if diff -u $(srcdir)/lib/$$file Fetchdir/$$file \
310                   >>Fetchdir/update.patch 2>/dev/null; then :; \
311           else \
312             stat=1; \
313             echo "Updating $(srcdir)/lib/$$file..."; \
314             cp Fetchdir/$$file $(srcdir)/lib/$$file; \
315           fi; \
316         done; \
317         test $$stat = 1 && \
318           echo "See Fetchdir/update.patch for a log of the changes."; \
319         exit $$stat