diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/ChangeLog | 4 | ||||
-rw-r--r-- | support/Makefile.am | 3 | ||||
-rw-r--r-- | support/Makefile.in | 23 |
3 files changed, 20 insertions, 10 deletions
diff --git a/support/ChangeLog b/support/ChangeLog index 44f4a624..00753047 100644 --- a/support/ChangeLog +++ b/support/ChangeLog @@ -1,3 +1,7 @@ +2018-12-18 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (distclean-local): Remove .deps directory. + 2018-12-15 Arnold D. Robbins <arnold@skeeve.com> * dfa.h, dfa.c: Sync with GNULIB. diff --git a/support/Makefile.am b/support/Makefile.am index 0e198766..bc620f54 100644 --- a/support/Makefile.am +++ b/support/Makefile.am @@ -59,3 +59,6 @@ libsupport_a_SOURCES = \ RM = rm -f DEFS = -DGAWK -DHAVE_CONFIG_H -I"$(srcdir)/.." + +distclean-local: + rm -fr .deps diff --git a/support/Makefile.in b/support/Makefile.in index 9d87cfb2..991ce3b3 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -576,7 +576,7 @@ distclean: distclean-am -rm -f ./$(DEPDIR)/regex.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-local distclean-tags dvi: dvi-am @@ -647,19 +647,22 @@ uninstall-am: .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-noinstLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am + distclean-local distclean-tags distdir dvi dvi-am html html-am \ + info info-am install install-am install-data install-data-am \ + install-dvi install-dvi-am install-exec install-exec-am \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ + ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile +distclean-local: + rm -fr .deps + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |