changeset 2199:983038cd04cd

[project @ 1996-05-15 03:32:20 by jwe]
author jwe
date Wed, 15 May 1996 03:35:37 +0000
parents d2653a9730e9
children 6abec42e52f6
files make/misc.make readline/Makefile.in
diffstat 2 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/make/misc.make	Wed May 15 01:37:13 1996 +0000
+++ b/make/misc.make	Wed May 15 03:35:37 1996 +0000
@@ -4,7 +4,7 @@
 	  etags *.c *.h; else etags -i $(kpathsea_dir)/TAGS *.c *.h; fi
 
 mostlyclean::
-	rm -f *.o $(program) $(programs) squeeze $(library).a
+	rm -f *.o $(program) $(programs) squeeze $(library).a pic/*.o
 	if $(SHARED_LIBS); then rm -f *.$(SHLEXT); fi
 
 clean:: mostlyclean
@@ -13,6 +13,8 @@
 distclean:: clean
 	rm -f Makefile MakeTeXPK *.pool
 	rm -f config.status config.log config.cache c-auto.h 
+	rm -f stamp-picdir
+	-rmdir pic
 
 # Although we can remake configure and c-auto.h.in, we don't remove
 # them, since many people may lack Autoconf.  Use configclean for that.
--- a/readline/Makefile.in	Wed May 15 01:37:13 1996 +0000
+++ b/readline/Makefile.in	Wed May 15 03:35:37 1996 +0000
@@ -201,13 +201,14 @@
 	tilde.o vi_mode.o xmalloc.o -ltermcap
 
 clean:
-	$(RM) -f $(OBJECTS) libreadline.a libhistory.a
+	$(RM) -f $(OBJECTS) libreadline.a libhistory.a pic/*.o
 	(if [ -d doc ]; then cd doc; $(MAKE) $(MFLAGS) $@; fi)
 	if $(SHARED_LIBS); then rm -f *.$(SHLEXT); fi
 
 maintainer-clean realclean distclean mostlyclean: clean
 	(if [ -d doc ]; then cd doc; $(MAKE) $(MFLAGS) $@; fi)
-	rm -f Makefile config.log config.status
+	rm -f Makefile config.log config.status stamp-picdir
+	-rmdir pic
 
 local-dist:
 	for dir in $(SUBDIRS); do mkdir ../`cat ../.fname`/readline/$$dir; cd $$dir; $(MAKE) $@; cd ..; done