e237bb3a4f8cee7c53d508d10a93f43b92b1efc6
[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 ($(RC_ProjectName),llvmCore)  # Normal build (not "Apple-style").
28 ifeq ($(BUILD_DIRS_ONLY),1)
29   DIRS := lib/System lib/Support utils
30   OPTIONAL_DIRS :=
31 else
32   DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
33           tools runtime docs unittests
34   OPTIONAL_DIRS := examples projects bindings
35 endif
36
37 EXTRA_DIST := test unittests llvm.spec include win32 Xcode
38
39 include $(LEVEL)/Makefile.config
40
41 # llvm-gcc4 doesn't need runtime libs.  llvm-gcc4 is the only supported one.
42 # FIXME: Remove runtime entirely once we have an understanding of where
43 # libprofile etc should go.
44 #ifeq ($(LLVMGCC_MAJVERS),4)
45 #  DIRS := $(filter-out runtime, $(DIRS))
46 #endif
47
48 ifeq ($(MAKECMDGOALS),libs-only)
49   DIRS := $(filter-out tools runtime docs, $(DIRS))
50   OPTIONAL_DIRS :=
51 endif
52
53 ifeq ($(MAKECMDGOALS),install-libs)
54   DIRS := $(filter-out tools runtime docs, $(DIRS))
55   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
56 endif
57
58 ifeq ($(MAKECMDGOALS),tools-only)
59   DIRS := $(filter-out runtime docs, $(DIRS))
60   OPTIONAL_DIRS :=
61 endif
62
63 ifeq ($(MAKECMDGOALS),install-clang)
64   DIRS := tools/clang/tools/driver tools/clang/tools/clang-cc \
65         tools/clang/lib/Headers tools/clang/docs
66   OPTIONAL_DIRS :=
67   NO_INSTALL = 1
68 endif
69
70 ifeq ($(MAKECMDGOALS),clang-only)
71   DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
72   OPTIONAL_DIRS :=
73 endif
74
75 ifeq ($(MAKECMDGOALS),unittests)
76   DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
77   OPTIONAL_DIRS :=
78 endif
79
80 # Use NO_INSTALL define of the Makefile of each directory for deciding
81 # if the directory is installed or not
82 ifeq ($(MAKECMDGOALS),install)
83   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
84 endif
85
86 # If we're cross-compiling, build the build-hosted tools first
87 ifeq ($(LLVM_CROSS_COMPILING),1)
88 all:: cross-compile-build-tools
89
90 clean::
91         $(Verb) rm -rf BuildTools
92
93 cross-compile-build-tools:
94         $(Verb) if [ ! -f BuildTools/Makefile ]; then \
95           $(MKDIR) BuildTools; \
96           cd BuildTools ; \
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/Support/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/Support/DataTypes.h \
153         tools/llvmc/plugins/Base/Base.td
154 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
155
156 all-local:: $(FilesToConfigPATH)
157 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
158         $(Echo) Regenerating $*
159         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
160 .PRECIOUS: $(FilesToConfigPATH)
161
162 # NOTE: This needs to remain as the last target definition in this file so
163 # that it gets executed last.
164 ifneq ($(BUILD_DIRS_ONLY),1)
165 all::
166         $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
167 ifeq ($(BuildMode),Debug)
168         $(Echo) '*****' Note: Debug build can be 10 times slower than an
169         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
170         $(Echo) '*****' make an optimized build. Alternatively you can
171         $(Echo) '*****' configure with --enable-optimized.
172 endif
173 endif
174
175 check-llvm2cpp:
176         $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
177
178 check-one:
179         $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
180
181 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
182         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
183
184 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
185         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
186
187 show-footprint:
188         $(Verb) du -sk $(LibDir)
189         $(Verb) du -sk $(ToolDir)
190         $(Verb) du -sk $(ExmplDir)
191         $(Verb) du -sk $(ObjDir)
192
193 build-for-llvm-top:
194         $(Verb) if test ! -f ./config.status ; then \
195           ./configure --prefix="$(LLVM_TOP)/install" \
196             --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
197         fi
198         $(Verb) $(MAKE) tools-only
199
200 SVN = svn
201 SVN-UPDATE-OPTIONS =
202 AWK = awk
203 SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}'   \
204                 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
205                 | $(AWK) '/Path:\ / {print $$2}'
206
207 update:
208         $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
209         @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
210
211 happiness: update all check unittests
212
213 .PHONY: srpm rpm update happiness
214
215 # declare all targets at this level to be serial:
216
217 .NOTPARALLEL:
218
219 else # Building "Apple-style."
220 # In an Apple-style build, once configuration is done, lines marked
221 # "Apple-style" are removed with sed!  Please don't remove these!
222 # Look for the string "Apple-style" in utils/buildit/build_llvm.
223 include $(shell find . -name GNUmakefile) # Building "Apple-style."
224 endif # Building "Apple-style."