summaryrefslogtreecommitdiff
path: root/maintMakefile
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2002-08-10 01:27:16 +0000
committerPaul Smith <psmith@gnu.org>2002-08-10 01:27:16 +0000
commit299c72e6ed86a1e7a50ec1f5d1a813c383ed0345 (patch)
treed155f782aee6b11704d59a8dd958bc09d5b2c9d5 /maintMakefile
parentee3a4f9dd600b4a80a9957e2c3dd90c99d73cf0e (diff)
downloadgunmake-299c72e6ed86a1e7a50ec1f5d1a813c383ed0345.tar.gz
Update to a new version of automake and gettext.
Invent a new macro HAVE_DOS_PATHS and change various instances of: #if defined(WINDOWS) || defined(__MSDOS__) to use the new macro instead. This should help make the OS/2 port cleaner, as well. Invent a cvs-clean maintainer target that tries to get the workspace back to the state it was in after a CVS checkout. New language.
Diffstat (limited to 'maintMakefile')
-rw-r--r--maintMakefile23
1 files changed, 13 insertions, 10 deletions
diff --git a/maintMakefile b/maintMakefile
index c919af6..2bc1949 100644
--- a/maintMakefile
+++ b/maintMakefile
@@ -78,18 +78,21 @@ build.sh.in: build.template Makefile
#
maintFILES = configure aclocal.m4 config.h.in Makefile.in stamp-h.in
-MAINTAINERCLEANFILES += $(maintFILES) $(TEMPLATES) $(MTEMPLATES) NMakefile \
+CVS-CLEAN-FILES += $(maintFILES) $(TEMPLATES) $(MTEMPLATES) NMakefile \
missing build.sh.in .dep_segment
-# Put the alpha distribution files up for anonymous FTP.
-#
-ALPHA := ~ftp/gnu
-TARFILE := $(distdir).tar.gz
-
-.PHONY: alpha
-alpha: $(ALPHA) $(TARFILE)
- @rm -f $(ALPHA)/$(TARFILE)
- cp -p $(TARFILE) $(ALPHA)
+# This rule tries to clean the tree right down to how it looks when you do a
+# virgin CVS checkout.
+
+.PHONY: cvs-clean
+cvs-clean: maintainer-clean
+ -rm -f *~
+ -rm -f config/*~ config/Makefile.in config/[a-z]*
+ -rm -f po/*~ po/Makefile.in.in po/Rules-quot po/[a-z]*
+ -rm -f doc/*~ doc/Makefile.in doc/fdl.texi doc/make-stds.texi \
+ doc/texinfo.tex
+ -rm -f glob/*~ glob/Makefile.in
+ -rm -f ABOUT-NLS $(CVS-CLEAN-FILES)
# ----------------------------------------------------------------------