From: Tom Tromey Date: Thu, 12 Sep 1996 05:58:41 +0000 (+0000) Subject: Gnits standards compliance X-Git-Tag: Release-1-1f~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e89d0afac91d3dfc58c8745be5060853336c4ee;p=thirdparty%2Fautomake.git Gnits standards compliance --- diff --git a/ChangeLog b/ChangeLog index c6571746c..6177f9388 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Wed Sep 11 11:54:44 1996 Tom Tromey + * 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 24928a353..3d380bcc6 100644 --- 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 a6c53533e..96a6404c1 100644 --- 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: diff --git a/clean.am b/clean.am index 79c310a14..387d245f1 100644 --- 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) diff --git a/lib/am/clean.am b/lib/am/clean.am index 79c310a14..387d245f1 100644 --- a/lib/am/clean.am +++ b/lib/am/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)