In LLVM 2.0 we won't use the runtime libraries as llvm-gcc3 support will
[oota-llvm.git] / Makefile
1 #===- ./Makefile -------------------------------------------*- Makefile -*--===#
2
3 #                     The LLVM Compiler Infrastructure
4 #
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.
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, docs.
19 #
20 DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
21         tools docs
22         
23 OPTIONAL_DIRS := examples projects
24 EXTRA_DIST := test llvm.spec include win32 Xcode
25
26 include $(LEVEL)/Makefile.config 
27
28 ifeq ($(MAKECMDGOALS),libs-only)
29   DIRS := $(filter-out tools docs, $(DIRS))
30   OPTIONAL_DIRS :=
31 endif
32
33 ifeq ($(MAKECMDGOALS),tools-only)
34   DIRS := $(filter-out docs, $(DIRS))
35   OPTIONAL_DIRS :=
36 endif
37
38 # Don't install utils, examples, or projects they are only used to 
39 # build LLVM.
40 ifeq ($(MAKECMDGOALS),install)
41   DIRS := $(filter-out utils, $(DIRS))
42   OPTIONAL_DIRS :=
43 endif
44
45 # Include the main makefile machinery.
46 include $(LLVM_SRC_ROOT)/Makefile.rules
47
48 # Specify options to pass to configure script when we're
49 # running the dist-check target
50 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
51
52 .PHONY: debug-opt-prof
53 debug-opt-prof:
54         $(Echo) Building Debug Version
55         $(Verb) $(MAKE)
56         $(Echo)
57         $(Echo) Building Optimized Version
58         $(Echo)
59         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
60         $(Echo)
61         $(Echo) Building Profiling Version
62         $(Echo)
63         $(Verb) $(MAKE) ENABLE_PROFILING=1
64
65 dist-hook::
66         $(Echo) Eliminating files constructed by configure
67         $(Verb) $(RM) -f \
68           $(TopDistDir)/include/llvm/ADT/hash_map  \
69           $(TopDistDir)/include/llvm/ADT/hash_set  \
70           $(TopDistDir)/include/llvm/ADT/iterator  \
71           $(TopDistDir)/include/llvm/Config/config.h  \
72           $(TopDistDir)/include/llvm/Support/DataTypes.h  \
73           $(TopDistDir)/include/llvm/Support/ThreadSupport.h
74
75 tools-only: all
76 libs-only: all
77
78 #------------------------------------------------------------------------
79 # Make sure the generated headers are up-to-date. This must be kept in
80 # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
81 #------------------------------------------------------------------------
82 FilesToConfig := \
83   include/llvm/Config/config.h \
84   include/llvm/Support/DataTypes.h \
85   include/llvm/ADT/hash_map \
86   include/llvm/ADT/hash_set \
87   include/llvm/ADT/iterator
88 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
89
90 all-local:: $(FilesToConfigPATH)
91 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in 
92         $(Echo) Regenerating $*
93         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
94 .PRECIOUS: $(FilesToConfigPATH)
95
96 # NOTE: This needs to remain as the last target definition in this file so
97 # that it gets executed last.
98 all:: 
99         $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
100 ifeq ($(BuildMode),Debug)
101         $(Echo) '*****' Note: Debug build can be 10 times slower than an
102         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
103         $(Echo) '*****' make an optimized build.
104 endif
105
106 check-llvm2cpp:
107         $(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
108
109 srpm: $(LLVM_OBJ_ROOT)/llvm.spec 
110         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
111
112 rpm: $(LLVM_OBJ_ROOT)/llvm.spec 
113         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
114
115 .PHONY: srpm rpm