[llvm-commits] CVS: llvm/Makefile.rules
Vladimir Prus
ghost at cs.msu.su
Mon May 15 23:39:48 PDT 2006
Changes in directory llvm:
Makefile.rules updated: 1.367 -> 1.368
---
Log message:
Replace "../whatever.td" with "whatever.td", so that out-of-tree backends
can just add lib/Target to TableGen includes.
---
Diffs of the changes: (+2 -1)
Makefile.rules | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.367 llvm/Makefile.rules:1.368
--- llvm/Makefile.rules:1.367 Tue May 16 01:25:14 2006
+++ llvm/Makefile.rules Tue May 16 01:39:36 2006
@@ -404,7 +404,8 @@
ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
ScriptInstall = $(INSTALL) -m 0755
DataInstall = $(INSTALL) -m 0644
-TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include
+TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
+ -I $(PROJ_SRC_ROOT)/lib/Target
Archive = $(AR) $(AR.Flags)
LArchive = $(LLVMToolDir)/llvm-ar rcsf
ifdef RANLIB
More information about the llvm-commits
mailing list