b0045dc8ec840c911e0f9399938bea9336401d83
[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 ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore)  # Normal build (not "Apple-style").
29
30 ifeq ($(BUILD_DIRS_ONLY),1)
31   DIRS := lib/System lib/Support utils
32   OPTIONAL_DIRS :=
33 else
34   DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
35           tools runtime docs unittests
36   OPTIONAL_DIRS := examples projects bindings
37 endif
38
39 EXTRA_DIST := test unittests llvm.spec include win32 Xcode
40
41 include $(LEVEL)/Makefile.config
42
43 # llvm-gcc4 doesn't need runtime libs.  llvm-gcc4 is the only supported one.
44 # FIXME: Remove runtime entirely once we have an understanding of where
45 # libprofile etc should go.
46 #ifeq ($(LLVMGCC_MAJVERS),4)
47 #  DIRS := $(filter-out runtime, $(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/tools/clang-cc \
67         tools/clang/lib/Headers tools/clang/docs
68   OPTIONAL_DIRS :=
69   NO_INSTALL = 1
70 endif
71
72 ifeq ($(MAKECMDGOALS),clang-only)
73   DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
74   OPTIONAL_DIRS :=
75 endif
76
77 ifeq ($(MAKECMDGOALS),unittests)
78   DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
79   OPTIONAL_DIRS :=
80 endif
81
82 # Use NO_INSTALL define of the Makefile of each directory for deciding
83 # if the directory is installed or not
84 ifeq ($(MAKECMDGOALS),install)
85   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
86 endif
87
88 # If we're cross-compiling, build the build-hosted tools first
89 ifeq ($(LLVM_CROSS_COMPILING),1)
90 all:: cross-compile-build-tools
91
92 clean::
93         $(Verb) rm -rf BuildTools
94
95 cross-compile-build-tools:
96         $(Verb) if [ ! -f BuildTools/Makefile ]; then \
97           $(MKDIR) BuildTools; \
98           cd BuildTools ; \
99           $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
100                 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
101           cd .. ; \
102         fi; \
103         ($(MAKE) -C BuildTools \
104           BUILD_DIRS_ONLY=1 \
105           UNIVERSAL= \
106           ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
107           ENABLE_PROFILING=$(ENABLE_PROFILING) \
108           ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
109           DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
110           ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
111         ) || exit 1;
112 endif
113
114 # Include the main makefile machinery.
115 include $(LLVM_SRC_ROOT)/Makefile.rules
116
117 # Specify options to pass to configure script when we're
118 # running the dist-check target
119 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
120
121 .PHONY: debug-opt-prof
122 debug-opt-prof:
123         $(Echo) Building Debug Version
124         $(Verb) $(MAKE)
125         $(Echo)
126         $(Echo) Building Optimized Version
127         $(Echo)
128         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
129         $(Echo)
130         $(Echo) Building Profiling Version
131         $(Echo)
132         $(Verb) $(MAKE) ENABLE_PROFILING=1
133
134 dist-hook::
135         $(Echo) Eliminating files constructed by configure
136         $(Verb) $(RM) -f \
137           $(TopDistDir)/include/llvm/Config/config.h  \
138           $(TopDistDir)/include/llvm/System/DataTypes.h
139
140 clang-only: all
141 tools-only: all
142 libs-only: all
143 install-clang: install
144 install-libs: install
145
146 #------------------------------------------------------------------------
147 # Make sure the generated headers are up-to-date. This must be kept in
148 # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
149 #------------------------------------------------------------------------
150 FilesToConfig := \
151   include/llvm/Config/config.h \
152   include/llvm/Config/Targets.def \
153         include/llvm/Config/AsmPrinters.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."