changeset 2047:88a71749b954

[project @ 1996-03-29 19:54:14 by jwe]
author jwe
date Fri, 29 Mar 1996 19:54:14 +0000
parents 18847f7caa8a
children 88960d151be5
files libcruft/Makefile.in
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libcruft/Makefile.in
+++ b/libcruft/Makefile.in
@@ -104,11 +104,13 @@
 	rm -f *.a *.o
 	if $(SHARED_LIBS); then rm -f *.$(SHLEXT); fi
 
-distclean:: clean
-	rm -f Makefile Makerules so_locations
+distclean::
+	rm -f *.a *.o Makefile Makerules so_locations
+	if $(SHARED_LIBS); then rm -f *.$(SHLEXT); fi
 
 maintainer-clean:: distclean
-	rm -f tags TAGS
+	rm -f *.a *.o Makefile Makerules so_locations tags TAGS
+	if $(SHARED_LIBS); then rm -f *.$(SHLEXT); fi
 
 local-dist:
 	for dir in $(SUBDIRS); do mkdir ../`cat ../.fname`/libcruft/$$dir; cd $$dir; $(MAKE) $@; cd ..; done