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