diff options
-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) |