mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
16 lines
546 B
Makefile
16 lines
546 B
Makefile
LEVEL = ../../../../..
|
|
BUILT_SOURCES = Options.inc CC1Options.inc
|
|
|
|
TABLEGEN_INC_FILES_COMMON = 1
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
$(ObjDir)/Options.inc.tmp : Options.td OptParser.td $(TBLGEN) $(ObjDir)/.dir
|
|
$(Echo) "Building Clang Driver Option tables with tblgen"
|
|
$(Verb) $(TableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
|
|
|
|
$(ObjDir)/CC1Options.inc.tmp : CC1Options.td OptParser.td $(TBLGEN) $(ObjDir)/.dir
|
|
$(Echo) "Building Clang CC1 Option tables with tblgen"
|
|
$(Verb) $(TableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
|
|
|
|
|