Imported Upstream version 4.1
[platform/upstream/make.git] / Makefile.am
1 # This is a -*-Makefile-*-, or close enough
2 #
3 # Copyright (C) 1997-2014 Free Software Foundation, Inc.
4 # This file is part of GNU Make.
5 #
6 # GNU Make is free software; you can redistribute it and/or modify it under
7 # the terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 3 of the License, or (at your option) any later
9 # version.
10 #
11 # GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14 # details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 AUTOMAKE_OPTIONS = 1.8 dist-bzip2 check-news
20 ACLOCAL_AMFLAGS =  -I config
21
22 MAKE_HOST =     @MAKE_HOST@
23
24 # Only process if target is MS-Windows
25 if WINDOWSENV
26   MAYBE_W32 =   w32
27   W32INC =      -I $(top_srcdir)/w32/include
28   W32LIB =      -Lw32 -lw32
29 endif
30
31 SUBDIRS =       glob config po doc $(MAYBE_W32)
32
33 bin_PROGRAMS =  make
34 include_HEADERS = gnumake.h
35
36 if USE_CUSTOMS
37   remote =      remote-cstms.c
38 else
39   remote =      remote-stub.c
40 endif
41
42 make_SOURCES =  ar.c arscan.c commands.c default.c dir.c expand.c file.c \
43                 function.c getopt.c getopt1.c guile.c implicit.c job.c load.c \
44                 loadapi.c main.c misc.c output.c read.c remake.c rule.c \
45                 signame.c strcache.c variable.c version.c vpath.c hash.c \
46                 $(remote)
47
48 EXTRA_make_SOURCES = vmsjobs.c remote-stub.c remote-cstms.c
49
50 noinst_HEADERS = commands.h dep.h filedef.h job.h makeint.h rule.h variable.h \
51                 debug.h getopt.h gettext.h hash.h output.h
52
53 make_LDADD =    @LIBOBJS@ @ALLOCA@ $(GLOBLIB) @GETLOADAVG_LIBS@ @LIBINTL@ \
54                 $(GUILE_LIBS)
55 # Only process if target is MS-Windows
56 if WINDOWSENV
57     make_LDADD += $(W32LIB)
58 endif
59
60 man_MANS =      make.1
61
62 DEFS =          -DLOCALEDIR=\"$(localedir)\" -DLIBDIR=\"$(libdir)\" -DINCLUDEDIR=\"$(includedir)\" @DEFS@
63
64 AM_CPPFLAGS =   $(GLOBINC)
65 AM_CFLAGS =     $(GUILE_CFLAGS)
66 # Only process if target is MS-Windows
67 if WINDOWSENV
68     AM_CPPFLAGS +=      $(W32INC)
69 endif
70
71
72 # Extra stuff to include in the distribution.
73
74 EXTRA_DIST =    README build.sh.in $(man_MANS) \
75                 README.customs README.OS2 \
76                 SCOPTIONS SMakefile \
77                 README.Amiga Makefile.ami config.ami make.lnk amiga.c amiga.h \
78                 README.DOS Makefile.DOS configure.bat dosbuild.bat configh.dos\
79                 README.W32 NMakefile config.h.W32 build_w32.bat subproc.bat \
80                 make_msvc_net2003.sln make_msvc_net2003.vcproj \
81                 README.VMS makefile.vms makefile.com config.h-vms \
82                 vmsdir.h vmsfunctions.c vmsify.c \
83                 gmk-default.scm gmk-default.h
84
85 # This is built during configure, but behind configure's back
86
87 DISTCLEANFILES = build.sh
88
89 # --------------- Internationalization Section
90
91 localedir =     $(datadir)/locale
92
93 # --------------- Local INSTALL Section
94
95 # If necessary, change the gid of the app and turn on the setgid flag.
96 #
97
98 # Whether or not make needs to be installed setgid.
99 # The value should be either 'true' or 'false'.
100 # On many systems, the getloadavg function (used to implement the '-l'
101 # switch) will not work unless make is installed setgid kmem.
102 #
103 inst_setgid = @NEED_SETGID@
104
105 # Install make setgid to this group so it can get the load average.
106 #
107 inst_group = @KMEM_GROUP@
108
109 install-exec-local:
110         @if $(inst_setgid); then \
111            app=$(DESTDIR)$(bindir)/`echo $(bin_PROGRAMS)|sed '$(transform)'`; \
112            if chgrp $(inst_group) $$app && chmod g+s $$app; then \
113              echo "chgrp $(inst_group) $$app && chmod g+s $$app"; \
114            else \
115              echo "$$app needs to be owned by group $(inst_group) and setgid;"; \
116              echo "otherwise the '-l' option will probably not work."; \
117              echo "You may need special privileges to complete the installation"; \
118              echo "of $$app."; \
119            fi; \
120          else true; fi
121
122 # --------------- Generate the Guile default module content
123
124 guile.$(OBJEXT): gmk-default.h
125 gmk-default.h: $(srcdir)/gmk-default.scm
126         (echo 'static const char *const GUILE_module_defn = " '\\ \
127           && sed -e 's/;.*//' -e '/^[ \t]*$$/d' -e 's/"/\\"/g' -e 's/$$/ \\/' \
128                  $(srcdir)/gmk-default.scm \
129           && echo '";') > $@
130
131 # --------------- Local DIST Section
132
133 # Install the w32 and tests subdirectories
134 #
135 dist-hook:
136         (cd $(srcdir); \
137          sub=`find w32 tests -follow \( -name .git -o -name .deps -o -name work -o -name .gitignore -o -name \*.orig -o -name \*.rej -o -name \*~ -o -name Makefile \) -prune -o -type f -print`; \
138          tar chf - $$sub) \
139         | (cd $(distdir); tar xfBp -)
140
141
142 # --------------- Local CHECK Section
143
144 check-local: check-regression check-loadavg
145         @banner=" Regression PASSED: GNU Make $(VERSION) ($(MAKE_HOST)) built with $(CC) "; \
146         dashes=`echo "$$banner" | sed s/./=/g`; \
147         echo; \
148         echo "$$dashes"; \
149         echo "$$banner"; \
150         echo "$$dashes"; \
151         echo
152
153 .PHONY: check-loadavg check-regression
154
155 check-loadavg: loadavg$(EXEEXT)
156         @echo The system uptime program believes the load average to be:
157         -uptime
158         @echo The GNU load average checking code thinks:
159         -./loadavg$(EXEEXT)
160
161 # The loadavg function is invoked during "make check" to test getloadavg.
162 check_PROGRAMS = loadavg
163 nodist_loadavg_SOURCES = getloadavg.c
164 loadavg_CPPFLAGS = -DTEST
165 loadavg_LDADD = @GETLOADAVG_LIBS@
166
167 # > check-regression
168 #
169 # Look for the make test suite, and run it if found and we can find perl.
170 # If we're building outside the tree, we use symlinks to make a local copy of
171 # the test suite.  Unfortunately the test suite itself isn't localizable yet.
172 #
173 MAKETESTFLAGS =
174
175 check-regression: tests/config-flags.pm
176         @if test -f '$(srcdir)/tests/run_make_tests'; then \
177           if $(PERL) -v >/dev/null 2>&1; then \
178             case `cd '$(srcdir)'; pwd` in `pwd`) : ;; \
179               *) test -d tests || mkdir tests; \
180                  rm -f srctests; \
181                  if ln -s '$(srcdir)/tests' srctests; then \
182                    for f in run_make_tests run_make_tests.pl test_driver.pl scripts; do \
183                      rm -f tests/$$f; ln -s ../srctests/$$f tests; \
184                    done; fi ;; \
185             esac; \
186             echo "cd tests && $(PERL) ./run_make_tests.pl -srcdir $(abs_srcdir) -make ../make$(EXEEXT) $(MAKETESTFLAGS)"; \
187             cd tests && $(PERL) ./run_make_tests.pl -srcdir '$(abs_srcdir)' -make '../make$(EXEEXT)' $(MAKETESTFLAGS); \
188           else \
189             echo "Can't find a working Perl ($(PERL)); the test suite requires Perl."; \
190           fi; \
191          else \
192           echo "Can't find the GNU Make test suite ($(srcdir)/tests)."; \
193          fi
194
195
196 # --------------- Maintainer's Section
197
198 # Tell automake that I haven't forgotten about this file and it will be
199 # created before we build a distribution (see maintMakefile in the Git
200 # distribution).
201
202 README:
203
204 @MAINT_MAKEFILE@