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