[llvm-commits] CVS: llvm/Makefile.rules

Reid Spencer reid at x10sys.com
Wed Feb 7 11:13:35 PST 2007



Changes in directory llvm:

Makefile.rules updated: 1.423 -> 1.424
---
Log message:

Make the cleaning of BUILT_SOURCES be a "clean-all" target item, not a 
"clean" target item. This gets around having the built sources disappear
when only one build mode wants to be cleaned. With the "clean-all" target,
all build modes are cleaned so it also makes sense to clean out the built
sources at that point.


---
Diffs of the changes:  (+1 -1)

 Makefile.rules |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.423 llvm/Makefile.rules:1.424
--- llvm/Makefile.rules:1.423	Tue Feb  6 21:29:29 2007
+++ llvm/Makefile.rules	Wed Feb  7 13:13:19 2007
@@ -85,7 +85,7 @@
 #------------------------------------------------------------------------
 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
 
-clean-local::
+clean-all-local::
 ifneq ($(strip $(BUILT_SOURCES)),)
 	-$(Verb) $(RM) -f $(BUILT_SOURCES)
 endif






More information about the llvm-commits mailing list