changeset 2398:76d255496b89

[project @ 1996-10-13 04:30:01 by jwe]
author jwe
date Sun, 13 Oct 1996 04:30:21 +0000
parents e2ac44fe3a49
children 96abb5c4568d
files ChangeLog examples/Makefile.in readline/ChangeLog readline/examples/Makefile.in
diffstat 4 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Oct 12 23:44:58 1996 +0000
+++ b/ChangeLog	Sun Oct 13 04:30:21 1996 +0000
@@ -1,5 +1,7 @@
 Sat Oct 12 00:17:06 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
+	* examples/Makefile.in (clean, mostlyclean): New targets.
+
 	* octMakefile.in (CLEANSUBDIRS): New macro.
 	Use it for clean targets.
 
--- a/examples/Makefile.in	Sat Oct 12 23:44:58 1996 +0000
+++ b/examples/Makefile.in	Sun Oct 13 04:30:21 1996 +0000
@@ -35,11 +35,16 @@
 TAGS: $(SOURCES)
 	etags $(SOURCES)
 
+clean mostlyclean:
+.PHONY: clean mostlyclean
+
 distclean:
 	rm -f Makefile
+.PHONY: distclean
 
 maintainer-clean: distclean
 	rm -f tags TAGS
+.PHONY: maintainer-clean
 
 local-dist:
 	ln $(DISTFILES) ../`cat ../.fname`/examples
--- a/readline/ChangeLog	Sat Oct 12 23:44:58 1996 +0000
+++ b/readline/ChangeLog	Sun Oct 13 04:30:21 1996 +0000
@@ -1,6 +1,7 @@
 Sat Oct 12 18:36:13 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* Makefile.in (clean targets): Don't depend on clean.
+	Also make targets in examples subdirectory.
 
 Fri Aug 30 09:07:57 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
--- a/readline/examples/Makefile.in	Sat Oct 12 23:44:58 1996 +0000
+++ b/readline/examples/Makefile.in	Sun Oct 13 04:30:21 1996 +0000
@@ -21,6 +21,8 @@
 .PHONY: dist
 
 clean:
+.PHONY: clean
 
 distclean mostlyclean maintainer-clean:
 	rm -f Makefile
+.PHONY: distclean mostlyclean maintainer-clean
\ No newline at end of file