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