зеркало из https://github.com/microsoft/clang-1.git
15 строки
596 B
Makefile
15 строки
596 B
Makefile
CLANG_LEVEL := ../../..
|
|
BUILT_SOURCES = Options.inc CC1AsOptions.inc
|
|
|
|
TABLEGEN_INC_FILES_COMMON = 1
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|
|
|
|
$(ObjDir)/Options.inc.tmp : Options.td CC1Options.td OptParser.td $(CLANG_TBLGEN) $(ObjDir)/.dir
|
|
$(Echo) "Building Clang Driver Option tables with tblgen"
|
|
$(Verb) $(ClangTableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
|
|
|
|
$(ObjDir)/CC1AsOptions.inc.tmp : CC1AsOptions.td OptParser.td $(CLANG_TBLGEN) $(ObjDir)/.dir
|
|
$(Echo) "Building Clang CC1 Assembler Option tables with tblgen"
|
|
$(Verb) $(ClangTableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
|