1999-07-21 05:53:23 +00:00
|
|
|
# This is a -*-Makefile-*-, or close enough
|
2006-02-11 19:02:21 +00:00
|
|
|
#
|
2017-07-10 01:52:28 +00:00
|
|
|
# Copyright (C) 1997-2017 Free Software Foundation, Inc.
|
2006-02-11 19:02:21 +00:00
|
|
|
# This file is part of GNU Make.
|
|
|
|
#
|
2007-07-04 19:35:15 +00:00
|
|
|
# GNU Make is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License as published by the Free Software
|
|
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
2006-02-11 19:02:21 +00:00
|
|
|
#
|
|
|
|
# GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
2007-07-04 19:35:15 +00:00
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
2006-02-11 19:02:21 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
2007-07-04 19:35:15 +00:00
|
|
|
# this program. If not, see <http://www.gnu.org/licenses/>.
|
1997-08-18 18:11:04 +00:00
|
|
|
|
2016-03-09 04:07:14 +00:00
|
|
|
AUTOMAKE_OPTIONS = dist-bzip2 silent-rules std-options
|
|
|
|
ACLOCAL_AMFLAGS = -I config
|
1997-08-18 18:11:04 +00:00
|
|
|
|
2006-04-01 06:36:40 +00:00
|
|
|
MAKE_HOST = @MAKE_HOST@
|
|
|
|
|
2005-02-26 01:41:48 +00:00
|
|
|
# Only process if target is MS-Windows
|
|
|
|
if WINDOWSENV
|
2005-05-10 01:38:18 +00:00
|
|
|
MAYBE_W32 = w32
|
|
|
|
W32INC = -I $(top_srcdir)/w32/include
|
|
|
|
W32LIB = -Lw32 -lw32
|
2016-04-02 21:18:40 +00:00
|
|
|
ossrc =
|
|
|
|
else
|
|
|
|
ossrc = posixos.c
|
2005-02-26 01:41:48 +00:00
|
|
|
endif
|
2000-01-25 07:42:51 +00:00
|
|
|
|
2005-05-10 01:38:18 +00:00
|
|
|
SUBDIRS = glob config po doc $(MAYBE_W32)
|
|
|
|
|
1997-08-18 18:11:04 +00:00
|
|
|
bin_PROGRAMS = make
|
2013-01-20 18:39:54 +00:00
|
|
|
include_HEADERS = gnumake.h
|
1997-08-18 18:11:04 +00:00
|
|
|
|
2002-04-21 23:57:24 +00:00
|
|
|
if USE_CUSTOMS
|
|
|
|
remote = remote-cstms.c
|
|
|
|
else
|
|
|
|
remote = remote-stub.c
|
|
|
|
endif
|
2000-01-25 07:42:51 +00:00
|
|
|
|
2002-04-21 23:57:24 +00:00
|
|
|
make_SOURCES = ar.c arscan.c commands.c default.c dir.c expand.c file.c \
|
2013-10-19 16:21:09 +00:00
|
|
|
function.c getopt.c getopt1.c guile.c implicit.c job.c load.c \
|
2016-04-02 21:18:40 +00:00
|
|
|
loadapi.c main.c misc.c $(ossrc) output.c read.c remake.c \
|
Extract jobserver implementation into OS-specific files.
* os.h, posixos.c, w32/w32os.c: New files implementing jobserver.
* job.c, job.h, main.c, makeint.h: Move content to new files.
* w32/include/sub_proc.h, w32/subproc/sub_proc.c: Ditto.
* Makefile.am: Build and package OS-specific files.
* build_w32.bat, make_msvc_net2003.vcproj, README.W32.template:
Update for new files, and clean up the build.
* POTFILES.in, maintMakefile, NMakefile.template: Ditto.
* w32/subproc/build.bat: Delete as unused.
2016-03-06 18:29:43 +00:00
|
|
|
rule.c signame.c strcache.c variable.c version.c vpath.c \
|
|
|
|
hash.c $(remote)
|
2012-01-15 22:41:53 +00:00
|
|
|
|
2005-05-10 01:38:18 +00:00
|
|
|
EXTRA_make_SOURCES = vmsjobs.c remote-stub.c remote-cstms.c
|
2000-01-25 07:42:51 +00:00
|
|
|
|
2013-01-20 16:01:01 +00:00
|
|
|
noinst_HEADERS = commands.h dep.h filedef.h job.h makeint.h rule.h variable.h \
|
Extract jobserver implementation into OS-specific files.
* os.h, posixos.c, w32/w32os.c: New files implementing jobserver.
* job.c, job.h, main.c, makeint.h: Move content to new files.
* w32/include/sub_proc.h, w32/subproc/sub_proc.c: Ditto.
* Makefile.am: Build and package OS-specific files.
* build_w32.bat, make_msvc_net2003.vcproj, README.W32.template:
Update for new files, and clean up the build.
* POTFILES.in, maintMakefile, NMakefile.template: Ditto.
* w32/subproc/build.bat: Delete as unused.
2016-03-06 18:29:43 +00:00
|
|
|
debug.h getopt.h gettext.h hash.h output.h os.h
|
1997-08-18 18:11:04 +00:00
|
|
|
|
2012-01-15 22:41:53 +00:00
|
|
|
make_LDADD = @LIBOBJS@ @ALLOCA@ $(GLOBLIB) @GETLOADAVG_LIBS@ @LIBINTL@ \
|
|
|
|
$(GUILE_LIBS)
|
2005-02-26 01:41:48 +00:00
|
|
|
# Only process if target is MS-Windows
|
|
|
|
if WINDOWSENV
|
|
|
|
make_LDADD += $(W32LIB)
|
|
|
|
endif
|
2000-01-22 08:57:17 +00:00
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
man_MANS = make.1
|
2000-01-22 08:57:17 +00:00
|
|
|
|
2002-04-21 23:57:24 +00:00
|
|
|
DEFS = -DLOCALEDIR=\"$(localedir)\" -DLIBDIR=\"$(libdir)\" -DINCLUDEDIR=\"$(includedir)\" @DEFS@
|
1997-08-18 18:11:04 +00:00
|
|
|
|
2002-04-21 23:57:24 +00:00
|
|
|
AM_CPPFLAGS = $(GLOBINC)
|
2012-01-15 22:41:53 +00:00
|
|
|
AM_CFLAGS = $(GUILE_CFLAGS)
|
2005-02-26 01:41:48 +00:00
|
|
|
# Only process if target is MS-Windows
|
|
|
|
if WINDOWSENV
|
|
|
|
AM_CPPFLAGS += $(W32INC)
|
|
|
|
endif
|
1997-08-18 18:11:04 +00:00
|
|
|
|
2002-04-22 02:11:31 +00:00
|
|
|
|
2002-04-22 04:35:19 +00:00
|
|
|
# Extra stuff to include in the distribution.
|
|
|
|
|
2016-05-21 19:23:54 +00:00
|
|
|
EXTRA_DIST = ChangeLog README build.sh.in $(man_MANS) \
|
2003-05-02 01:44:59 +00:00
|
|
|
README.customs README.OS2 \
|
|
|
|
SCOPTIONS SMakefile \
|
|
|
|
README.Amiga Makefile.ami config.ami make.lnk amiga.c amiga.h \
|
1997-08-27 20:30:54 +00:00
|
|
|
README.DOS Makefile.DOS configure.bat dosbuild.bat configh.dos\
|
2003-05-02 01:44:59 +00:00
|
|
|
README.W32 NMakefile config.h.W32 build_w32.bat subproc.bat \
|
2006-02-01 07:54:22 +00:00
|
|
|
make_msvc_net2003.sln make_msvc_net2003.vcproj \
|
2013-09-22 04:48:05 +00:00
|
|
|
README.VMS makefile.vms makefile.com config.h-vms \
|
2014-09-14 01:20:22 +00:00
|
|
|
vmsdir.h vmsfunctions.c vmsify.c vms_exit.c vms_progname.c \
|
|
|
|
vms_export_symbol.c vms_export_symbol_test.com \
|
2012-01-15 22:41:53 +00:00
|
|
|
gmk-default.scm gmk-default.h
|
2002-04-21 23:57:24 +00:00
|
|
|
|
2006-04-01 06:36:40 +00:00
|
|
|
# This is built during configure, but behind configure's back
|
1999-09-15 22:23:35 +00:00
|
|
|
|
2006-04-01 06:36:40 +00:00
|
|
|
DISTCLEANFILES = build.sh
|
1998-07-30 20:54:47 +00:00
|
|
|
|
2000-01-25 07:42:51 +00:00
|
|
|
# --------------- Internationalization Section
|
|
|
|
|
2002-04-21 23:57:24 +00:00
|
|
|
localedir = $(datadir)/locale
|
2000-01-25 07:42:51 +00:00
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
# --------------- Local INSTALL Section
|
|
|
|
|
|
|
|
# If necessary, change the gid of the app and turn on the setgid flag.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Whether or not make needs to be installed setgid.
|
2012-03-04 00:24:20 +00:00
|
|
|
# The value should be either 'true' or 'false'.
|
|
|
|
# On many systems, the getloadavg function (used to implement the '-l'
|
1998-07-30 20:54:47 +00:00
|
|
|
# switch) will not work unless make is installed setgid kmem.
|
|
|
|
#
|
|
|
|
inst_setgid = @NEED_SETGID@
|
|
|
|
|
|
|
|
# Install make setgid to this group so it can get the load average.
|
|
|
|
#
|
|
|
|
inst_group = @KMEM_GROUP@
|
|
|
|
|
|
|
|
install-exec-local:
|
|
|
|
@if $(inst_setgid); then \
|
|
|
|
app=$(DESTDIR)$(bindir)/`echo $(bin_PROGRAMS)|sed '$(transform)'`; \
|
|
|
|
if chgrp $(inst_group) $$app && chmod g+s $$app; then \
|
|
|
|
echo "chgrp $(inst_group) $$app && chmod g+s $$app"; \
|
|
|
|
else \
|
|
|
|
echo "$$app needs to be owned by group $(inst_group) and setgid;"; \
|
2012-03-04 00:24:20 +00:00
|
|
|
echo "otherwise the '-l' option will probably not work."; \
|
1998-07-30 20:54:47 +00:00
|
|
|
echo "You may need special privileges to complete the installation"; \
|
|
|
|
echo "of $$app."; \
|
|
|
|
fi; \
|
|
|
|
else true; fi
|
|
|
|
|
2012-01-15 22:41:53 +00:00
|
|
|
# --------------- Generate the Guile default module content
|
|
|
|
|
|
|
|
guile.$(OBJEXT): gmk-default.h
|
|
|
|
gmk-default.h: $(srcdir)/gmk-default.scm
|
|
|
|
(echo 'static const char *const GUILE_module_defn = " '\\ \
|
|
|
|
&& sed -e 's/;.*//' -e '/^[ \t]*$$/d' -e 's/"/\\"/g' -e 's/$$/ \\/' \
|
2015-07-12 22:05:50 +00:00
|
|
|
$(srcdir)/gmk-default.scm \
|
|
|
|
&& echo '";') > $@
|
2012-01-15 22:41:53 +00:00
|
|
|
|
1997-08-27 20:30:54 +00:00
|
|
|
# --------------- Local DIST Section
|
|
|
|
|
1999-09-14 02:03:19 +00:00
|
|
|
# Install the w32 and tests subdirectories
|
1997-08-27 20:30:54 +00:00
|
|
|
#
|
|
|
|
dist-hook:
|
|
|
|
(cd $(srcdir); \
|
2013-01-13 00:31:13 +00:00
|
|
|
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`; \
|
1999-09-14 02:03:19 +00:00
|
|
|
tar chf - $$sub) \
|
1997-08-27 20:30:54 +00:00
|
|
|
| (cd $(distdir); tar xfBp -)
|
|
|
|
|
|
|
|
|
|
|
|
# --------------- Local CHECK Section
|
|
|
|
|
1999-09-14 02:03:19 +00:00
|
|
|
check-local: check-regression check-loadavg
|
1999-09-16 05:58:44 +00:00
|
|
|
@banner=" Regression PASSED: GNU Make $(VERSION) ($(MAKE_HOST)) built with $(CC) "; \
|
1999-09-15 22:23:35 +00:00
|
|
|
dashes=`echo "$$banner" | sed s/./=/g`; \
|
1999-09-16 05:58:44 +00:00
|
|
|
echo; \
|
1999-09-15 22:23:35 +00:00
|
|
|
echo "$$dashes"; \
|
|
|
|
echo "$$banner"; \
|
1999-09-16 05:58:44 +00:00
|
|
|
echo "$$dashes"; \
|
|
|
|
echo
|
1999-09-15 22:23:35 +00:00
|
|
|
|
1997-08-27 20:30:54 +00:00
|
|
|
.PHONY: check-loadavg check-regression
|
|
|
|
|
2004-05-16 19:16:52 +00:00
|
|
|
check-loadavg: loadavg$(EXEEXT)
|
1997-08-27 20:30:54 +00:00
|
|
|
@echo The system uptime program believes the load average to be:
|
|
|
|
-uptime
|
2002-04-22 02:11:31 +00:00
|
|
|
@echo The GNU load average checking code thinks:
|
2004-05-16 19:16:52 +00:00
|
|
|
-./loadavg$(EXEEXT)
|
1997-08-27 20:30:54 +00:00
|
|
|
|
2002-04-22 02:11:31 +00:00
|
|
|
# The loadavg function is invoked during "make check" to test getloadavg.
|
2006-01-04 14:45:16 +00:00
|
|
|
check_PROGRAMS = loadavg
|
2002-10-25 18:42:52 +00:00
|
|
|
nodist_loadavg_SOURCES = getloadavg.c
|
|
|
|
loadavg_CPPFLAGS = -DTEST
|
2002-05-10 03:15:07 +00:00
|
|
|
loadavg_LDADD = @GETLOADAVG_LIBS@
|
2002-04-22 02:11:31 +00:00
|
|
|
|
1997-08-27 20:30:54 +00:00
|
|
|
# > check-regression
|
|
|
|
#
|
1999-09-14 02:03:19 +00:00
|
|
|
# Look for the make test suite, and run it if found and we can find perl.
|
|
|
|
# If we're building outside the tree, we use symlinks to make a local copy of
|
|
|
|
# the test suite. Unfortunately the test suite itself isn't localizable yet.
|
1997-08-27 20:30:54 +00:00
|
|
|
#
|
1998-07-30 20:54:47 +00:00
|
|
|
MAKETESTFLAGS =
|
|
|
|
|
2013-10-19 19:39:15 +00:00
|
|
|
check-regression: tests/config-flags.pm
|
2013-02-25 06:38:36 +00:00
|
|
|
@if test -f '$(srcdir)/tests/run_make_tests'; then \
|
2015-07-12 22:05:50 +00:00
|
|
|
ulimit -n 128; \
|
1999-09-14 02:03:19 +00:00
|
|
|
if $(PERL) -v >/dev/null 2>&1; then \
|
2013-02-25 06:38:36 +00:00
|
|
|
case `cd '$(srcdir)'; pwd` in `pwd`) : ;; \
|
1999-09-15 22:23:35 +00:00
|
|
|
*) test -d tests || mkdir tests; \
|
1999-09-16 03:43:10 +00:00
|
|
|
rm -f srctests; \
|
2013-02-25 06:38:36 +00:00
|
|
|
if ln -s '$(srcdir)/tests' srctests; then \
|
2017-11-11 18:12:28 +00:00
|
|
|
for f in run_make_tests run_make_tests.pl test_driver.pl scripts jhelp.pl; do \
|
1999-09-14 02:03:19 +00:00
|
|
|
rm -f tests/$$f; ln -s ../srctests/$$f tests; \
|
|
|
|
done; fi ;; \
|
|
|
|
esac; \
|
2013-02-25 06:38:36 +00:00
|
|
|
echo "cd tests && $(PERL) ./run_make_tests.pl -srcdir $(abs_srcdir) -make ../make$(EXEEXT) $(MAKETESTFLAGS)"; \
|
|
|
|
cd tests && $(PERL) ./run_make_tests.pl -srcdir '$(abs_srcdir)' -make '../make$(EXEEXT)' $(MAKETESTFLAGS); \
|
1999-09-14 02:03:19 +00:00
|
|
|
else \
|
|
|
|
echo "Can't find a working Perl ($(PERL)); the test suite requires Perl."; \
|
|
|
|
fi; \
|
2015-07-12 22:05:50 +00:00
|
|
|
else \
|
1999-09-14 02:03:19 +00:00
|
|
|
echo "Can't find the GNU Make test suite ($(srcdir)/tests)."; \
|
2015-07-12 22:05:50 +00:00
|
|
|
fi
|
1997-08-18 18:11:04 +00:00
|
|
|
|
1997-08-27 20:30:54 +00:00
|
|
|
|
|
|
|
# --------------- Maintainer's Section
|
1997-08-18 18:11:04 +00:00
|
|
|
|
2004-11-30 20:58:52 +00:00
|
|
|
# Tell automake that I haven't forgotten about this file and it will be
|
2013-01-13 00:31:13 +00:00
|
|
|
# created before we build a distribution (see maintMakefile in the Git
|
2004-11-30 20:58:52 +00:00
|
|
|
# distribution).
|
|
|
|
|
|
|
|
README:
|
|
|
|
|
1999-03-05 05:55:11 +00:00
|
|
|
@MAINT_MAKEFILE@
|