1 #===- ./Makefile -------------------------------------------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
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 DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
23 OPTIONAL_DIRS := examples projects
24 EXTRA_DIST := test llvm.spec include win32 Xcode
26 include $(LEVEL)/Makefile.config
28 # llvm-gcc4 doesn't need runtime libs.
29 ifeq ($(LLVMGCC_MAJVERS),4)
30 DIRS := $(filter-out runtime, $(DIRS))
33 ifeq ($(MAKECMDGOALS),libs-only)
34 DIRS := $(filter-out tools runtime docs, $(DIRS))
38 ifeq ($(MAKECMDGOALS),tools-only)
39 DIRS := $(filter-out runtime docs, $(DIRS))
43 # Don't install utils, examples, or projects they are only used to
45 ifeq ($(MAKECMDGOALS),install)
46 DIRS := $(filter-out utils, $(DIRS))
50 # Include the main makefile machinery.
51 include $(LLVM_SRC_ROOT)/Makefile.rules
53 # Specify options to pass to configure script when we're
54 # running the dist-check target
55 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
57 .PHONY: debug-opt-prof
59 $(Echo) Building Debug Version
62 $(Echo) Building Optimized Version
64 $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
66 $(Echo) Building Profiling Version
68 $(Verb) $(MAKE) ENABLE_PROFILING=1
71 $(Echo) Eliminating files constructed by configure
73 $(TopDistDir)/include/llvm/ADT/hash_map \
74 $(TopDistDir)/include/llvm/ADT/hash_set \
75 $(TopDistDir)/include/llvm/ADT/iterator \
76 $(TopDistDir)/include/llvm/Config/config.h \
77 $(TopDistDir)/include/llvm/Support/DataTypes.h \
78 $(TopDistDir)/include/llvm/Support/ThreadSupport.h
83 #------------------------------------------------------------------------
84 # Make sure the generated headers are up-to-date. This must be kept in
85 # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
86 #------------------------------------------------------------------------
88 include/llvm/Config/config.h \
89 include/llvm/Support/DataTypes.h \
90 include/llvm/ADT/hash_map \
91 include/llvm/ADT/hash_set \
92 include/llvm/ADT/iterator
93 FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
95 all-local:: $(FilesToConfigPATH)
96 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
97 $(Echo) Regenerating $*
98 $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
99 .PRECIOUS: $(FilesToConfigPATH)
101 # NOTE: This needs to remain as the last target definition in this file so
102 # that it gets executed last.
104 $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
105 ifeq ($(BuildMode),Debug)
106 $(Echo) '*****' Note: Debug build can be 10 times slower than an
107 $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
108 $(Echo) '*****' make an optimized build.
112 $(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
114 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
115 rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
117 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
118 rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec