diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-27 20:44:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-27 20:44:12 +0000 |
commit | bcc3c194a55ad4f8f7330442b85f15185c6726b2 (patch) | |
tree | 2b718f553d4c3c5750a95b84d16567020dfc2287 | |
parent | 798dc7adb4f473c196c0000728fbaab0eb4fd8f2 (diff) |
target for generating CC info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34683 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.rules b/Makefile.rules index 3b72b183f6..ab5ee88390 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1275,6 +1275,11 @@ $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir $(Echo) "Building $(<F) subtarget information with tblgen" $(Verb) $(TableGen) -gen-subtarget -o $@ $< +$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \ +$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir + $(Echo) "Building $(<F) calling convention information with tblgen" + $(Verb) $(TableGen) -gen-callingconv -o $@ $< + clean-local:: -$(Verb) $(RM) -f $(INCFiles) |