Add a show-footprint target to run du a few times to show how much disk
[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 # Include the main makefile machinery.
44 include $(LLVM_SRC_ROOT)/Makefile.rules
45
46 # Specify options to pass to configure script when we're
47 # running the dist-check target
48 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
49
50 .PHONY: debug-opt-prof
51 debug-opt-prof:
52         $(Echo) Building Debug Version
53         $(Verb) $(MAKE)
54         $(Echo)
55         $(Echo) Building Optimized Version
56         $(Echo)
57         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
58         $(Echo)
59         $(Echo) Building Profiling Version
60         $(Echo)
61         $(Verb) $(MAKE) ENABLE_PROFILING=1
62
63 dist-hook::
64         $(Echo) Eliminating files constructed by configure
65         $(Verb) $(RM) -f \
66           $(TopDistDir)/include/llvm/ADT/hash_map  \
67           $(TopDistDir)/include/llvm/ADT/hash_set  \
68           $(TopDistDir)/include/llvm/ADT/iterator  \
69           $(TopDistDir)/include/llvm/Config/config.h  \
70           $(TopDistDir)/include/llvm/Support/DataTypes.h  \
71           $(TopDistDir)/include/llvm/Support/ThreadSupport.h
72
73 tools-only: all
74 libs-only: all
75
76 #------------------------------------------------------------------------
77 # Make sure the generated headers are up-to-date. This must be kept in
78 # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
79 #------------------------------------------------------------------------
80 FilesToConfig := \
81   include/llvm/Config/config.h \
82   include/llvm/Support/DataTypes.h \
83   include/llvm/ADT/hash_map \
84   include/llvm/ADT/hash_set \
85   include/llvm/ADT/iterator
86 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
87
88 all-local:: $(FilesToConfigPATH)
89 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in 
90         $(Echo) Regenerating $*
91         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
92 .PRECIOUS: $(FilesToConfigPATH)
93
94 # NOTE: This needs to remain as the last target definition in this file so
95 # that it gets executed last.
96 all:: 
97         $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
98 ifeq ($(BuildMode),Debug)
99         $(Echo) '*****' Note: Debug build can be 10 times slower than an
100         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
101         $(Echo) '*****' make an optimized build.
102 endif
103
104 check-llvm2cpp:
105         $(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
106
107 srpm: $(LLVM_OBJ_ROOT)/llvm.spec 
108         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
109
110 rpm: $(LLVM_OBJ_ROOT)/llvm.spec 
111         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
112
113 show-footprint:
114         $(Verb) du -sk $(LibDir)
115         $(Verb) du -sk $(ToolDir)
116         $(Verb) du -sk $(ExmplDir)
117         $(Verb) du -sk $(ObjDir)
118
119 .PHONY: srpm rpm