# HG changeset patch # User jwe # Date 832131337 0 # Node ID 983038cd04cd84dd18559095daa68b9e51c0de92 # Parent d2653a9730e944c557f95c731d3bd6f3f065a340 [project @ 1996-05-15 03:32:20 by jwe] diff --git a/make/misc.make b/make/misc.make --- a/make/misc.make +++ b/make/misc.make @@ -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. diff --git a/readline/Makefile.in b/readline/Makefile.in --- a/readline/Makefile.in +++ b/readline/Makefile.in @@ -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