1999-07-21 13:53:23 +08:00
|
|
|
# This is a -*-Makefile-*-, or close enough
|
1997-08-19 02:11:04 +08:00
|
|
|
|
1999-07-22 12:20:14 +08:00
|
|
|
AUTOMAKE_OPTIONS = 1.4
|
1997-08-19 02:11:04 +08:00
|
|
|
|
|
|
|
bin_PROGRAMS = make
|
|
|
|
|
|
|
|
make_SOURCES = main.c commands.c job.c dir.c file.c misc.c read.c remake.c \
|
|
|
|
rule.c implicit.c default.c variable.c expand.c function.c \
|
|
|
|
vpath.c version.c ar.c arscan.c remote-$(REMOTE).c \
|
|
|
|
commands.h dep.h filedef.h job.h make.h rule.h variable.h \
|
|
|
|
signame.c signame.h \
|
|
|
|
getopt.c getopt1.c getopt.h
|
1999-03-26 15:08:57 +08:00
|
|
|
make_LDADD = @LIBOBJS@ @ALLOCA@ @GLOBLIB@
|
1997-08-19 02:11:04 +08:00
|
|
|
|
|
|
|
info_TEXINFOS = make.texinfo
|
1998-07-31 04:54:47 +08:00
|
|
|
man_MANS = make.1
|
1997-08-19 02:11:04 +08:00
|
|
|
|
1999-10-15 07:20:12 +08:00
|
|
|
INCLUDES = @GLOBINC@ -DLIBDIR=\"$(libdir)\" -DINCLUDEDIR=\"$(includedir)\"
|
1997-08-19 02:11:04 +08:00
|
|
|
|
1999-03-30 14:19:17 +08:00
|
|
|
EXTRA_DIST = README build.sh.in $(man_MANS) README.customs remote-cstms.c\
|
1997-08-28 04:30:54 +08:00
|
|
|
make-stds.texi texinfo.tex SCOPTIONS SMakefile\
|
|
|
|
README.Amiga Makefile.ami config.ami make.lnk amiga.c amiga.h\
|
|
|
|
README.DOS Makefile.DOS configure.bat dosbuild.bat configh.dos\
|
|
|
|
README.W32 NMakefile config.h.W32 build_w32.bat subproc.bat\
|
|
|
|
readme.vms makefile.vms makefile.com config.h-vms vmsdir.h\
|
|
|
|
vmsfunctions.c vmsify.c
|
1997-08-19 02:11:04 +08:00
|
|
|
|
|
|
|
SUBDIRS = glob
|
|
|
|
|
1997-09-20 03:47:55 +08:00
|
|
|
MOSTLYCLEANFILES = loadavg.c
|
|
|
|
CLEANFILES = loadavg
|
|
|
|
|
1999-09-16 06:23:35 +08:00
|
|
|
MAKE_HOST = @MAKE_HOST@
|
|
|
|
|
1998-07-31 04:54:47 +08: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.
|
|
|
|
# The value should be either `true' or `false'.
|
|
|
|
# On many systems, the getloadavg function (used to implement the `-l'
|
|
|
|
# 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;"; \
|
|
|
|
echo "otherwise the \`-l' option will probably not work."; \
|
|
|
|
echo "You may need special privileges to complete the installation"; \
|
|
|
|
echo "of $$app."; \
|
|
|
|
fi; \
|
|
|
|
else true; fi
|
|
|
|
|
1997-08-28 04:30:54 +08:00
|
|
|
# --------------- Local DIST Section
|
|
|
|
|
1999-09-14 10:03:19 +08:00
|
|
|
# Install the w32 and tests subdirectories
|
1997-08-28 04:30:54 +08:00
|
|
|
#
|
|
|
|
dist-hook:
|
|
|
|
(cd $(srcdir); \
|
1999-09-16 06:23:35 +08:00
|
|
|
sub=`find w32 tests -follow \( -name CVS -prune -o -name work -prune \) -o \( -name \*.orig -o -name \*.rej -o -name \*~ -prune \) -o -type f -print`; \
|
1999-09-14 10:03:19 +08:00
|
|
|
tar chf - $$sub) \
|
1997-08-28 04:30:54 +08:00
|
|
|
| (cd $(distdir); tar xfBp -)
|
|
|
|
|
|
|
|
|
|
|
|
# --------------- Local CHECK Section
|
|
|
|
|
1999-09-14 10:03:19 +08:00
|
|
|
check-local: check-regression check-loadavg
|
1999-09-16 13:58:44 +08:00
|
|
|
@banner=" Regression PASSED: GNU Make $(VERSION) ($(MAKE_HOST)) built with $(CC) "; \
|
1999-09-16 06:23:35 +08:00
|
|
|
dashes=`echo "$$banner" | sed s/./=/g`; \
|
1999-09-16 13:58:44 +08:00
|
|
|
echo; \
|
1999-09-16 06:23:35 +08:00
|
|
|
echo "$$dashes"; \
|
|
|
|
echo "$$banner"; \
|
1999-09-16 13:58:44 +08:00
|
|
|
echo "$$dashes"; \
|
|
|
|
echo
|
1999-09-16 06:23:35 +08:00
|
|
|
|
1997-08-28 04:30:54 +08:00
|
|
|
.PHONY: check-loadavg check-regression
|
|
|
|
|
|
|
|
# > check-loadavg
|
1997-08-19 02:11:04 +08:00
|
|
|
#
|
1997-08-28 04:30:54 +08:00
|
|
|
loadavg: loadavg.c config.h
|
|
|
|
@rm -f loadavg
|
1999-09-14 08:17:58 +08:00
|
|
|
$(LINK) $(DEFS) $(CPPFLAGS) -DTEST $(make_LDFLAGS) loadavg.c $(LIBS)
|
1998-07-31 04:54:47 +08:00
|
|
|
|
1997-08-28 04:30:54 +08:00
|
|
|
# We copy getloadavg.c into a different file rather than compiling it
|
|
|
|
# directly because some compilers clobber getloadavg.o in the process.
|
1998-07-31 04:54:47 +08:00
|
|
|
#
|
1997-08-28 04:30:54 +08:00
|
|
|
loadavg.c: getloadavg.c
|
|
|
|
ln $(srcdir)/getloadavg.c loadavg.c || \
|
1998-07-31 04:54:47 +08:00
|
|
|
cp $(srcdir)/getloadavg.c loadavg.c
|
|
|
|
|
1997-08-28 04:30:54 +08:00
|
|
|
check-loadavg: loadavg
|
|
|
|
@echo The system uptime program believes the load average to be:
|
|
|
|
-uptime
|
|
|
|
@echo The GNU load average checking code believes:
|
|
|
|
-./loadavg
|
|
|
|
|
|
|
|
# > check-regression
|
|
|
|
#
|
1999-09-14 10:03:19 +08: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-28 04:30:54 +08:00
|
|
|
#
|
1998-07-31 04:54:47 +08:00
|
|
|
MAKETESTFLAGS =
|
|
|
|
|
1999-09-14 10:03:19 +08:00
|
|
|
check-regression:
|
|
|
|
@if test -f "$(srcdir)/tests/run_make_tests"; then \
|
|
|
|
if $(PERL) -v >/dev/null 2>&1; then \
|
|
|
|
case `cd $(srcdir); pwd` in `pwd`) : ;; \
|
1999-09-16 06:23:35 +08:00
|
|
|
*) test -d tests || mkdir tests; \
|
1999-09-16 11:43:10 +08:00
|
|
|
rm -f srctests; \
|
1999-09-14 10:03:19 +08:00
|
|
|
if ln -s "$(srcdir)/tests" srctests; then \
|
|
|
|
for f in run_make_tests run_make_tests.pl test_driver.pl scripts; do \
|
|
|
|
rm -f tests/$$f; ln -s ../srctests/$$f tests; \
|
|
|
|
done; fi ;; \
|
|
|
|
esac; \
|
1999-09-16 06:23:35 +08:00
|
|
|
echo "cd tests && $(PERL) ./run_make_tests.pl -make ../make $(MAKETESTFLAGS)"; \
|
|
|
|
cd tests && $(PERL) ./run_make_tests.pl -make ../make $(MAKETESTFLAGS); \
|
1999-09-14 10:03:19 +08:00
|
|
|
else \
|
|
|
|
echo "Can't find a working Perl ($(PERL)); the test suite requires Perl."; \
|
|
|
|
fi; \
|
|
|
|
else \
|
|
|
|
echo "Can't find the GNU Make test suite ($(srcdir)/tests)."; \
|
|
|
|
fi
|
1997-08-19 02:11:04 +08:00
|
|
|
|
1997-08-28 04:30:54 +08:00
|
|
|
|
1999-03-30 14:19:17 +08:00
|
|
|
# --------------- Local CLEAN section
|
|
|
|
|
|
|
|
maintainer-clean-local:
|
|
|
|
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
|
|
|
|
|
|
|
|
1997-08-28 04:30:54 +08:00
|
|
|
# --------------- Maintainer's Section
|
1997-08-19 02:11:04 +08:00
|
|
|
|
1999-03-05 13:55:11 +08:00
|
|
|
@MAINT_MAKEFILE@
|