diff options
author | Paul Smith <psmith@gnu.org> | 1999-03-05 05:55:11 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-03-05 05:55:11 +0000 |
commit | 9e6ba6a148aa6e4a6aed496d91bac44323325445 (patch) | |
tree | eafdc0668a04d95c8901d349f545ffdcab0f7138 /GNUmakefile | |
parent | ede263043c9a31110da168ee84a59b1bbb6791c3 (diff) | |
download | gunmake-9e6ba6a148aa6e4a6aed496d91bac44323325445.tar.gz |
* Update FSF address info in copyright notices.
* Update maintainers build process; remove GNUmakefile. Require builders to
run automake && autoreconf by hand.
* Use AC_SUBST_FILE to get the maintMakefile included, rather than GNU
make's include directive, which conflicts with automake 1.4's include
directive.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/GNUmakefile b/GNUmakefile deleted file mode 100644 index 97b2e1d..0000000 --- a/GNUmakefile +++ /dev/null @@ -1,58 +0,0 @@ -# This is a maintainer's-only makefile -# -# It bootstraps a GNU make maintainer's directory -# - -.SUFFIXES: - -NORECURSE = true - -ACLOCALARGS = - -CFLAGS = -g -O -Wall -D__USE_FIXED_PROTOTYPES__ -export CFLAGS - -# If the user asked for a specific target, invoke the Makefile instead. -# -.DEFAULT: - @[ -f Makefile.in -a -f configure -a -f aclocal.m4 -a -f config.h.in ] \ - || $(MAKE) __cfg NORECURSE= - @[ -f Makefile ] \ - || CFLAGS='-g -O -Wall -D__USE_FIXED_PROTOTYPES__' ./configure - $(MAKE) -f Makefile $@ - -.PHONY: __cfg __cfg_basic - -# This is variable since the glob subdirectory doesn't use it. -# -ACCONFIG = acconfig.h - -__cfg: __cfg_basic config.h.in TAGS -ifdef NORECURSE - @echo ""; echo "Now you should run:"; echo ""; \ - echo " make all"; echo ""; \ - echo "then, optionally, one of:"; echo ""; \ - echo " make dist"; \ - echo " make distdir"; \ - echo " make distcheck"; \ - echo "" -endif - -__cfg_basic: aclocal.m4 stamp-h.in configure Makefile.in - -aclocal.m4: configure.in $(wildcard acinclude.m4) - aclocal $(ACLOCALARGS) - -config.h.in: stamp-h.in -stamp-h.in: configure.in aclocal.m4 $(ACCONFIG) - autoheader - echo timestamp > $@ - -configure: configure.in aclocal.m4 - autoconf $(ACARGS) - -Makefile.in: configure.in config.h.in Makefile.am aclocal.m4 - automake --add-missing - -TAGS: - find . -name '*.[ch]' -print | etags - |