Remove includes of Support/Compiler.h that are no longer needed after the
[llvm.git] / Makefile
blobd2000b48387af043d50255169d2c1a222a1bf6e1
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 ($(RC_ProjectName),llvmCore) # Normal build (not "Apple-style").
28 ifeq ($(BUILD_DIRS_ONLY),1)
29 DIRS := lib/System lib/Support utils
30 OPTIONAL_DIRS :=
31 else
32 DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
33 tools runtime docs unittests
34 OPTIONAL_DIRS := examples projects bindings
35 endif
37 EXTRA_DIST := test unittests llvm.spec include win32 Xcode
39 include $(LEVEL)/Makefile.config
41 # llvm-gcc4 doesn't need runtime libs. llvm-gcc4 is the only supported one.
42 # FIXME: Remove runtime entirely once we have an understanding of where
43 # libprofile etc should go.
44 #ifeq ($(LLVMGCC_MAJVERS),4)
45 # DIRS := $(filter-out runtime, $(DIRS))
46 #endif
48 ifeq ($(MAKECMDGOALS),libs-only)
49 DIRS := $(filter-out tools runtime docs, $(DIRS))
50 OPTIONAL_DIRS :=
51 endif
53 ifeq ($(MAKECMDGOALS),install-libs)
54 DIRS := $(filter-out tools runtime docs, $(DIRS))
55 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
56 endif
58 ifeq ($(MAKECMDGOALS),tools-only)
59 DIRS := $(filter-out runtime docs, $(DIRS))
60 OPTIONAL_DIRS :=
61 endif
63 ifeq ($(MAKECMDGOALS),install-clang)
64 DIRS := tools/clang/tools/driver tools/clang/tools/clang-cc \
65 tools/clang/lib/Headers tools/clang/docs
66 OPTIONAL_DIRS :=
67 NO_INSTALL = 1
68 endif
70 ifeq ($(MAKECMDGOALS),clang-only)
71 DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
72 OPTIONAL_DIRS :=
73 endif
75 ifeq ($(MAKECMDGOALS),unittests)
76 DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
77 OPTIONAL_DIRS :=
78 endif
80 # Use NO_INSTALL define of the Makefile of each directory for deciding
81 # if the directory is installed or not
82 ifeq ($(MAKECMDGOALS),install)
83 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
84 endif
86 # If we're cross-compiling, build the build-hosted tools first
87 ifeq ($(LLVM_CROSS_COMPILING),1)
88 all:: cross-compile-build-tools
90 clean::
91 $(Verb) rm -rf BuildTools
93 cross-compile-build-tools:
94 $(Verb) if [ ! -f BuildTools/Makefile ]; then \
95 $(MKDIR) BuildTools; \
96 cd BuildTools ; \
97 $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
98 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
99 cd .. ; \
100 fi; \
101 ($(MAKE) -C BuildTools \
102 BUILD_DIRS_ONLY=1 \
103 UNIVERSAL= \
104 ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
105 ENABLE_PROFILING=$(ENABLE_PROFILING) \
106 ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
107 DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
108 ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
109 ) || exit 1;
110 endif
112 # Include the main makefile machinery.
113 include $(LLVM_SRC_ROOT)/Makefile.rules
115 # Specify options to pass to configure script when we're
116 # running the dist-check target
117 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
119 .PHONY: debug-opt-prof
120 debug-opt-prof:
121 $(Echo) Building Debug Version
122 $(Verb) $(MAKE)
123 $(Echo)
124 $(Echo) Building Optimized Version
125 $(Echo)
126 $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
127 $(Echo)
128 $(Echo) Building Profiling Version
129 $(Echo)
130 $(Verb) $(MAKE) ENABLE_PROFILING=1
132 dist-hook::
133 $(Echo) Eliminating files constructed by configure
134 $(Verb) $(RM) -f \
135 $(TopDistDir)/include/llvm/Config/config.h \
136 $(TopDistDir)/include/llvm/Support/DataTypes.h \
137 $(TopDistDir)/include/llvm/Support/ThreadSupport.h
139 clang-only: all
140 tools-only: all
141 libs-only: all
142 install-clang: install
143 install-libs: install
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/Support/DataTypes.h \
154 tools/llvmc/plugins/Base/Base.td
155 FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
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)
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
176 check-llvm2cpp:
177 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
179 check-one:
180 $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
182 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
183 rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
185 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
186 rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
188 show-footprint:
189 $(Verb) du -sk $(LibDir)
190 $(Verb) du -sk $(ToolDir)
191 $(Verb) du -sk $(ExmplDir)
192 $(Verb) du -sk $(ObjDir)
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" ; \
199 $(Verb) $(MAKE) tools-only
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}'
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
212 happiness: update all check unittests
214 .PHONY: srpm rpm update happiness
216 # declare all targets at this level to be serial:
218 .NOTPARALLEL:
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."