]> sourceware.org Git - automake.git/commitdiff
Gnits standards compliance
authorTom Tromey <tromey@redhat.com>
Thu, 12 Sep 1996 05:58:39 +0000 (05:58 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 12 Sep 1996 05:58:39 +0000 (05:58 +0000)
ChangeLog
NEWS
TODO
clean.am
lib/am/clean.am

index c6571746cc48309fa2903503954785a60b285de1..6177f938888792f788b90f9d5d1fb98ebee31a05 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 24928a353e1df1b66769942e02b1493cef158e0c..3d380bcc6299f17efa0dc53fa49bcaa1094035a8 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 a6c53533e58d62dc28b490b9a8835d07ac552d78..96a6404c1329ed3a8070fe4298e1fca176862d67 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 79c310a14050a80af26bae76235e884550f2ce2c..387d245f14ed5985a318b849ff1d60a0d721d861 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 79c310a14050a80af26bae76235e884550f2ce2c..387d245f14ed5985a318b849ff1d60a0d721d861 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)
This page took 0.032409 seconds and 5 git commands to generate.