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 := . |
| 11 | DIRS := lib/System lib/Support utils lib/VMCore lib tools runtime docs |
| 12 | OPTIONAL_DIRS := examples projects |
| 13 | EXTRA_DIST := test llvm.spec include win32 Xcode |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 14 | |
Reid Spencer | 06a801a | 2006-04-08 02:14:37 +0000 | [diff] [blame] | 15 | include $(LEVEL)/Makefile.config |
Reid Spencer | 93bc3cd | 2006-04-06 22:15:51 +0000 | [diff] [blame] | 16 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 17 | # llvm-gcc4 doesn't need runtime libs. |
| 18 | ifeq ($(LLVMGCC_MAJVERS),4) |
| 19 | DIRS := $(filter-out runtime, $(DIRS)) |
Chris Lattner | 6a8c290 | 2004-02-03 23:05:24 +0000 | [diff] [blame] | 20 | endif |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 21 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 22 | ifeq ($(MAKECMDGOALS),libs-only) |
| 23 | DIRS := $(filter-out tools runtime docs, $(DIRS)) |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 24 | OPTIONAL_DIRS := |
| 25 | endif |
| 26 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 27 | ifeq ($(MAKECMDGOALS),tools-only) |
| 28 | DIRS := $(filter-out runtime docs, $(DIRS)) |
| 29 | OPTIONAL_DIRS := |
| 30 | endif |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 31 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 32 | # Don't install utils, examples, or projects they are only used to |
| 33 | # build LLVM. |
| 34 | ifeq ($(MAKECMDGOALS),install) |
| 35 | DIRS := $(filter-out utils, $(DIRS)) |
| 36 | OPTIONAL_DIRS := |
| 37 | endif |
Reid Spencer | 90c2949 | 2004-10-26 07:05:09 +0000 | [diff] [blame] | 38 | |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 39 | # Include the main makefile machinery. |
Reid Spencer | 06a801a | 2006-04-08 02:14:37 +0000 | [diff] [blame] | 40 | include $(LLVM_SRC_ROOT)/Makefile.rules |
| 41 | |
Reid Spencer | 45eeed9 | 2005-05-24 02:33:20 +0000 | [diff] [blame] | 42 | # Specify options to pass to configure script when we're |
| 43 | # running the dist-check target |
| 44 | DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR) |
| 45 | |
Reid Spencer | df561f4 | 2004-11-25 09:08:54 +0000 | [diff] [blame] | 46 | .PHONY: debug-opt-prof |
| 47 | debug-opt-prof: |
| 48 | $(Echo) Building Debug Version |
| 49 | $(Verb) $(MAKE) |
| 50 | $(Echo) |
| 51 | $(Echo) Building Optimized Version |
| 52 | $(Echo) |
| 53 | $(Verb) $(MAKE) ENABLE_OPTIMIZED=1 |
| 54 | $(Echo) |
| 55 | $(Echo) Building Profiling Version |
| 56 | $(Echo) |
| 57 | $(Verb) $(MAKE) ENABLE_PROFILING=1 |
| 58 | |
Reid Spencer | 151f8ba | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 59 | dist-hook:: |
Reid Spencer | cc2d1e2 | 2004-10-30 09:19:36 +0000 | [diff] [blame] | 60 | $(Echo) Eliminating files constructed by configure |
| 61 | $(Verb) $(RM) -f \ |
Reid Spencer | 90c2949 | 2004-10-26 07:05:09 +0000 | [diff] [blame] | 62 | $(TopDistDir)/include/llvm/ADT/hash_map \ |
| 63 | $(TopDistDir)/include/llvm/ADT/hash_set \ |
| 64 | $(TopDistDir)/include/llvm/ADT/iterator \ |
| 65 | $(TopDistDir)/include/llvm/Config/config.h \ |
| 66 | $(TopDistDir)/include/llvm/Support/DataTypes.h \ |
| 67 | $(TopDistDir)/include/llvm/Support/ThreadSupport.h |
Reid Spencer | 151f8ba | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 68 | |
Chris Lattner | 9cf662b | 2004-02-03 22:56:40 +0000 | [diff] [blame] | 69 | tools-only: all |
Reid Spencer | 8b1f767 | 2005-05-25 21:03:17 +0000 | [diff] [blame] | 70 | libs-only: all |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 71 | |
| 72 | #------------------------------------------------------------------------ |
| 73 | # Make sure the generated headers are up-to-date. This must be kept in |
| 74 | # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac |
| 75 | #------------------------------------------------------------------------ |
| 76 | FilesToConfig := \ |
| 77 | include/llvm/Config/config.h \ |
| 78 | include/llvm/Support/DataTypes.h \ |
| 79 | include/llvm/ADT/hash_map \ |
| 80 | include/llvm/ADT/hash_set \ |
| 81 | include/llvm/ADT/iterator |
| 82 | FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig)) |
| 83 | |
| 84 | all-local:: $(FilesToConfigPATH) |
| 85 | $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in |
| 86 | $(Echo) Regenerating $* |
| 87 | $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $* |
| 88 | .PRECIOUS: $(FilesToConfigPATH) |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 89 | |
Chris Lattner | 38ab6d8 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 90 | # NOTE: This needs to remain as the last target definition in this file so |
| 91 | # that it gets executed last. |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 92 | all:: |
| 93 | $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build |
| 94 | ifeq ($(BuildMode),Debug) |
| 95 | $(Echo) '*****' Note: Debug build can be 10 times slower than an |
| 96 | $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to |
| 97 | $(Echo) '*****' make an optimized build. |
| 98 | endif |
Chris Lattner | 38ab6d8 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 99 | |
Reid Spencer | 5b30ee1 | 2006-06-01 07:27:53 +0000 | [diff] [blame] | 100 | check-llvm2cpp: |
| 101 | $(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1 |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 102 | |
Reid Spencer | f7c75a6 | 2006-08-16 00:43:50 +0000 | [diff] [blame] | 103 | srpm: $(LLVM_OBJ_ROOT)/llvm.spec |
| 104 | rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec |
| 105 | |
| 106 | rpm: $(LLVM_OBJ_ROOT)/llvm.spec |
| 107 | rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec |
| 108 | |
| 109 | .PHONY: srpm rpm |