Misha Brukman | 6d5ab86 | 2004-04-24 00:10:56 +0000 | [diff] [blame] | 1 | #===- ./Makefile -------------------------------------------*- Makefile -*--===# |
John Criswell | e488e93 | 2003-10-20 22:26:57 +0000 | [diff] [blame] | 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 | # |
Misha Brukman | 6d5ab86 | 2004-04-24 00:10:56 +0000 | [diff] [blame] | 8 | #===------------------------------------------------------------------------===# |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 9 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 10 | LEVEL := . |
Chris Lattner | 87b5101 | 2006-09-04 04:27:07 +0000 | [diff] [blame] | 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. |
Reid Spencer | ac90d5e | 2006-11-16 23:17:27 +0000 | [diff] [blame] | 18 | # 6. Build tools, docs. |
Chris Lattner | 87b5101 | 2006-09-04 04:27:07 +0000 | [diff] [blame] | 19 | # |
| 20 | DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \ |
Reid Spencer | ac90d5e | 2006-11-16 23:17:27 +0000 | [diff] [blame] | 21 | tools docs |
Chris Lattner | 87b5101 | 2006-09-04 04:27:07 +0000 | [diff] [blame] | 22 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 23 | OPTIONAL_DIRS := examples projects |
| 24 | EXTRA_DIST := test llvm.spec include win32 Xcode |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 25 | |
Reid Spencer | 06a801a | 2006-04-08 02:14:37 +0000 | [diff] [blame] | 26 | include $(LEVEL)/Makefile.config |
Reid Spencer | 93bc3cd | 2006-04-06 22:15:51 +0000 | [diff] [blame] | 27 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 28 | ifeq ($(MAKECMDGOALS),libs-only) |
Reid Spencer | ac90d5e | 2006-11-16 23:17:27 +0000 | [diff] [blame] | 29 | DIRS := $(filter-out tools docs, $(DIRS)) |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 30 | OPTIONAL_DIRS := |
| 31 | endif |
| 32 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 33 | ifeq ($(MAKECMDGOALS),tools-only) |
Reid Spencer | ac90d5e | 2006-11-16 23:17:27 +0000 | [diff] [blame] | 34 | DIRS := $(filter-out docs, $(DIRS)) |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 35 | OPTIONAL_DIRS := |
| 36 | endif |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 37 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 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 |
Reid Spencer | 90c2949 | 2004-10-26 07:05:09 +0000 | [diff] [blame] | 44 | |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 45 | # Include the main makefile machinery. |
Reid Spencer | 06a801a | 2006-04-08 02:14:37 +0000 | [diff] [blame] | 46 | include $(LLVM_SRC_ROOT)/Makefile.rules |
| 47 | |
Reid Spencer | 45eeed9 | 2005-05-24 02:33:20 +0000 | [diff] [blame] | 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 | |
Reid Spencer | df561f4 | 2004-11-25 09:08:54 +0000 | [diff] [blame] | 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 | |
Reid Spencer | 151f8ba | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 65 | dist-hook:: |
Reid Spencer | cc2d1e2 | 2004-10-30 09:19:36 +0000 | [diff] [blame] | 66 | $(Echo) Eliminating files constructed by configure |
| 67 | $(Verb) $(RM) -f \ |
Reid Spencer | 90c2949 | 2004-10-26 07:05:09 +0000 | [diff] [blame] | 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 |
Reid Spencer | 151f8ba | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 74 | |
Chris Lattner | 9cf662b | 2004-02-03 22:56:40 +0000 | [diff] [blame] | 75 | tools-only: all |
Reid Spencer | 8b1f767 | 2005-05-25 21:03:17 +0000 | [diff] [blame] | 76 | libs-only: all |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 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) |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 95 | |
Chris Lattner | 38ab6d8 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 96 | # NOTE: This needs to remain as the last target definition in this file so |
| 97 | # that it gets executed last. |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 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 |
Chris Lattner | 38ab6d8 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 105 | |
Reid Spencer | 5b30ee1 | 2006-06-01 07:27:53 +0000 | [diff] [blame] | 106 | check-llvm2cpp: |
| 107 | $(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1 |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 108 | |
Reid Spencer | f7c75a6 | 2006-08-16 00:43:50 +0000 | [diff] [blame] | 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 |