diff options
Diffstat (limited to 'lib/clang/Makefile')
-rw-r--r-- | lib/clang/Makefile | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/lib/clang/Makefile b/lib/clang/Makefile new file mode 100644 index 0000000..d6e9457 --- /dev/null +++ b/lib/clang/Makefile @@ -0,0 +1,88 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +.if !make(install) +SUBDIR= libclanganalysis \ + libclangarcmigrate \ + libclangast \ + libclangbasic \ + libclangcodegen \ + libclangdriver \ + libclangedit \ + libclangfrontend \ + libclangfrontendtool \ + libclangindex \ + libclanglex \ + libclangparse \ + libclangrewrite \ + libclangsema \ + libclangserialization \ + libclangstaticanalyzercheckers \ + libclangstaticanalyzercore \ + libclangstaticanalyzerfrontend \ + \ + libllvmanalysis \ + libllvmarchive \ + libllvmasmparser \ + libllvmasmprinter \ + libllvmbitreader \ + libllvmbitwriter \ + libllvmcodegen \ + libllvmcore \ + libllvminstcombine \ + libllvminstrumentation \ + libllvmipa \ + libllvmipo \ + libllvmlinker \ + libllvmmc \ + libllvmmcparser \ + libllvmobject \ + libllvmscalaropts \ + libllvmselectiondag \ + libllvmsupport \ + libllvmtablegen \ + libllvmtarget \ + libllvmtransformutils \ + libllvmvectorize \ + \ + libllvmarmasmparser \ + libllvmarmcodegen \ + libllvmarmdesc \ + libllvmarmdisassembler \ + libllvmarminfo \ + libllvmarminstprinter \ + libllvmmipsasmparser \ + libllvmmipscodegen \ + libllvmmipsdesc \ + libllvmmipsinfo \ + libllvmmipsinstprinter \ + libllvmpowerpccodegen \ + libllvmpowerpcdesc \ + libllvmpowerpcinfo \ + libllvmpowerpcinstprinter \ + libllvmx86asmparser \ + libllvmx86codegen \ + libllvmx86desc \ + libllvmx86disassembler \ + libllvmx86info \ + libllvmx86instprinter \ + libllvmx86utils + +.if ${MK_CLANG_EXTRAS} != "no" +SUBDIR+=libllvmarchive \ + libllvmdebuginfo \ + libllvmexecutionengine \ + libllvminterpreter \ + libllvmjit \ + libllvmlinker \ + libllvmmcdisassembler \ + libllvmmcjit \ + libllvmobject \ + libllvmruntimedyld +.endif +.endif + +SUBDIR+= include + +.include <bsd.subdir.mk> |