Remove unneeded check, and correct style.
[oota-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 #===------------------------------------------------------------------------===#
9
10 LEVEL := .
11
12 # Top-Level LLVM Build Stages:
13 #   1. Build lib/System and lib/Support, which are used by utils (tblgen).
14 #   2. Build utils, which is used by VMCore.
15 #   3. Build VMCore, 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, runtime, docs.
19 #
20 # When cross-compiling, there are some things (tablegen) that need to
21 # be build for the build system first.
22
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").
28
29 ifeq ($(BUILD_DIRS_ONLY),1)
30   DIRS := lib/System lib/Support utils
31   OPTIONAL_DIRS :=
32 else
33   DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-shlib \
34           tools/llvm-config tools runtime docs unittests
35   OPTIONAL_DIRS := projects bindings
36 endif
37
38 ifeq ($(BUILD_EXAMPLES),1)
39   OPTIONAL_DIRS += examples
40 endif
41
42 EXTRA_DIST := test unittests llvm.spec include win32 Xcode
43
44 include $(LEVEL)/Makefile.config
45
46 ifneq ($(ENABLE_SHARED),1)
47   DIRS := $(filter-out tools/llvm-shlib, $(DIRS))
48 endif
49
50 ifeq ($(MAKECMDGOALS),libs-only)
51   DIRS := $(filter-out tools runtime docs, $(DIRS))
52   OPTIONAL_DIRS :=
53 endif
54
55 ifeq ($(MAKECMDGOALS),install-libs)
56   DIRS := $(filter-out tools runtime docs, $(DIRS))
57   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
58 endif
59
60 ifeq ($(MAKECMDGOALS),tools-only)
61   DIRS := $(filter-out runtime docs, $(DIRS))
62   OPTIONAL_DIRS :=
63 endif
64
65 ifeq ($(MAKECMDGOALS),install-clang)
66   DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
67           tools/clang/runtime tools/clang/docs
68   OPTIONAL_DIRS :=
69   NO_INSTALL = 1
70 endif
71
72 ifeq ($(MAKECMDGOALS),install-clang-c)
73   DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
74           tools/clang/tools/libclang tools/clang/tools/c-index-test \
75           tools/clang/include/clang-c
76   OPTIONAL_DIRS :=
77   NO_INSTALL = 1
78 endif
79
80 ifeq ($(MAKECMDGOALS),clang-only)
81   DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
82   OPTIONAL_DIRS :=
83 endif
84
85 ifeq ($(MAKECMDGOALS),unittests)
86   DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
87   OPTIONAL_DIRS :=
88 endif
89
90 # Use NO_INSTALL define of the Makefile of each directory for deciding
91 # if the directory is installed or not
92 ifeq ($(MAKECMDGOALS),install)
93   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
94 endif
95
96 # If we're cross-compiling, build the build-hosted tools first
97 ifeq ($(LLVM_CROSS_COMPILING),1)
98 all:: cross-compile-build-tools
99
100 clean::
101         $(Verb) rm -rf BuildTools
102
103 cross-compile-build-tools:
104         $(Verb) if [ ! -f BuildTools/Makefile ]; then \
105           $(MKDIR) BuildTools; \
106           cd BuildTools ; \
107           unset CFLAGS ; \
108           unset CXXFLAGS ; \
109           $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
110                 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
111           cd .. ; \
112         fi; \
113         ($(MAKE) -C BuildTools \
114           BUILD_DIRS_ONLY=1 \
115           UNIVERSAL= \
116           ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
117           ENABLE_PROFILING=$(ENABLE_PROFILING) \
118           ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
119           DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
120           ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
121           CFLAGS= \
122           CXXFLAGS= \
123         ) || exit 1;
124 endif
125
126 # Include the main makefile machinery.
127 include $(LLVM_SRC_ROOT)/Makefile.rules
128
129 # Specify options to pass to configure script when we're
130 # running the dist-check target
131 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
132
133 .PHONY: debug-opt-prof
134 debug-opt-prof:
135         $(Echo) Building Debug Version
136         $(Verb) $(MAKE)
137         $(Echo)
138         $(Echo) Building Optimized Version
139         $(Echo)
140         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
141         $(Echo)
142         $(Echo) Building Profiling Version
143         $(Echo)
144         $(Verb) $(MAKE) ENABLE_PROFILING=1
145
146 dist-hook::
147         $(Echo) Eliminating files constructed by configure
148         $(Verb) $(RM) -f \
149           $(TopDistDir)/include/llvm/Config/config.h  \
150           $(TopDistDir)/include/llvm/System/DataTypes.h
151
152 clang-only: all
153 tools-only: all
154 libs-only: all
155 install-clang: install
156 install-clang-c: install
157 install-libs: install
158
159 #------------------------------------------------------------------------
160 # Make sure the generated headers are up-to-date. This must be kept in
161 # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
162 #------------------------------------------------------------------------
163 FilesToConfig := \
164   include/llvm/Config/config.h \
165   include/llvm/Config/Targets.def \
166   include/llvm/Config/AsmPrinters.def \
167   include/llvm/Config/AsmParsers.def \
168   include/llvm/Config/Disassemblers.def \
169   include/llvm/System/DataTypes.h \
170   tools/llvmc/plugins/Base/Base.td
171 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
172
173 all-local:: $(FilesToConfigPATH)
174 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
175         $(Echo) Regenerating $*
176         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
177 .PRECIOUS: $(FilesToConfigPATH)
178
179 # NOTE: This needs to remain as the last target definition in this file so
180 # that it gets executed last.
181 ifneq ($(BUILD_DIRS_ONLY),1)
182 all::
183         $(Echo) '*****' Completed $(BuildMode) Build
184 ifneq ($(ENABLE_OPTIMIZED),1)
185         $(Echo) '*****' Note: Debug build can be 10 times slower than an
186         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
187         $(Echo) '*****' make an optimized build. Alternatively you can
188         $(Echo) '*****' configure with --enable-optimized.
189 endif
190 endif
191
192 check-llvm2cpp:
193         $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
194
195 check-one:
196         $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
197
198 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
199         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
200
201 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
202         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
203
204 show-footprint:
205         $(Verb) du -sk $(LibDir)
206         $(Verb) du -sk $(ToolDir)
207         $(Verb) du -sk $(ExmplDir)
208         $(Verb) du -sk $(ObjDir)
209
210 build-for-llvm-top:
211         $(Verb) if test ! -f ./config.status ; then \
212           ./configure --prefix="$(LLVM_TOP)/install" \
213             --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
214         fi
215         $(Verb) $(MAKE) tools-only
216
217 SVN = svn
218 SVN-UPDATE-OPTIONS =
219 AWK = awk
220 SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}'   \
221                 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
222                 | $(AWK) '/Path:\ / {print $$2}'
223
224 update:
225         $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
226         @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
227
228 happiness: update all check-all
229
230 .PHONY: srpm rpm update happiness
231
232 # declare all targets at this level to be serial:
233
234 .NOTPARALLEL:
235
236 else # Building "Apple-style."
237 # In an Apple-style build, once configuration is done, lines marked
238 # "Apple-style" are removed with sed!  Please don't remove these!
239 # Look for the string "Apple-style" in utils/buildit/build_llvm.
240 include $(shell find . -name GNUmakefile) # Building "Apple-style."
241 endif # Building "Apple-style."