diff options
author | John Criswell <criswell@uiuc.edu> | 2003-09-06 14:50:22 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-09-06 14:50:22 +0000 |
commit | 69077e28d75d8c434ec9e2fa789db4c1125c7f30 (patch) | |
tree | 5e4f7cdbe13374671cd8903e1d212f29bd768739 /lib/Target/X86/Makefile | |
parent | 2d53308447bdb3da94547109bc1403e7a3c815c4 (diff) | |
download | external_llvm-69077e28d75d8c434ec9e2fa789db4c1125c7f30.zip external_llvm-69077e28d75d8c434ec9e2fa789db4c1125c7f30.tar.gz external_llvm-69077e28d75d8c434ec9e2fa789db4c1125c7f30.tar.bz2 |
Checkin of autoconf-style object root.
Adjusted Makefile to work with new autoconf-style object root.
Specifically, use the new -I option of tblgen to find include files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8379 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/Makefile')
-rw-r--r-- | lib/Target/X86/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Target/X86/Makefile b/lib/Target/X86/Makefile index a6bd300..84d2e6d 100644 --- a/lib/Target/X86/Makefile +++ b/lib/Target/X86/Makefile @@ -8,22 +8,22 @@ $(SourceDepend): X86GenRegisterInfo.h.inc X86GenRegisterNames.inc \ X86GenInstrInfo.inc X86GenInstrSelector.inc X86GenRegisterNames.inc:: X86.td X86RegisterInfo.td ../Target.td $(TBLGEN) - $(TBLGEN) $< -gen-register-enums -o $@ + $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-enums -o $@ X86GenRegisterInfo.h.inc:: X86.td X86RegisterInfo.td ../Target.td $(TBLGEN) - $(TBLGEN) $< -gen-register-desc-header -o $@ + $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-desc-header -o $@ X86GenRegisterInfo.inc:: X86.td X86RegisterInfo.td ../Target.td $(TBLGEN) - $(TBLGEN) $< -gen-register-desc -o $@ + $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-desc -o $@ X86GenInstrNames.inc:: X86.td X86InstrInfo.td ../Target.td $(TBLGEN) - $(TBLGEN) $< -gen-instr-enums -o $@ + $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-enums -o $@ X86GenInstrInfo.inc:: X86.td X86InstrInfo.td ../Target.td $(TBLGEN) - $(TBLGEN) $< -gen-instr-desc -o $@ + $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-desc -o $@ X86GenInstrSelector.inc:: X86.td X86InstrInfo.td ../Target.td $(TBLGEN) - $(TBLGEN) $< -gen-instr-selector -o $@ + $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-selector -o $@ clean:: $(VERB) rm -f *.inc |