From: Misha Brukman Date: Fri, 22 Oct 2004 22:18:27 +0000 (+0000) Subject: Pull in Target.td using absolute path from source root instead of relative path; X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8567ccf6d0c3629635e41893fef5ef1660efbd81;p=oota-llvm.git Pull in Target.td using absolute path from source root instead of relative path; this allows us to have sub-targets whose depth in the tree is not the same as it is for the standard X86/PowerPC/Sparc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17170 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 8c24bbba9b3..01a99418c32 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -575,7 +575,7 @@ $(OBJDIR)/%.bc: %.ll $(OBJDIR)/.dir $(LLVMAS) ifdef TARGET -TDFILES := $(strip $(wildcard $(BUILD_SRC_DIR)/*.td) $(BUILD_SRC_DIR)/../Target.td) +TDFILES := $(strip $(wildcard $(BUILD_SRC_DIR)/*.td) $(BUILD_SRC_ROOT)/lib/Target/Target.td) $(BUILT_SOURCES): $(TDFILES)