Welcome 2007.
[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, runtime, docs.
19 #
20 DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
21         tools runtime docs
22         
23 OPTIONAL_DIRS := examples projects
24 EXTRA_DIST := test llvm.spec include win32 Xcode
25
26 include $(LEVEL)/Makefile.config 
27
28 # llvm-gcc4 doesn't need runtime libs.
29 ifeq ($(LLVMGCC_MAJVERS),4)
30   DIRS := $(filter-out runtime, $(DIRS))
31 endif
32
33 ifeq ($(MAKECMDGOALS),libs-only)
34   DIRS := $(filter-out tools runtime docs, $(DIRS))
35   OPTIONAL_DIRS :=
36 endif
37
38 ifeq ($(MAKECMDGOALS),tools-only)
39   DIRS := $(filter-out runtime docs, $(DIRS))
40   OPTIONAL_DIRS :=
41 endif
42
43 # Don't install utils, examples, or projects they are only used to 
44 # build LLVM.
45 ifeq ($(MAKECMDGOALS),install)
46   DIRS := $(filter-out utils, $(DIRS))
47   OPTIONAL_DIRS :=
48 endif
49
50 # Include the main makefile machinery.
51 include $(LLVM_SRC_ROOT)/Makefile.rules
52
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)
56
57 .PHONY: debug-opt-prof
58 debug-opt-prof:
59         $(Echo) Building Debug Version
60         $(Verb) $(MAKE)
61         $(Echo)
62         $(Echo) Building Optimized Version
63         $(Echo)
64         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
65         $(Echo)
66         $(Echo) Building Profiling Version
67         $(Echo)
68         $(Verb) $(MAKE) ENABLE_PROFILING=1
69
70 dist-hook::
71         $(Echo) Eliminating files constructed by configure
72         $(Verb) $(RM) -f \
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
79
80 tools-only: all
81 libs-only: all
82
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 #------------------------------------------------------------------------
87 FilesToConfig := \
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))
94
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)
100
101 # NOTE: This needs to remain as the last target definition in this file so
102 # that it gets executed last.
103 all:: 
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.
109 endif
110
111 check-llvm2cpp:
112         $(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
113
114 srpm: $(LLVM_OBJ_ROOT)/llvm.spec 
115         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
116
117 rpm: $(LLVM_OBJ_ROOT)/llvm.spec 
118         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
119
120 .PHONY: srpm rpm