]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - Makefile
typo
[opencl/llvm.git] / Makefile
1 #===- ./Makefile -------------------------------------------*- Makefile -*--===#
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 #===------------------------------------------------------------------------===#
10 LEVEL := .
12 # Top-Level LLVM Build Stages:
13 #   1. Build lib/Support and lib/TableGen, which are used by utils (tblgen).
14 #   2. Build utils, which is used by IR.
15 #   3. Build IR, which builds the Intrinsics.inc file used by libs.
16 #   4. Build libs, which are needed by llvm-config.
17 #   5. Build llvm-config, which determines inter-lib dependencies for tools.
18 #   6. Build tools and docs.
19 #
20 # When cross-compiling, there are some things (tablegen) that need to
21 # be build for the build system first.
23 # If "RC_ProjectName" exists in the environment, and its value is
24 # "llvmCore", then this is an "Apple-style" build; search for
25 # "Apple-style" in the comments for more info.  Anything else is a
26 # normal build.
27 ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore)  # Normal build (not "Apple-style").
29 ifeq ($(BUILD_DIRS_ONLY),1)
30   DIRS := lib/Support lib/TableGen utils tools/llvm-config
31   OPTIONAL_DIRS := tools/clang/utils/TableGen
32 else
33   DIRS := lib/Support lib/TableGen utils lib/IR lib tools/llvm-shlib \
34           tools/llvm-config tools docs unittests
35   OPTIONAL_DIRS := projects bindings
36 endif
38 ifeq ($(BUILD_EXAMPLES),1)
39   OPTIONAL_DIRS += examples
40 endif
42 EXTRA_DIST := test unittests llvm.spec include win32 Xcode
44 include $(LEVEL)/Makefile.config
46 ifneq ($(ENABLE_SHARED),1)
47   DIRS := $(filter-out tools/llvm-shlib, $(DIRS))
48 endif
50 ifneq ($(ENABLE_DOCS),1)
51   DIRS := $(filter-out docs, $(DIRS))
52 endif
54 ifeq ($(MAKECMDGOALS),libs-only)
55   DIRS := $(filter-out tools docs, $(DIRS))
56   OPTIONAL_DIRS :=
57 endif
59 ifeq ($(MAKECMDGOALS),install-libs)
60   DIRS := $(filter-out tools docs, $(DIRS))
61   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
62 endif
64 ifeq ($(MAKECMDGOALS),tools-only)
65   DIRS := $(filter-out docs, $(DIRS))
66   OPTIONAL_DIRS :=
67 endif
69 ifeq ($(MAKECMDGOALS),install-clang)
70   DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
71           tools/clang/tools/libclang \
72           tools/clang/tools/c-index-test \
73           tools/clang/include/clang-c \
74           tools/clang/runtime tools/clang/docs \
75           tools/lto
76   OPTIONAL_DIRS :=
77   NO_INSTALL = 1
78 endif
80 ifeq ($(MAKECMDGOALS),clang-only)
81   DIRS := $(filter-out tools docs unittests, $(DIRS)) \
82           tools/clang tools/lto
83   OPTIONAL_DIRS :=
84 endif
86 ifeq ($(MAKECMDGOALS),unittests)
87   DIRS := $(filter-out tools docs, $(DIRS)) utils unittests
88   OPTIONAL_DIRS :=
89 endif
91 # Use NO_INSTALL define of the Makefile of each directory for deciding
92 # if the directory is installed or not
93 ifeq ($(MAKECMDGOALS),install)
94   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
95 endif
97 # Don't build unittests when ONLY_TOOLS is set.
98 ifneq ($(ONLY_TOOLS),)
99   DIRS := $(filter-out unittests, $(DIRS))
100 endif
102 # If we're cross-compiling, build the build-hosted tools first
103 ifeq ($(LLVM_CROSS_COMPILING),1)
104 all:: cross-compile-build-tools
106 clean::
107         $(Verb) rm -rf BuildTools
109 cross-compile-build-tools:
110         $(Verb) if [ ! -f BuildTools/Makefile ]; then \
111           $(MKDIR) BuildTools; \
112           cd BuildTools ; \
113           unset CFLAGS ; \
114           unset CXXFLAGS ; \
115           unset SDKROOT ; \
116           unset UNIVERSAL_SDK_PATH ; \
117           configure_opts= ; \
118           if test "$(ENABLE_LIBCPP)" -ne 0 ; then \
119             configure_opts="$$configure_opts --enable-libcpp"; \
120           fi; \
121           $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
122                 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE) \
123                 --disable-polly $$configure_opts; \
124           cd .. ; \
125         fi; \
126         ($(MAKE) -C BuildTools \
127           BUILD_DIRS_ONLY=1 \
128           UNIVERSAL= \
129           UNIVERSAL_SDK_PATH= \
130           SDKROOT= \
131           TARGET_NATIVE_ARCH="$(TARGET_NATIVE_ARCH)" \
132           TARGETS_TO_BUILD="$(TARGETS_TO_BUILD)" \
133           TARGET_LIBS="$(LIBS)" \
134           ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
135           ENABLE_PROFILING=$(ENABLE_PROFILING) \
136           ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
137           DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
138           ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
139           ENABLE_LIBCPP=$(ENABLE_LIBCPP) \
140           CFLAGS= \
141           CXXFLAGS= \
142         ) || exit 1;
143 endif
145 # Include the main makefile machinery.
146 include $(LLVM_SRC_ROOT)/Makefile.rules
148 # Specify options to pass to configure script when we're
149 # running the dist-check target
150 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
152 .PHONY: debug-opt-prof
153 debug-opt-prof:
154         $(Echo) Building Debug Version
155         $(Verb) $(MAKE)
156         $(Echo)
157         $(Echo) Building Optimized Version
158         $(Echo)
159         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
160         $(Echo)
161         $(Echo) Building Profiling Version
162         $(Echo)
163         $(Verb) $(MAKE) ENABLE_PROFILING=1
165 dist-hook::
166         $(Echo) Eliminating files constructed by configure
167         $(Verb) $(RM) -f \
168           $(TopDistDir)/include/llvm/Config/config.h  \
169           $(TopDistDir)/include/llvm/Support/DataTypes.h
171 clang-only: all
172 tools-only: all
173 libs-only: all
174 install-clang: install
175 install-libs: install
177 # If SHOW_DIAGNOSTICS is enabled, clear the diagnostics file first.
178 ifeq ($(SHOW_DIAGNOSTICS),1)
179 clean-diagnostics:
180         $(Verb) rm -f $(LLVM_OBJ_ROOT)/$(BuildMode)/diags
181 .PHONY: clean-diagnostics
183 all-local:: clean-diagnostics
184 endif
186 #------------------------------------------------------------------------
187 # Make sure the generated files are up-to-date. This must be kept in
188 # sync with the AC_CONFIG_HEADER and AC_CONFIG_FILE invocations in
189 # autoconf/configure.ac.
190 # Note that Makefile.config is covered by its own separate rule
191 # in Makefile.rules where it can be reused by sub-projects.
192 #------------------------------------------------------------------------
193 FilesToConfig := \
194   bindings/ocaml/llvm/META.llvm \
195   docs/doxygen.cfg \
196   llvm.spec \
197   include/llvm/Config/config.h \
198   include/llvm/Config/llvm-config.h \
199   include/llvm/Config/Targets.def \
200   include/llvm/Config/AsmPrinters.def \
201   include/llvm/Config/AsmParsers.def \
202   include/llvm/Config/Disassemblers.def \
203   include/llvm/Support/DataTypes.h
204 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
206 all-local:: $(FilesToConfigPATH)
207 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
208         $(Echo) Regenerating $*
209         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
210 .PRECIOUS: $(FilesToConfigPATH)
212 # NOTE: This needs to remain as the last target definition in this file so
213 # that it gets executed last.
214 ifneq ($(BUILD_DIRS_ONLY),1)
215 all::
216         $(Echo) '*****' Completed $(BuildMode) Build
217 ifneq ($(ENABLE_OPTIMIZED),1)
218         $(Echo) '*****' Note: Debug build can be 10 times slower than an
219         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
220         $(Echo) '*****' make an optimized build. Alternatively you can
221         $(Echo) '*****' configure with --enable-optimized.
222 ifeq ($(SHOW_DIAGNOSTICS),1)
223         $(Verb) if test -s $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; then \
224           $(LLVM_SRC_ROOT)/utils/clang-parse-diagnostics-file -a \
225             $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; \
226         fi
227 endif
228 endif
229 endif
231 check-llvm2cpp:
232         $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
234 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
235         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
237 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
238         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
240 show-footprint:
241         $(Verb) du -sk $(LibDir)
242         $(Verb) du -sk $(ToolDir)
243         $(Verb) du -sk $(ExmplDir)
244         $(Verb) du -sk $(ObjDir)
246 build-for-llvm-top:
247         $(Verb) if test ! -f ./config.status ; then \
248           ./configure --prefix="$(LLVM_TOP)/install" \
249             --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
250         fi
251         $(Verb) $(MAKE) tools-only
253 SVN = svn
254 SVN-UPDATE-OPTIONS =
255 AWK = awk
257 # Multiline variable defining a recursive function for finding svn repos rooted at
258 # a given path. svnup() requires one argument: the root to search from.
259 define SUB_SVN_DIRS
260 svnup() {
261   dirs=`svn status --no-ignore $$1 | awk '/^(I|\?) / {print $$2}' | LC_ALL=C xargs svn info 2>/dev/null | awk '/^Path:\ / {print $$2}'`;
262   if [ "$$dirs" = "" ]; then
263     return;
264   fi;
265   for f in $$dirs; do
266           echo $$f;
267     svnup $$f;
268   done
270 endef
271 export SUB_SVN_DIRS
273 update:
274         $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
275         @eval $$SUB_SVN_DIRS; $(SVN) status --no-ignore $(LLVM_SRC_ROOT) | svnup $(LLVM_SRC_ROOT) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
277 happiness: update all check-all
279 .PHONY: srpm rpm update happiness
281 # declare all targets at this level to be serial:
283 .NOTPARALLEL:
285 else # Building "Apple-style."
286 # In an Apple-style build, once configuration is done, lines marked
287 # "Apple-style" are removed with sed!  Please don't remove these!
288 # Look for the string "Apple-style" in utils/buildit/build_llvm.
289 include $(shell find . -name GNUmakefile) # Building "Apple-style."
290 endif # Building "Apple-style."