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