mirror of
https://github.com/mirror/make.git
synced 2025-01-05 01:40:30 +08:00
63b42fa235
Move content from glob/* and config/* into standard GNU directory locations lib/* and m4/*. Install the gnulib bootstrap script and its configuration file, and create a bootstrap.bat file for Windows. Update the README.git file with new requirements and instructions for building from Git. At this point we only install the alloca, getloadavg, and FDL modules from gnulib. We keep our old glob/fnmatch implementation since the gnulib versions require significant amounts of infrastructure which doesn't exist on Windows yet. Further work is required here. Due to a problem with gnulib's version of getloadavg, we need to bump the minimum required version of automake to 1.16.1 unfortunately. * README.git: Update instructions * NEWS: Move developer news to a separate section * configure.ac: Update for use with gnulib modules * bootstrap: Bootstrap from Git workspace (import from gnulib) * bootstrap.conf: Bootstrap configuration for GNU make * bootstrap.bat: Bootstrap from Git workspace for Windows * gl/modules/make-glob: Support our local fnmatch/glob implementation * config/acinclude.m4: Move to m4/ * config/dospaths.m4: Move to m4/ * glob/fnmatch.c: Move to lib/ * glob/fnmatch.h.in: Move to lib/ * glob/glob.c: Move to lib/ * glob/glob.h.in: Move to lib/ * Makefile.am: Update for new directories * build.template: Update for new directories * build_w32.bat: Update for new directories * builddos.bat: Update for new directories * maintMakefile: Update for new directories * makefile.com: Update for new directories * mk/Amiga.mk: Update for new directories * mk/Posix.mk.in: Update for new directories * mk/VMS.mk: Update for new directories * mk/Windows32.mk: Update for new directories * mk/msdosdjgpp.mk: Update for new directories * po/LINGUAS: One language per line (needed by gnulib) * INSTALL: Remove (obtained from gnulib) * src/alloca.c: Remove (obtained from gnulib) * src/getloadavg.c: Remove (obtained from gnulib) * po/Makevars: Remove (created by bootstrap) * config/*: Remove leftover files * glob/*: Remove leftover files
187 lines
6.1 KiB
Makefile
187 lines
6.1 KiB
Makefile
# This is a -*-Makefile-*-, or close enough
|
|
#
|
|
# Copyright (C) 1997-2018 Free Software Foundation, Inc.
|
|
# This file is part of GNU Make.
|
|
#
|
|
# 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.
|
|
#
|
|
# GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
AUTOMAKE_OPTIONS = dist-bzip2 silent-rules std-options subdir-objects nostdinc
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
MAKE_HOST = @MAKE_HOST@
|
|
|
|
SUBDIRS = lib po doc
|
|
|
|
bin_PROGRAMS = make
|
|
include_HEADERS = src/gnumake.h
|
|
|
|
man_MANS = doc/make.1
|
|
|
|
make_SRCS = src/ar.c src/arscan.c src/commands.c src/commands.h \
|
|
src/debug.h src/default.c src/dep.h src/dir.c src/expand.c \
|
|
src/file.c src/filedef.h src/function.c src/getopt.c \
|
|
src/getopt.h src/getopt1.c src/gettext.h src/guile.c \
|
|
src/hash.c src/hash.h src/implicit.c src/job.c src/job.h \
|
|
src/load.c src/loadapi.c src/main.c src/makeint.h src/misc.c \
|
|
src/os.h src/output.c src/output.h src/read.c src/remake.c \
|
|
src/rule.c src/rule.h src/signame.c src/strcache.c \
|
|
src/variable.c src/variable.h src/version.c src/vpath.c
|
|
|
|
w32_SRCS = src/w32/pathstuff.c src/w32/w32os.c src/w32/compat/dirent.c \
|
|
src/w32/compat/posixfcn.c src/w32/include/dirent.h \
|
|
src/w32/include/dlfcn.h src/w32/include/pathstuff.h \
|
|
src/w32/include/sub_proc.h src/w32/include/w32err.h \
|
|
src/w32/subproc/misc.c src/w32/subproc/proc.h \
|
|
src/w32/subproc/sub_proc.c src/w32/subproc/w32err.c
|
|
|
|
vms_SRCS = src/vms_exit.c src/vms_export_symbol.c src/vms_progname.c \
|
|
src/vmsdir.h src/vmsfunctions.c src/vmsify.c
|
|
|
|
amiga_SRCS = src/amiga.c src/amiga.h
|
|
|
|
glob_SRCS = lib/fnmatch.c lib/fnmatch.h lib/glob.c lib/glob.h
|
|
|
|
alloca_SRCS = lib/alloca.c
|
|
|
|
loadavg_SRCS = lib/getloadavg.c
|
|
|
|
make_SOURCES = $(make_SRCS)
|
|
EXTRA_make_SOURCES = $(amiga_SRCS) $(vms_SRCS)
|
|
|
|
make_LDADD = $(LIBOBJS) $(GUILE_LIBS) lib/libgnu.a $(GETLOADAVG_LIBS) \
|
|
@LIBINTL@
|
|
|
|
localedir = $(datadir)/locale
|
|
|
|
AM_CPPFLAGS = -Isrc -I$(top_srcdir)/src -Ilib -I$(top_srcdir)/lib \
|
|
-DLIBDIR=\"$(libdir)\" -DINCLUDEDIR=\"$(includedir)\" \
|
|
-DLOCALEDIR=\"$(localedir)\"
|
|
|
|
AM_CFLAGS = $(GUILE_CFLAGS)
|
|
|
|
if WINDOWSENV
|
|
make_SOURCES += $(w32_SRCS)
|
|
AM_CPPFLAGS += -I $(top_srcdir)/src/w32/include
|
|
else
|
|
make_SOURCES += src/posixos.c
|
|
endif
|
|
|
|
if USE_CUSTOMS
|
|
make_SOURCES += src/remote-cstms.c
|
|
else
|
|
make_SOURCES += src/remote-stub.c
|
|
endif
|
|
|
|
# Extra stuff to include in the distribution.
|
|
|
|
mk_FILES = Basic.mk mk/msdosdjgpp.mk mk/Amiga.mk mk/VMS.mk mk/Windows32.mk
|
|
# We don't need this, since the standard automake output will do.
|
|
#mk/Posix.mk.in
|
|
|
|
m4_FILES = m4/gnulib-cache.m4
|
|
|
|
test_FILES = tests/run_make_tests tests/run_make_tests.bat \
|
|
tests/run_make_tests.pl tests/test_driver.pl \
|
|
tests/config-flags.pm.in tests/config_flags_pm.com \
|
|
tests/mkshadow tests/jhelp.pl tests/guile.supp tests/README
|
|
# test/scripts are added via dist-hook below.
|
|
|
|
EXTRA_DIST = ChangeLog README build.sh.in $(man_MANS) \
|
|
README.customs README.OS2 \
|
|
README.Amiga SCOPTIONS src/config.ami \
|
|
README.DOS builddos.bat src/configh.dos \
|
|
README.W32 build_w32.bat src/config.h.W32 \
|
|
README.VMS makefile.com src/config.h-vms src/vmsjobs.c \
|
|
vms_export_symbol_test.com \
|
|
src/gmk-default.scm src/gmk-default.h \
|
|
$(mk_FILES) $(m4_FILES) $(test_FILES)
|
|
|
|
|
|
# This is built during configure, but behind configure's back
|
|
|
|
DISTCLEANFILES = build.sh
|
|
|
|
# --------------- Generate the Guile default module content
|
|
|
|
src/guile.$(OBJEXT): src/gmk-default.h
|
|
src/gmk-default.h: $(top_srcdir)/src/gmk-default.scm
|
|
(echo 'static const char *const GUILE_module_defn = " '\\ \
|
|
&& sed -e 's/;.*//' -e '/^[ \t]*$$/d' -e 's/"/\\"/g' -e 's/$$/ \\/' \
|
|
$(top_srcdir)/src/gmk-default.scm \
|
|
&& echo '";') > src/gmk-default.h
|
|
|
|
# --------------- Local DIST Section
|
|
|
|
# Install the mk and tests subdirectories
|
|
#
|
|
dist-hook:
|
|
(cd $(top_srcdir); \
|
|
sub=`find tests/scripts -follow \( -name .git -o -name .deps -o -name work -o -name .gitignore -o -name \*.orig -o -name \*.rej -o -name \*~ -o -name \*.out -o -name Makefile \) -prune -o -type f -print`; \
|
|
tar chf - $$sub) \
|
|
| (cd $(distdir); tar xfBp -)
|
|
|
|
|
|
# --------------- Local CHECK Section
|
|
|
|
check-local: check-regression
|
|
@banner=" Regression PASSED: GNU Make $(VERSION) ($(MAKE_HOST)) built with $(CC) "; \
|
|
dashes=`echo "$$banner" | sed s/./=/g`; \
|
|
echo; \
|
|
echo "$$dashes"; \
|
|
echo "$$banner"; \
|
|
echo "$$dashes"; \
|
|
echo
|
|
|
|
# > check-regression
|
|
#
|
|
# 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.
|
|
#
|
|
MAKETESTFLAGS =
|
|
|
|
.PHONY: check-regression
|
|
|
|
check-regression: tests/config-flags.pm
|
|
@if test -f '$(top_srcdir)/tests/run_make_tests'; then \
|
|
ulimit -n 128; \
|
|
if $(PERL) -v >/dev/null 2>&1; then \
|
|
case `cd '$(top_srcdir)'; pwd` in `pwd`) : ;; \
|
|
*) test -d tests || mkdir tests; \
|
|
rm -f srctests; \
|
|
if ln -s '$(top_srcdir)/tests' srctests; then \
|
|
for f in run_make_tests run_make_tests.pl test_driver.pl scripts jhelp.pl; do \
|
|
rm -f tests/$$f; ln -s ../srctests/$$f tests; \
|
|
done; fi ;; \
|
|
esac; \
|
|
echo "cd tests && $(PERL) ./run_make_tests.pl -srcdir $(abs_top_srcdir) -make ../make$(EXEEXT) $(MAKETESTFLAGS)"; \
|
|
cd tests && $(PERL) ./run_make_tests.pl -srcdir '$(abs_top_srcdir)' -make '../make$(EXEEXT)' $(MAKETESTFLAGS); \
|
|
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 ($(top_srcdir)/tests)."; \
|
|
fi
|
|
|
|
|
|
# --------------- Maintainer's Section
|
|
|
|
# Tell automake that I haven't forgotten about this file and it will be
|
|
# created before we build a distribution (see maintMakefile in the Git
|
|
# distribution).
|
|
|
|
README:
|
|
|
|
@MAINT_MAKEFILE@
|