Gnits standards compliance
authorTom Tromey <tromey@redhat.com>
Thu, 12 Sep 1996 05:58:41 +0000 (05:58 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 12 Sep 1996 05:58:41 +0000 (05:58 +0000)
ChangeLog
NEWS
TODO
clean.am
lib/am/clean.am

index c657174..6177f93 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Wed Sep 11 11:54:44 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
+       * clean.am (distclean-generic): Remove CONFIG_CLEAN_FILES here,
+       per GNU/Gnits standards.
+
        * libraries.am (install-@DIR@LIBRARIES): Use two loops, so new
        NORMAL_INSTALL and POST_INSTALL variables can work when empty.
 
diff --git a/NEWS b/NEWS
index 24928a3..3d380bc 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -9,7 +9,6 @@ New in 1.1e:
 * Now uses `AM_' macro names everywhere
 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
 * Better C++, yacc, lex support
-* Random files listed in AC_OUTPUT now removed by "make clean"
 * Will compute _DEPENDENCIES variables automatically if not supplied
 * Will interpolate $(...) and ${...} when examining contents of a variable
 * .deps files now in build directory, not source directory; dependency
diff --git a/TODO b/TODO
index a6c5353..96a6404 100644 (file)
--- a/TODO
+++ b/TODO
@@ -354,6 +354,9 @@ This is insufficiently clear
 must document the targets required for integration with
 non-automake-using subdirs
 
+precisely what --gnits implies.  maybe ditto --gnu
+  * README-alpha support with --gnits
+
 ================================================================
 
 Libraries:
index 79c310a..387d245 100644 (file)
--- a/clean.am
+++ b/clean.am
@@ -24,11 +24,11 @@ mostlyclean-generic:
 
 clean-generic:
        test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
-       test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
 distclean-generic:
        rm -f Makefile $(DISTCLEANFILES)
        rm -f config.cache config.log $(CONFIG_HEADER) stamp-h
+       test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
 maintainer-clean-generic:
        test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
index 79c310a..387d245 100644 (file)
@@ -24,11 +24,11 @@ mostlyclean-generic:
 
 clean-generic:
        test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
-       test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
 distclean-generic:
        rm -f Makefile $(DISTCLEANFILES)
        rm -f config.cache config.log $(CONFIG_HEADER) stamp-h
+       test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
 maintainer-clean-generic:
        test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)