2004-04-24 00:10:56 +00:00
|
|
|
#===- ./Makefile -------------------------------------------*- Makefile -*--===#
|
2003-10-20 22:26:57 +00:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
2004-04-24 00:10:56 +00:00
|
|
|
#===------------------------------------------------------------------------===#
|
2001-06-06 20:29:01 +00:00
|
|
|
LEVEL = .
|
2006-05-17 22:55:35 +00:00
|
|
|
DIRS = lib/System lib/Support utils lib/VMCore lib
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2006-04-08 02:14:37 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
2006-04-06 22:15:51 +00:00
|
|
|
|
2005-05-25 21:03:17 +00:00
|
|
|
ifeq ($(MAKECMDGOALS),tools-only)
|
2006-04-06 22:15:51 +00:00
|
|
|
DIRS += tools
|
2005-05-25 21:03:17 +00:00
|
|
|
else
|
|
|
|
ifneq ($(MAKECMDGOALS),libs-only)
|
2006-04-06 22:15:51 +00:00
|
|
|
DIRS += tools
|
2006-04-07 21:45:23 +00:00
|
|
|
ifneq ($(LLVMGCC_MAJVERS),4)
|
2006-04-06 22:15:51 +00:00
|
|
|
DIRS += runtime
|
|
|
|
else
|
|
|
|
$(warning Skipping runtime libraries, llvm-gcc 4 detected.)
|
|
|
|
endif
|
2006-04-08 02:14:37 +00:00
|
|
|
OPTIONAL_DIRS := examples projects
|
2006-04-06 22:15:51 +00:00
|
|
|
DIRS += docs
|
2005-05-25 21:03:17 +00:00
|
|
|
endif
|
2004-02-03 23:05:24 +00:00
|
|
|
endif
|
2006-04-12 20:53:14 +00:00
|
|
|
EXTRA_DIST := test llvm.spec include win32 Xcode
|
2004-10-26 07:05:09 +00:00
|
|
|
|
2006-04-08 02:14:37 +00:00
|
|
|
include $(LLVM_SRC_ROOT)/Makefile.rules
|
|
|
|
|
2005-05-24 02:33:20 +00:00
|
|
|
# Specify options to pass to configure script when we're
|
|
|
|
# running the dist-check target
|
|
|
|
DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
|
|
|
|
|
2004-11-25 09:08:54 +00:00
|
|
|
.PHONY: debug-opt-prof
|
|
|
|
debug-opt-prof:
|
|
|
|
$(Echo) Building Debug Version
|
|
|
|
$(Verb) $(MAKE)
|
|
|
|
$(Echo)
|
|
|
|
$(Echo) Building Optimized Version
|
|
|
|
$(Echo)
|
|
|
|
$(Verb) $(MAKE) ENABLE_OPTIMIZED=1
|
|
|
|
$(Echo)
|
|
|
|
$(Echo) Building Profiling Version
|
|
|
|
$(Echo)
|
|
|
|
$(Verb) $(MAKE) ENABLE_PROFILING=1
|
|
|
|
|
2004-10-25 08:27:37 +00:00
|
|
|
dist-hook::
|
2004-10-30 09:19:36 +00:00
|
|
|
$(Echo) Eliminating files constructed by configure
|
|
|
|
$(Verb) $(RM) -f \
|
2004-10-26 07:05:09 +00:00
|
|
|
$(TopDistDir)/include/llvm/ADT/hash_map \
|
|
|
|
$(TopDistDir)/include/llvm/ADT/hash_set \
|
|
|
|
$(TopDistDir)/include/llvm/ADT/iterator \
|
|
|
|
$(TopDistDir)/include/llvm/Config/config.h \
|
|
|
|
$(TopDistDir)/include/llvm/Support/DataTypes.h \
|
|
|
|
$(TopDistDir)/include/llvm/Support/ThreadSupport.h
|
2004-10-25 08:27:37 +00:00
|
|
|
|
2004-02-03 22:56:40 +00:00
|
|
|
tools-only: all
|
2005-05-25 21:03:17 +00:00
|
|
|
libs-only: all
|
2005-08-25 04:59:49 +00:00
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Make sure the generated headers are up-to-date. This must be kept in
|
|
|
|
# sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
FilesToConfig := \
|
|
|
|
include/llvm/Config/config.h \
|
|
|
|
include/llvm/Support/DataTypes.h \
|
|
|
|
include/llvm/ADT/hash_map \
|
|
|
|
include/llvm/ADT/hash_set \
|
|
|
|
include/llvm/ADT/iterator
|
|
|
|
FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
|
|
|
|
|
|
|
|
all-local:: $(FilesToConfigPATH)
|
|
|
|
$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
|
|
|
|
$(Echo) Regenerating $*
|
|
|
|
$(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
|
|
|
|
.PRECIOUS: $(FilesToConfigPATH)
|
2006-04-07 15:58:18 +00:00
|
|
|
|
2006-04-07 16:21:59 +00:00
|
|
|
# NOTE: This needs to remain as the last target definition in this file so
|
|
|
|
# that it gets executed last.
|
2006-04-07 15:58:18 +00:00
|
|
|
all::
|
|
|
|
$(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
|
|
|
|
ifeq ($(BuildMode),Debug)
|
|
|
|
$(Echo) '*****' Note: Debug build can be 10 times slower than an
|
|
|
|
$(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
|
|
|
|
$(Echo) '*****' make an optimized build.
|
|
|
|
endif
|
2006-04-07 16:21:59 +00:00
|
|
|
|