blob: 58a5fe5e1833fe732055baca8fae2db89a276060 [file] [log] [blame]
Misha Brukman6d5ab862004-04-24 00:10:56 +00001#===- ./Makefile -------------------------------------------*- Makefile -*--===#
John Criswelle488e932003-10-20 22:26:57 +00002#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner57360d12007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
John Criswelle488e932003-10-20 22:26:57 +00007#
Misha Brukman6d5ab862004-04-24 00:10:56 +00008#===------------------------------------------------------------------------===#
Chris Lattner22033b22006-06-02 22:41:18 +00009
Chris Lattner5720be42006-07-26 19:10:34 +000010LEVEL := .
Chris Lattner87b51012006-09-04 04:27:07 +000011
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.
Reid Spencer8b2e1412006-11-17 03:32:33 +000018# 6. Build tools, runtime, docs.
Chris Lattner87b51012006-09-04 04:27:07 +000019#
20DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
Reid Spencer8b2e1412006-11-17 03:32:33 +000021 tools runtime docs
David Greenedf93e572007-07-11 23:44:08 +000022
Gordon Henriksen8ef426b2007-09-18 12:49:39 +000023OPTIONAL_DIRS := examples projects bindings
Chris Lattner5720be42006-07-26 19:10:34 +000024EXTRA_DIST := test llvm.spec include win32 Xcode
Chris Lattner00950542001-06-06 20:29:01 +000025
Reid Spencer06a801a2006-04-08 02:14:37 +000026include $(LEVEL)/Makefile.config
Reid Spencer93bc3cd2006-04-06 22:15:51 +000027
Jim Grosbach673612e2008-10-02 22:56:44 +000028# When cross-compiling, there are some things (tablegen) that need to
29# be build for the build system.
30ifeq ($(LLVM_CROSS_COMPILING),1)
31 BUILD_TARGET_DIRS := lib/System lib/Support utils
32endif
33
Chris Lattnerc6b66eb2007-03-29 18:14:00 +000034# llvm-gcc4 doesn't need runtime libs. llvm-gcc4 is the only supported one.
35# FIXME: Remove runtime entirely once we have an understanding of where
36# libprofile etc should go.
37#ifeq ($(LLVMGCC_MAJVERS),4)
Reid Spencer8b2e1412006-11-17 03:32:33 +000038 DIRS := $(filter-out runtime, $(DIRS))
Chris Lattnerc6b66eb2007-03-29 18:14:00 +000039#endif
Reid Spencer8b2e1412006-11-17 03:32:33 +000040
Chris Lattner5720be42006-07-26 19:10:34 +000041ifeq ($(MAKECMDGOALS),libs-only)
Reid Spencer8b2e1412006-11-17 03:32:33 +000042 DIRS := $(filter-out tools runtime docs, $(DIRS))
Chris Lattner22033b22006-06-02 22:41:18 +000043 OPTIONAL_DIRS :=
44endif
45
Nate Begeman544f83d2007-12-13 02:17:17 +000046ifeq ($(MAKECMDGOALS),install-libs)
47 DIRS := $(filter-out tools runtime docs, $(DIRS))
48 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
49endif
50
Chris Lattner5720be42006-07-26 19:10:34 +000051ifeq ($(MAKECMDGOALS),tools-only)
Reid Spencer8b2e1412006-11-17 03:32:33 +000052 DIRS := $(filter-out runtime docs, $(DIRS))
Chris Lattner5720be42006-07-26 19:10:34 +000053 OPTIONAL_DIRS :=
54endif
Chris Lattner22033b22006-06-02 22:41:18 +000055
Chris Lattner122c0552007-02-21 06:23:20 +000056# Don't install utils, examples, or projects they are only used to
57# build LLVM.
58ifeq ($(MAKECMDGOALS),install)
59 DIRS := $(filter-out utils, $(DIRS))
Gordon Henriksen8ef426b2007-09-18 12:49:39 +000060 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
Chris Lattner122c0552007-02-21 06:23:20 +000061endif
62
Chris Lattner22033b22006-06-02 22:41:18 +000063# Include the main makefile machinery.
Reid Spencer06a801a2006-04-08 02:14:37 +000064include $(LLVM_SRC_ROOT)/Makefile.rules
65
Reid Spencer45eeed92005-05-24 02:33:20 +000066# Specify options to pass to configure script when we're
67# running the dist-check target
68DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
69
Reid Spencerdf561f42004-11-25 09:08:54 +000070.PHONY: debug-opt-prof
71debug-opt-prof:
72 $(Echo) Building Debug Version
73 $(Verb) $(MAKE)
74 $(Echo)
75 $(Echo) Building Optimized Version
76 $(Echo)
77 $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
78 $(Echo)
79 $(Echo) Building Profiling Version
80 $(Echo)
81 $(Verb) $(MAKE) ENABLE_PROFILING=1
82
Reid Spencer151f8ba2004-10-25 08:27:37 +000083dist-hook::
Reid Spencercc2d1e22004-10-30 09:19:36 +000084 $(Echo) Eliminating files constructed by configure
85 $(Verb) $(RM) -f \
Anton Korobeynikov43d1fd42008-05-29 17:41:17 +000086 $(TopDistDir)/include/llvm/ADT/hash_map.h \
87 $(TopDistDir)/include/llvm/ADT/hash_set.h \
88 $(TopDistDir)/include/llvm/ADT/iterator.h \
Reid Spencer90c29492004-10-26 07:05:09 +000089 $(TopDistDir)/include/llvm/Config/config.h \
90 $(TopDistDir)/include/llvm/Support/DataTypes.h \
91 $(TopDistDir)/include/llvm/Support/ThreadSupport.h
Reid Spencer151f8ba2004-10-25 08:27:37 +000092
Chris Lattner9cf662b2004-02-03 22:56:40 +000093tools-only: all
Reid Spencer8b1f7672005-05-25 21:03:17 +000094libs-only: all
Nate Begeman544f83d2007-12-13 02:17:17 +000095install-libs: install
Reid Spencerca739c62005-08-25 04:59:49 +000096
97#------------------------------------------------------------------------
98# Make sure the generated headers are up-to-date. This must be kept in
99# sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
100#------------------------------------------------------------------------
101FilesToConfig := \
102 include/llvm/Config/config.h \
103 include/llvm/Support/DataTypes.h \
Anton Korobeynikov43d1fd42008-05-29 17:41:17 +0000104 include/llvm/ADT/hash_map.h \
105 include/llvm/ADT/hash_set.h \
106 include/llvm/ADT/iterator.h
Reid Spencerca739c62005-08-25 04:59:49 +0000107FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
108
109all-local:: $(FilesToConfigPATH)
110$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
111 $(Echo) Regenerating $*
112 $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
113.PRECIOUS: $(FilesToConfigPATH)
Reid Spencere22f3c02006-04-07 15:58:18 +0000114
Chris Lattner38ab6d82006-04-07 16:21:59 +0000115# NOTE: This needs to remain as the last target definition in this file so
116# that it gets executed last.
Reid Spencere22f3c02006-04-07 15:58:18 +0000117all::
118 $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
119ifeq ($(BuildMode),Debug)
120 $(Echo) '*****' Note: Debug build can be 10 times slower than an
121 $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
Gabor Greif2ae19552008-02-28 11:48:14 +0000122 $(Echo) '*****' make an optimized build. Alternatively you can
123 $(Echo) '*****' configure with --enable-optimized.
Reid Spencere22f3c02006-04-07 15:58:18 +0000124endif
Chris Lattner38ab6d82006-04-07 16:21:59 +0000125
Reid Spencer5b30ee12006-06-01 07:27:53 +0000126check-llvm2cpp:
Reid Spencer42f98e52007-04-15 06:22:48 +0000127 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
Chris Lattner5720be42006-07-26 19:10:34 +0000128
Reid Spencer9df55612007-04-15 06:18:50 +0000129check-one:
Reid Spencer42f98e52007-04-15 06:22:48 +0000130 $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
Reid Spencer9df55612007-04-15 06:18:50 +0000131
Reid Spencerf7c75a62006-08-16 00:43:50 +0000132srpm: $(LLVM_OBJ_ROOT)/llvm.spec
133 rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
134
135rpm: $(LLVM_OBJ_ROOT)/llvm.spec
136 rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
137
Reid Spencer1e46ae42007-02-05 23:18:58 +0000138show-footprint:
139 $(Verb) du -sk $(LibDir)
140 $(Verb) du -sk $(ToolDir)
141 $(Verb) du -sk $(ExmplDir)
142 $(Verb) du -sk $(ObjDir)
143
Reid Spencer51cf6422007-07-08 03:50:22 +0000144build-for-llvm-top:
145 $(Verb) if test ! -f ./config.status ; then \
146 ./configure --prefix="$(LLVM_TOP)/install" \
147 --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
148 fi
149 $(Verb) $(MAKE) tools-only
150
Gabor Greif1d7ca712008-02-28 13:06:50 +0000151SVN = svn
Gabor Greif9fa42262008-02-28 14:58:14 +0000152SVN-UPDATE-OPTIONS =
Gabor Greif1d7ca712008-02-28 13:06:50 +0000153AWK = awk
Gabor Greifa4a03232008-02-28 18:46:56 +0000154SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
155 | LANG=C xargs $(SVN) info 2>/dev/null \
156 | $(AWK) '/Path:\ / {print $$2}'
Gabor Greif1d7ca712008-02-28 13:06:50 +0000157
158update:
Gabor Greif8e0c20b2008-03-21 22:17:07 +0000159 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
160 @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
Gabor Greif1d7ca712008-02-28 13:06:50 +0000161
162happiness: update all check
163
164.PHONY: srpm rpm update happiness
Reid Spencer51cf6422007-07-08 03:50:22 +0000165
Gabor Greif2ae19552008-02-28 11:48:14 +0000166# declare all targets at this level to be serial:
167
168.NOTPARALLEL:
169