Update of /cvsroot/libfunutil/libfunutil/toc/make
In directory sc8-pr-cvs1:/tmp/cvs-serv24529/toc/make
Modified Files:
cleaner.make
Log Message:
Fixes to remove duplicate cleanings.
Index: cleaner.make
===================================================================
RCS file: /cvsroot/libfunutil/libfunutil/toc/make/cleaner.make,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- cleaner.make 1 Sep 2003 04:59:22 -0000 1.6
+++ cleaner.make 5 Sep 2003 09:32:14 -0000 1.7
@@ -40,9 +40,9 @@
@$(call toc_make_subdirs,$*,distclean)
-clean-.:
+clean-.: clean-subdirs
@$(call toc_clean_files,$(wildcard $(CLEAN_FILES)))
-distclean-.:
+distclean-.: distclean-subdirs
@$(call toc_clean_files,$(wildcard $(CLEAN_FILES) $(DISTCLEAN_FILES)))
subdirs-clean: # implemented elsewhere
@@ -52,14 +52,14 @@
# toc-XXX stubs: don't use these directly
-toc-clean: subdirs-clean clean-.
-toc-distclean: subdirs-distclean distclean-.
+#toc-clean: subdirs-clean clean-.
+#toc-distclean: subdirs-distclean distclean-.
# we clean depth-first to keep some top-level generated files from being nuked :/
ifeq (1,$(TOC_OVERRIDE_CLEAN))
clean:
distclean:
else
-clean: toc-clean
-distclean: toc-distclean
+clean: clean-.
+distclean: distclean-.
endif
|