Makefile (cc3f4b99653c34ae64f8a1fddea370abefef680e) | Makefile (7273339dc40e5e9e1f0c1fb3c72a29c8528f256d) |
---|---|
1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5.if !make(install) | 1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5.if !make(install) |
6.if !defined(EARLY_BUILD) 7.if defined(MK_CLANG_FULL) && ${MK_CLANG_FULL} != "no" | 6.if ${MK_CLANG_FULL} != "no" |
8_libclangstaticanalyzer= \ 9 libclangstaticanalyzercheckers \ 10 libclangstaticanalyzercore \ 11 libclangstaticanalyzerfrontend 12_libclangarcmigrate= \ 13 libclangarcmigrate 14.endif # MK_CLANG_FULL | 7_libclangstaticanalyzer= \ 8 libclangstaticanalyzercheckers \ 9 libclangstaticanalyzercore \ 10 libclangstaticanalyzerfrontend 11_libclangarcmigrate= \ 12 libclangarcmigrate 13.endif # MK_CLANG_FULL |
15.if (defined(MK_CLANG_FULL) && ${MK_CLANG_FULL} != "no") || \ 16 (defined(MK_LLDB) && ${MK_LLDB} != "no") | 14.if ${MK_CLANG_FULL} != "no" || ${MK_LLDB} != "no" |
17_libclangrewriter= \ 18 libclangrewritecore \ 19 libclangrewritefrontend 20.endif # (MK_CLANG_FULL || MK_LLDB) | 15_libclangrewriter= \ 16 libclangrewritecore \ 17 libclangrewritefrontend 18.endif # (MK_CLANG_FULL || MK_LLDB) |
21.endif # !EARLY_BUILD | |
22 23SUBDIR= libclanganalysis \ 24 ${_libclangarcmigrate} \ 25 libclangast \ 26 libclangbasic \ 27 libclangcodegen \ 28 libclangdriver \ 29 libclangedit \ --- 70 unchanged lines hidden (view full) --- 100SUBDIR+=libllvmexecutionengine \ 101 libllvminterpreter \ 102 libllvmjit \ 103 libllvmmcdisassembler \ 104 libllvmmcjit \ 105 libllvmruntimedyld 106.endif # MK_CLANG_EXTRAS | LLDB 107 | 19 20SUBDIR= libclanganalysis \ 21 ${_libclangarcmigrate} \ 22 libclangast \ 23 libclangbasic \ 24 libclangcodegen \ 25 libclangdriver \ 26 libclangedit \ --- 70 unchanged lines hidden (view full) --- 97SUBDIR+=libllvmexecutionengine \ 98 libllvminterpreter \ 99 libllvmjit \ 100 libllvmmcdisassembler \ 101 libllvmmcjit \ 102 libllvmruntimedyld 103.endif # MK_CLANG_EXTRAS | LLDB 104 |
108.if !defined(EARLY_BUILD) && ${MK_LLDB} != "no" | 105.if ${MK_LLDB} != "no" |
109SUBDIR+=liblldb \ 110 \ 111 liblldbAPI \ 112 liblldbBreakpoint \ 113 liblldbCommands \ 114 liblldbCore \ 115 liblldbDataFormatters \ 116 liblldbExpression \ --- 19 unchanged lines hidden (view full) --- 136 liblldbPluginProcessGDBRemote \ 137 liblldbPluginProcessPOSIX \ 138 liblldbPluginProcessUtility \ 139 liblldbPluginSymbolFileDWARF \ 140 liblldbPluginSymbolFileSymtab \ 141 liblldbPluginSymbolVendorELF \ 142 liblldbPluginUnwindAssemblyInstEmulation \ 143 liblldbPluginUnwindAssemblyX86 | 106SUBDIR+=liblldb \ 107 \ 108 liblldbAPI \ 109 liblldbBreakpoint \ 110 liblldbCommands \ 111 liblldbCore \ 112 liblldbDataFormatters \ 113 liblldbExpression \ --- 19 unchanged lines hidden (view full) --- 133 liblldbPluginProcessGDBRemote \ 134 liblldbPluginProcessPOSIX \ 135 liblldbPluginProcessUtility \ 136 liblldbPluginSymbolFileDWARF \ 137 liblldbPluginSymbolFileSymtab \ 138 liblldbPluginSymbolVendorELF \ 139 liblldbPluginUnwindAssemblyInstEmulation \ 140 liblldbPluginUnwindAssemblyX86 |
144.endif # !EARLY_BUILD && MK_LLDB | 141.endif # MK_LLDB |
145 146.endif # !make(install) 147 148SUBDIR+= include 149 150SUBDIR_PARALLEL= 151 152.include <bsd.subdir.mk> | 142 143.endif # !make(install) 144 145SUBDIR+= include 146 147SUBDIR_PARALLEL= 148 149.include <bsd.subdir.mk> |