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

Reid Spencer reid at x10sys.com
Wed Aug 24 03:55:19 PDT 2005



Changes in directory llvm:

Makefile.rules updated: 1.320 -> 1.321
---
Log message:

Whoops, don't use PROJ variables, these are all LLVM headers. This allows
projects to compile properly.


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

 Makefile.rules |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.320 llvm/Makefile.rules:1.321
--- llvm/Makefile.rules:1.320	Wed Aug 24 05:43:10 2005
+++ llvm/Makefile.rules	Wed Aug 24 05:55:07 2005
@@ -84,7 +84,7 @@
 PreConditions      += $(MakefileConfig)
 endif
 
-FilesToConfigPATH  := $(addprefix $(PROJ_OBJ_ROOT)/,$(FilesToConfig))
+FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
 PreConditions      += $(FilesToConfigPATH)
 
 preconditions : $(PreConditions)
@@ -145,9 +145,9 @@
 	  $(ConfigStatusScript)
 
 .PRECIOUS: $(FilesToConfigPATH)
-$(FilesToConfigPATH) : $(PROJ_OBJ_ROOT)/% : $(PROJ_SRC_ROOT)/%.in 
+$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in 
 	$(Echo) Regenerating $*
-	$(Verb) cd $(PROJ_OBJ_ROOT) && $(ConfigStatusScript) $*
+	$(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
 
 #------------------------------------------------------------------------
 # Make sure the configuration makefile is up to date






More information about the llvm-commits mailing list