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