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