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