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

projects to compile properly.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23007 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2005-08-24 10:55:07 +00:00
parent 755bcf086d
commit 0ced4fbcd7

View File

@ -84,7 +84,7 @@ ifneq ($(MakefileConfigIn),)
PreConditions += $(MakefileConfig) PreConditions += $(MakefileConfig)
endif endif
FilesToConfigPATH := $(addprefix $(PROJ_OBJ_ROOT)/,$(FilesToConfig)) FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
PreConditions += $(FilesToConfigPATH) PreConditions += $(FilesToConfigPATH)
preconditions : $(PreConditions) preconditions : $(PreConditions)
@ -145,9 +145,9 @@ $(ConfigStatusScript): $(ConfigureScript)
$(ConfigStatusScript) $(ConfigStatusScript)
.PRECIOUS: $(FilesToConfigPATH) .PRECIOUS: $(FilesToConfigPATH)
$(FilesToConfigPATH) : $(PROJ_OBJ_ROOT)/% : $(PROJ_SRC_ROOT)/%.in $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
$(Echo) Regenerating $* $(Echo) Regenerating $*
$(Verb) cd $(PROJ_OBJ_ROOT) && $(ConfigStatusScript) $* $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# Make sure the configuration makefile is up to date # Make sure the configuration makefile is up to date