[llvm-commits] CVS: llvm/lib/Target/X86/Makefile

John Criswell criswell at cs.uiuc.edu
Sat Sep 6 09:51:07 PDT 2003


Changes in directory llvm/lib/Target/X86:

Makefile updated: 1.9 -> 1.10

---
Log message:

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.



---
Diffs of the changes:

Index: llvm/lib/Target/X86/Makefile
diff -u llvm/lib/Target/X86/Makefile:1.9 llvm/lib/Target/X86/Makefile:1.10
--- llvm/lib/Target/X86/Makefile:1.9	Thu Aug 21 15:37:16 2003
+++ llvm/lib/Target/X86/Makefile	Sat Sep  6 09:50:22 2003
@@ -8,22 +8,22 @@
                  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





More information about the llvm-commits mailing list