* scripts.am (install-@DIR@SCRIPTS): Use NDIR when appropriate.
[platform/upstream/automake.git] / Makefile.am
1 ## Process this file with automake to create Makefile.in
2
3 AUTOMAKE_OPTIONS = gnits 1.4
4 MAINT_CHARSET = latin1
5
6 ## We need `.' in SUBDIRS because we want `check' to build `.' before
7 ## tests.
8 SUBDIRS = . m4 tests
9
10 bin_SCRIPTS = automake aclocal
11 info_TEXINFOS = automake.texi
12
13 amfiles = clean-hdr.am clean-kr.am clean.am comp-vars.am compile.am \
14 data-clean.am data.am dejagnu.am depend.am depend2.am dist-vars.am \
15 footer.am header-vars.am header.am java-clean.am java.am kr-extra.am \
16 library.am libs-clean.am libs.am libtool.am lisp-clean.am lisp.am \
17 ltlib-clean.am ltlib.am ltlibrary.am mans-vars.am mans.am multilib.am \
18 program.am progs-clean.am progs.am remake-hdr.am remake.am scripts.am \
19 subdirs.am tags-clean.am tags.am texi-vers.am texinfos.am
20
21 dist_pkgdata_DATA = COPYING INSTALL texinfo.tex ansi2knr.c ansi2knr.1 \
22 $(amfiles)
23
24 ## These must all be executable when installed.  However, if we use
25 ## _SCRIPTS, then the program transform will be applied, which is not
26 ## what we want.  So we make them executable by hand.
27 scriptdir = $(pkgdatadir)
28 dist_script_DATA = config.guess config.sub install-sh mdate-sh missing \
29 mkinstalldirs elisp-comp ylwrap acinstall
30
31 install-data-hook:
32         @$(POST_INSTALL)
33         @for prog in $(dist_script_DATA); do \
34           echo " chmod +x $(DESTDIR)$(scriptdir)/$$prog"; \
35           chmod +x $(DESTDIR)$(scriptdir)/$$prog; \
36         done
37
38 # The following requires a fixed version of the Emacs 19.30 etags.
39 ETAGS_ARGS = automake.in aclocal.in --lang=none \
40  --regex='/^@node[ \t]+\([^,]+\)/\1/' automake.texi
41 TAGS_DEPENDENCIES = automake.in aclocal.in automake.texi
42
43 ## `test -x' is not portable.  So we use Perl instead.  If Perl
44 ## doesn't exist, then this test is meaningless anyway.
45 installcheck-local:
46         for file in $(dist_script_DATA); do \
47           $(PERL) -e "exit ! -x '$(pkgdatadir)/$$file';" || exit 1; \
48         done
49
50 ################################################################
51 ##
52 ## Everything past here is useful to the maintainer, but probably not
53 ## to anybody else
54 ##
55
56 # Run the test suite using Perl 4.
57 perl4-check: automake aclocal
58         @if $(SHELL) -c 'perl4.036 -v' > /dev/null 2>&1; then \
59           $(MAKE) PERL=perl4.036 check; \
60         else :; fi
61
62 # Some simple checks, and then ordinary check.  These are only really
63 # guaranteed to work on my machine.
64 maintainer-check: automake aclocal
65 ## This check avoids accidental configure substitutions in the source.
66 ## There are exactly 7 lines that should be modified.  This works out
67 ## to 22 lines of diffs.
68         @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 22; then \
69           echo "found too many diffs between automake.in and automake"; 1>&2; \
70           diff -c $(srcdir)/automake.in automake; \
71           exit 1; \
72         fi
73 ## Syntax check with default Perl (on my machine, Perl 5).
74         $(PERL) -c -w automake
75         $(PERL) -c -w aclocal
76 ## expect no instances of '${...}'.  However, $${...} is ok, since that
77 ## is a shell construct, not a Makefile construct.
78 ## The backslash in `$${' is needed for some versions of bash.
79         @if test `fgrep '\$${' $(srcdir)/[a-z]*.am | fgrep -v '$$$$' | wc -l` -ne 0; then \
80           echo "found too many uses of '\$${'" 1>&2; \
81           exit 1;                               \
82         else :; fi
83 ## Make sure all invocations of mkinstalldirs are correct.
84         @if test `fgrep 'mkinstalldirs' $(srcdir)/[a-z]*.am | fgrep -v '$$(mkinstalldirs)' | wc -l` -ne 0; then \
85           echo "found incorrect use of mkinstalldirs" 1>&2; \
86           exit 1; \
87         else :; fi
88 ## Another syntax check, this time with Perl 4, if it exists.
89         @if $(SHELL) -c 'perl4.036 -v' >/dev/null 2>&1; then \
90           perl4.036 -c -w automake; \
91           perl4.036 -c -w aclocal; \
92         else :; fi
93 ## We never want to use "undef", only "delete".
94         @if grep undef $(srcdir)/automake.in > /dev/null 2>&1; then \
95           echo "Found undef in automake.in; use delete instead" 1>&2; \
96           exit 1; \
97         fi
98 ## We never want split (/ /,...), only split (' ', ...).
99         @if fgrep 'split (/ /' $(srcdir)/automake.in > /dev/null 2>&1; then \
100           echo "Found bad split in automake.in" 1>&2; \
101           exit 1; \
102         fi
103
104 # Tag before making distribution.  Also, don't make a distribution if
105 # checks fail.  Also, make sure the NEWS file is up-to-date.
106 cvs-dist: maintainer-check perl4-check distcheck
107         @if sed 1q $(srcdir)/NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \
108           echo "NEWS not updated; not releasing" 1>&2; \
109           exit 1;                               \
110         fi
111         cd $(srcdir) && cvs -q tag `echo "Release-$(VERSION)" | sed 's/\./-/g'`
112         $(MAKE) dist
113
114 cvs-diff:
115         thisver=`echo "Release-$(VERSION)" | sed 's/\./-/g'`; \
116         if test -z "$$OLDVERSION"; then \
117           prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
118         else prevno="$$OLDVERSION"; fi; \
119         prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \
120         cvs -f rdiff -c -r $$prevver -r $$thisver $(PACKAGE) \
121             > $(PACKAGE)-$$prevno-$(VERSION).diff
122
123 ## Check our path lengths.
124 path-check: distdir
125         (cd $(distdir) && \
126 ## FIXME there's got to be a better way!  pathchk should take the list
127 ## of files on stdin, at least.
128           find . -print | xargs pathchk -p); \
129           status=$$?; \
130           rm -rf $(distdir); \
131           exit $$status
132
133 ## Just get the .am files into TAGS.  We don't really care too much if
134 ## any interesting tags show up.
135 ETAGS_ARGS = $(amfiles)
136 TAGS_DEPENDENCIES = $(ETAGS_ARGS)