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