blob: 4a2549a592f072a5e7348127be50813368c51d00 [file] [log] [blame]
Misha Brukman6d5ab862004-04-24 00:10:56 +00001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
John Criswelld8846c12003-10-21 14:33:46 +00003# 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 Brukman6d5ab862004-04-24 00:10:56 +00008#===------------------------------------------------------------------------===#
Chris Lattner00950542001-06-06 20:29:01 +00009#
Reid Spencer3a561f52004-10-23 20:04:14 +000010# This file is included by all of the LLVM makefiles. For details on how to use
11# it properly, please see the document MakefileGuide.html in the docs directory.
Chris Lattneraf06a082003-08-15 03:02:52 +000012#
Vikram S. Adved60aede2002-07-09 12:04:21 +000013#===-----------------------------------------------------------------------====
Chris Lattner00950542001-06-06 20:29:01 +000014
John Criswell2a6530f2003-06-27 16:58:44 +000015#
John Criswell7f336952003-09-06 14:44:17 +000016# Set the VPATH so that we can find source files.
John Criswell8bff5092003-06-11 13:55:44 +000017#
Reid Spencer4d71b662004-10-22 21:01:56 +000018VPATH=$(BUILD_SRC_DIR)
John Criswell8bff5092003-06-11 13:55:44 +000019
Reid Spencer3a561f52004-10-23 20:04:14 +000020###############################################################################
21# TARGETS: Define standard targets that can be invoked
22###############################################################################
John Criswell7a73b802003-06-30 21:59:07 +000023
Chris Lattner00950542001-06-06 20:29:01 +000024#--------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +000025# Define the various target sets
26#--------------------------------------------------------------------
27RECURSIVE_TARGETS := all clean check install uninstall
Reid Spencer9411c642004-10-26 22:26:33 +000028LOCAL_TARGETS := all-local clean-local check-local install-local \
29 printvars uninstall-local
Reid Spencere5487ba2004-10-24 07:53:21 +000030TOPLEV_TARGETS := dist dist-check dist-clean tags
Reid Spencer151f8ba2004-10-25 08:27:37 +000031USER_TARGETS := $(RECURSIVE_TARGETS) $(LOCAL_TARGETS) $(TOPLEV_TARGETS)
Reid Spencere5487ba2004-10-24 07:53:21 +000032INTERNAL_TARGETS := preconditions \
33 install-config-dir install-shared-library install-bytecode-library \
34 install-archive-library install-relinked-library install-tool \
35 uninstall-config-dir uninstall-shared-library uninstall-bytecode-library \
36 uninstall-archive-library uninstall-relinked-library uninstall-tool
Reid Spencer3a561f52004-10-23 20:04:14 +000037
Reid Spencer9411c642004-10-26 22:26:33 +000038###############################################################################
39# INITIALIZATION: Basic things the makefile needs
40###############################################################################
41
42#--------------------------------------------------------------------
43# Reset the list of suffixes we know how to build
44#--------------------------------------------------------------------
45.SUFFIXES:
46.SUFFIXES: .c .cpp .h .hpp .y .l .lo .o .a $(SHLIBEXT) .bc .td .ps .dot $(SUFFIXES)
47
Reid Spencer3a561f52004-10-23 20:04:14 +000048#--------------------------------------------------------------------
49# Mark all of these targets as phony to avoid implicit rule search
50#--------------------------------------------------------------------
Reid Spencer151f8ba2004-10-25 08:27:37 +000051.PHONY: $(USER_TARGETS) $(INTERNAL_TARGETS)
Reid Spencer3a561f52004-10-23 20:04:14 +000052
53#--------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +000054# Make sure all the user-target rules are double colon rules and
55# they are defined first.
Reid Spencer3a561f52004-10-23 20:04:14 +000056#--------------------------------------------------------------------
57
Reid Spencer9411c642004-10-26 22:26:33 +000058$(USER_TARGETS)::
Reid Spencer151f8ba2004-10-25 08:27:37 +000059
Reid Spencer9411c642004-10-26 22:26:33 +000060################################################################################
61# PRECONDITIONS: that which must be built/checked first
62################################################################################
63
Reid Spencer80f0ef72004-10-28 00:41:43 +000064SRCMKFILES := $(BUILD_SRC_DIR)/Makefile $(filter-out Makefile.rules %.in,\
Reid Spencer86606782004-10-26 23:10:00 +000065 $(wildcard $(BUILD_SRC_DIR)/Makefile.*))
Reid Spencer9411c642004-10-26 22:26:33 +000066OBJMKFILES := $(subst $(BUILD_SRC_DIR),$(BUILD_OBJ_DIR),$(SRCMKFILES))
67CONFIGURE := $(LLVM_SRC_ROOT)/configure
68CONFIG_STATUS := $(LLVM_OBJ_ROOT)/config.status
69MAKE_CONFIG_IN:= $(LLVM_SRC_ROOT)/Makefile.config.in
70MAKE_CONFIG := $(LLVM_OBJ_ROOT)/Makefile.config
71PRECONDITIONS := $(CONFIG_STATUS) $(MAKE_CONFIG) $(OBJMKFILES)
72
73preconditions : $(PRECONDITIONS)
74
75#------------------------------------------------------------------------
76# Make sure the BUILT_SOURCES are built first
77#------------------------------------------------------------------------
78$(filter-out clean clean-local,USER_TARGETS):: $(BUILT_SOURCES)
79
80clean-local::
81ifneq ($(strip $(BUILT_SOURCES)),)
82 $(VERB) $(RM) -f $(BUILT_SOURCES)
83endif
84
Reid Spencer80f0ef72004-10-28 00:41:43 +000085$(BUILT_SOURCES) : $(BUILD_OBJ_ROOT)/Makefile
86
Reid Spencer9411c642004-10-26 22:26:33 +000087#------------------------------------------------------------------------
88# Make sure we're not using a stale configuration
89#------------------------------------------------------------------------
90.PRECIOUS: $(CONFIG_STATUS)
91$(CONFIG_STATUS): $(CONFIGURE)
92 @$(ECHO) Reconfiguring with $<
93 $(VERB) $(CONFIG_STATUS) --recheck $(CONFIGUREFLAGS)
Reid Spencer0b8d2f92004-10-27 22:48:58 +000094 $(VERB) $(CONFIG_STATUS)
Reid Spencer9411c642004-10-26 22:26:33 +000095
96#------------------------------------------------------------------------
97# Make sure the configuration makefile is up to date
98#------------------------------------------------------------------------
99$(MAKE_CONFIG): $(MAKE_CONFIG_IN) $(CONFIG_STATUS)
100 @$(ECHO) Regenerating $@
101 $(VERB) cd $(LLVM_OBJ_ROOT) ; $(CONFIG_STATUS) Makefile.config
102
103#------------------------------------------------------------------------
104# If the Makefile in the source tree has been updated, copy it over into the
105# build tree. But, only do this if the source and object makefiles differ
106#------------------------------------------------------------------------
107ifneq ($(BUILD_OBJ_DIR),$(BUILD_SRC_DIR))
108
109$(BUILD_OBJ_DIR)/Makefile : $(BUILD_SRC_DIR)/Makefile
110 @$(ECHO) "Updating Makefile"
111 $(VERB) $(MKDIR) $(@D)
112 $(VERB) cp -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000113
114# Copy the Makefile.* files unless we're in the root directory which avoids
115# the copying of Makefile.config.in or other things that should be explicitly
116# taken care of.
Reid Spencer9411c642004-10-26 22:26:33 +0000117$(BUILD_OBJ_DIR)/Makefile% : $(BUILD_SRC_DIR)/Makefile%
Reid Spencer86606782004-10-26 23:10:00 +0000118 @case '$?' in \
119 *Makefile.rules) ;; \
120 *.in) ;; \
121 *) $(ECHO) "Updating $(@F)" ; \
122 $(MKDIR) $(@D) ; \
123 cp -f $< $@ ;; \
124 esac
125
Reid Spencer9411c642004-10-26 22:26:33 +0000126endif
127
128#------------------------------------------------------------------------
129# Set up the basic dependencies
130#------------------------------------------------------------------------
131$(USER_TARGETS):: $(PRECONDITIONS)
132
133all:: all-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000134check:: check-local
135clean:: clean-local
Reid Spencer9411c642004-10-26 22:26:33 +0000136install:: install-local
137uninstall:: uninstall-local
138check-local:: all-local
139install-local:: all-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000140
141###############################################################################
142# VARIABLES: Set up various variables based on configuration data
143###############################################################################
144
145#--------------------------------------------------------------------
146# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000147#--------------------------------------------------------------------
148
Chris Lattner760da062003-03-14 20:25:22 +0000149ifdef ENABLE_PROFILING
Chris Lattner760da062003-03-14 20:25:22 +0000150 CONFIGURATION := Profile
Reid Spencer4d71b662004-10-22 21:01:56 +0000151 CXXFLAGS += -O3 -DNDEBUG -felide-constructors -finline-functions -pg
152 CFLAGS += -O3 -DNDEBUG -pg
153 LDFLAGS += -O3 -DNDEBUG -pg
Chris Lattner760da062003-03-14 20:25:22 +0000154else
155 ifdef ENABLE_OPTIMIZED
156 CONFIGURATION := Release
Reid Spencer4d71b662004-10-22 21:01:56 +0000157 CXXFLAGS += -O3 -DNDEBUG -finline-functions -felide-constructors -fomit-frame-pointer
158 CFLAGS += -O3 -DNDEBUG -fomit-frame-pointer
159 LDFLAGS += -O3 -DNDEBUG
Chris Lattner760da062003-03-14 20:25:22 +0000160 else
161 CONFIGURATION := Debug
Reid Spencer4d71b662004-10-22 21:01:56 +0000162 CXXFLAGS += -g -D_DEBUG
163 CFLAGS += -g -D_DEBUG
164 LDFLAGS += -g -D_DEBUG
165 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000166 endif
167endif
168
Reid Spencer4d71b662004-10-22 21:01:56 +0000169ARFLAGS := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000170
171#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000172# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000173#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000174OBJDIR := $(BUILD_OBJ_DIR)/$(CONFIGURATION)
175LIBDIR := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
176TOOLDIR := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
177LLVMLIBDIR := $(LLVM_OBJ_ROOT)/lib/$(CONFIGURATION)
178LLVMTOOLDIR := $(LLVM_OBJ_ROOT)/tools/$(CONFIGURATION)
John Criswell7a73b802003-06-30 21:59:07 +0000179
Reid Spencer3a561f52004-10-23 20:04:14 +0000180#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000181# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000182#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000183LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
184LLVMAS := $(LLVMTOOLDIR)/llvm-as$(EXEEXT)
185BURG := $(LLVMTOOLDIR)/burg$(EXEEXT)
186TBLGEN := $(LLVMTOOLDIR)/tblgen$(EXEEXT)
187GCCLD := $(LLVMTOOLDIR)/gccld$(EXEEXT)
188LLVMGCC := PATH=$(LLVMTOOLDIR):$(PATH) $(LLVMGCCDIR)/bin/gcc
189LLVMGXX := PATH=$(LLVMTOOLDIR):$(PATH) $(LLVMGCCDIR)/bin/g++
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000190
Reid Spencer4d71b662004-10-22 21:01:56 +0000191# Need a better way to compute this.
192LLVMGCCLIBDIR := $(dir $(shell $(LLVMGCC) -print-file-name=libgcc.a))/
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000193
Reid Spencer3a561f52004-10-23 20:04:14 +0000194#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000195# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000196#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000197
Reid Spencer3a561f52004-10-23 20:04:14 +0000198# Adjust LIBTOOL options for shared libraries, or not.
John Criswell82f4a5a2003-07-31 20:58:51 +0000199ifndef SHARED_LIBRARY
Reid Spencer4d71b662004-10-22 21:01:56 +0000200 LIBTOOL += --tag=disable-shared
201else
202 LDFLAGS += -rpath $(LIBDIR)
John Criswell82f4a5a2003-07-31 20:58:51 +0000203endif
204
Reid Spencer3a561f52004-10-23 20:04:14 +0000205# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000206ifndef VERBOSE
Reid Spencer4d71b662004-10-22 21:01:56 +0000207 VERB := @
208 LIBTOOL += --silent
209 AR += >/dev/null 2>/dev/null
Reid Spencer151f8ba2004-10-25 08:27:37 +0000210 CONFIGUREFLAGS += >$(BUILD_OBJ_DIR)/configure.out 2>&1
211else
212 CONFIGUREFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000213endif
214
Vikram S. Advefeeae582002-09-18 11:55:13 +0000215# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000216ifndef KEEP_SYMBOLS
Reid Spencer4d71b662004-10-22 21:01:56 +0000217 STRIP = $(PLATFORMSTRIPOPTS)
218 STRIP_WARN_MSG = "(without symbols)"
Vikram S. Advefeeae582002-09-18 11:55:13 +0000219endif
220
Reid Spencer3a561f52004-10-23 20:04:14 +0000221# Adjust linker flags for building an executable
Reid Spencer4d71b662004-10-22 21:01:56 +0000222ifdef TOOLNAME
223 LDFLAGS += -rpath $(TOOLDIR) -export-dynamic $(TOOLLINKOPTS)
224endif
Chris Lattner00950542001-06-06 20:29:01 +0000225
Reid Spencer3a561f52004-10-23 20:04:14 +0000226# Use TOOLLINKOPTSB to pass options to the linker like library search
227# path etc.
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000228# Note that this is different from TOOLLINKOPTS, these options
229# are passed to the linker *before* the USEDLIBS options are passed.
230# e.g. usage TOOLLINKOPTSB = -L/home/xxx/lib
231ifdef TOOLLINKOPTSB
Reid Spencer4d71b662004-10-22 21:01:56 +0000232LDFLAGS += $(TOOLLINKOPTSB)
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000233endif
234
Reid Spencer3a561f52004-10-23 20:04:14 +0000235#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000236# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000237#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000238
239CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused
240
Reid Spencer3a561f52004-10-23 20:04:14 +0000241LDFLAGS += -L$(LIBDIR) -L$(LLVMLIBDIR)
Reid Spencer4d71b662004-10-22 21:01:56 +0000242CPPFLAGS += -I$(BUILD_OBJ_DIR) \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000243 -I$(BUILD_SRC_DIR) \
244 -I$(BUILD_SRC_ROOT)/include \
245 -I$(BUILD_OBJ_ROOT)/include \
246 -I$(LLVM_OBJ_ROOT)/include \
247 -I$(LLVM_SRC_ROOT)/include \
248 -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
Reid Spencer4d71b662004-10-22 21:01:56 +0000249
Reid Spencer3a561f52004-10-23 20:04:14 +0000250Compile.C = $(CC) $(CPPFLAGS) $(CompileCommonOpts) -c $(CFLAGS)
251Compile.CXX = $(CXX) $(CPPFLAGS) $(CompileCommonOpts) $(CXXFLAGS) -c
252LTCompile.C = $(LIBTOOL) --mode=compile $(Compile.C)
253LTCompile.CXX = $(LIBTOOL) --tag=CXX --mode=compile $(Compile.CXX)
254BCCompile.CXX = $(LLVMGXX) $(CPPFLAGS) $(CompileCommonOpts) $(CXXFLAGS) -c
255BCCompile.C = $(LLVMGCC) $(CPPFLAGS) $(CompileCommonOpts) $(CFLAGS) -c
256Link = $(LIBTOOL) --tag=CXX --mode=link $(CXX) $(CPPFLAGS) \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000257 $(CompileCommonOpts) $(LDFLAGS) $(STRIP)
Reid Spencer3a561f52004-10-23 20:04:14 +0000258Relink = $(LIBTOOL) --tag=CXX --mode=link $(CXX)
259BCLinkLib = $(LLVMGCC) -shared -nostdlib
260Burg = $(BURG) -I $(BUILD_SRC_DIR)
261TableGen = $(TBLGEN) -I $(BUILD_SRC_DIR)
262Archive = $(AR) $(ARFLAGS)
Reid Spencer4d71b662004-10-22 21:01:56 +0000263ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000264Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000265else
Reid Spencer3a561f52004-10-23 20:04:14 +0000266Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000267endif
268
Chris Lattner00950542001-06-06 20:29:01 +0000269#----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000270# Get the list of source files
271#----------------------------------------------------------
272ifndef SOURCES
273SOURCES := $(notdir $(wildcard $(BUILD_SRC_DIR)/*.cpp \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000274 $(BUILD_SRC_DIR)/*.cc $(BUILD_SRC_DIR)/*.c $(BUILD_SRC_DIR)/*.y \
275 $(BUILD_SRC_DIR)/*.l))
Reid Spencer4d71b662004-10-22 21:01:56 +0000276endif
277
278ifdef BUILT_SOURCES
Reid Spencer3a561f52004-10-23 20:04:14 +0000279SOURCES += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
Vikram S. Advead9ea7e2002-10-14 16:40:04 +0000280endif
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000281
Reid Spencer3a561f52004-10-23 20:04:14 +0000282#----------------------------------------------------------
283# Types of objects that can be built from sources
284#----------------------------------------------------------
285BASENAME_SOURCES := $(sort $(basename $(SOURCES)))
286ObjectsO := $(BASENAME_SOURCES:%=$(OBJDIR)/%.o)
287ObjectsLO := $(BASENAME_SOURCES:%=$(OBJDIR)/%.lo)
288ObjectsBC := $(BASENAME_SOURCES:%=$(OBJDIR)/%.bc)
289
290
291###############################################################################
292# DIRECTORIES: Handle recursive descent of directory structure
293###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000294
Chris Lattner00950542001-06-06 20:29:01 +0000295#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000296# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000297#---------------------------------------------------------
298
Reid Spencer151f8ba2004-10-25 08:27:37 +0000299SUBDIRS :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000300ifdef DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000301SUBDIRS += $(DIRS)
Reid Spencer3a561f52004-10-23 20:04:14 +0000302$(RECURSIVE_TARGETS)::
Reid Spencer4d71b662004-10-22 21:01:56 +0000303 $(VERB) for dir in $(DIRS); do \
304 if [ ! -f $$dir/Makefile ]; then \
305 $(MKDIR) $$dir; \
306 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
307 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000308 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000309 done
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000310endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000311
Reid Spencer3a561f52004-10-23 20:04:14 +0000312#---------------------------------------------------------
313# Handle the EXPERIMENTAL_DIRS options ensuring success
314# after each directory is built.
315#---------------------------------------------------------
316ifdef EXPERIMENTAL_DIRS
317$(RECURSIVE_TARGETS)::
318 $(VERB) for dir in $(EXPERIMENTAL_DIRS); do \
319 if [ ! -f $$dir/Makefile ]; then \
320 $(MKDIR) $$dir; \
321 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
322 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000323 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000324 done
325endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000326
Reid Spencer3a561f52004-10-23 20:04:14 +0000327#---------------------------------------------------------
328# Handle the PARALLEL_DIRS options for parallel construction
329#---------------------------------------------------------
330ifdef PARALLEL_DIRS
331
Reid Spencer151f8ba2004-10-25 08:27:37 +0000332SUBDIRS += $(PARALLEL_DIRS)
Reid Spencer3a561f52004-10-23 20:04:14 +0000333# Unfortunately, this list must be maintained if new
334# recursive targets are added.
335all :: $(addsuffix /.makeall , $(PARALLEL_DIRS))
336clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS))
337check :: $(addsuffix /.makecheck , $(PARALLEL_DIRS))
338install :: $(addsuffix /.makeinstall , $(PARALLEL_DIRS))
339uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
340
341Parallel_Targets := $(foreach T,$(RECURSIVE_TARGETS),%/.make$(T))
342
343$(Parallel_Targets) :
Reid Spencer4d71b662004-10-22 21:01:56 +0000344 $(VERB) if [ ! -f $(@D)/Makefile ]; then \
345 $(MKDIR) $(@D); \
346 cp $(BUILD_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000347 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000348 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000349endif
350
Reid Spencer3a561f52004-10-23 20:04:14 +0000351#---------------------------------------------------------
352# Handle the OPTIONAL_DIRS options for directores that may
353# or may not exist.
354#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000355ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000356
357SUBDIRS += $(OPTIONAL_DIRS)
358
Reid Spencer3a561f52004-10-23 20:04:14 +0000359$(RECURSIVE_TARGETS)::
Reid Spencer4d71b662004-10-22 21:01:56 +0000360 $(VERB) for dir in $(OPTIONAL_DIRS); do \
361 if [ -d $(BUILD_SRC_DIR)/$$dir ]; then\
362 if [ ! -f $$dir/Makefile ]; then \
363 $(MKDIR) $$dir; \
364 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
365 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000366 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000367 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000368 done
369endif
370
Reid Spencerfc945082004-08-20 09:20:05 +0000371#---------------------------------------------------------
372# Handle the CONFIG_FILES options
373#---------------------------------------------------------
374ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000375
Reid Spencere5487ba2004-10-24 07:53:21 +0000376install-local:: install-config-dir
Reid Spencer3a561f52004-10-23 20:04:14 +0000377
378install-config-dir: $(sysconfdir) $(CONFIG_FILES)
Reid Spencer37130d22004-10-04 07:05:07 +0000379 $(VERB)$(ECHO) Installing Configuration Files To $(sysconfdir)
380 $(VERB)for file in $(CONFIG_FILES); do \
Reid Spencer4d71b662004-10-22 21:01:56 +0000381 $(INSTALL) $(BUILD_SRC_DIR)/$${file} $(sysconfdir) ; \
Reid Spencerfc945082004-08-20 09:20:05 +0000382 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000383
Reid Spencere5487ba2004-10-24 07:53:21 +0000384uninstall-local:: uninstall-config-dir
385
386uninstall-config-dir:
387 $(VERB)$(ECHO) Uninstalling Configuration Files From $(sysconfdir)
388 $(VERB)for file in $(CONFIG_FILES); do \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000389 $(RM) -f $(sysconfdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000390 done
391
Reid Spencer3a561f52004-10-23 20:04:14 +0000392$(sysconfdir):
Reid Spencer9411c642004-10-26 22:26:33 +0000393 $(VERB) $(MKDIR) $(sysconfdir)
Reid Spencer3a561f52004-10-23 20:04:14 +0000394
Reid Spencerfc945082004-08-20 09:20:05 +0000395endif
396
Reid Spencer3a561f52004-10-23 20:04:14 +0000397###############################################################################
398# Library Build Rules: Four ways to build a library
399###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000400
Reid Spencere45ebfa2004-10-26 07:09:33 +0000401$(libdir):
402 $(VERB) $(MKDIR) $(libdir)
403
404$(bytecode_libdir):
405 $(VERB) $(MKDIR) $(bytecode_libdir)
406
407
Brian Gaeke8abff792004-01-22 22:53:48 +0000408
Reid Spencer3a561f52004-10-23 20:04:14 +0000409# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +0000410ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000411
Chris Lattner2a548c52002-09-16 22:36:42 +0000412# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000413LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer4d71b662004-10-22 21:01:56 +0000414LIBNAME_LA := $(LIBDIR)/lib$(LIBRARYNAME).la
415LIBNAME_A := $(LIBDIR)/lib$(LIBRARYNAME).a
416LIBNAME_O := $(LIBDIR)/$(LIBRARYNAME).o
417LIBNAME_BC := $(LIBDIR)/lib$(LIBRARYNAME).bc
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000418
Reid Spencer3a561f52004-10-23 20:04:14 +0000419#---------------------------------------------------------
420# Shared Library Targets:
421# If the user asked for a shared library to be built
422# with the SHARED_LIBRARY variable, then we provide
423# targets for building them.
424#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000425ifdef SHARED_LIBRARY
426
Reid Spencer3a561f52004-10-23 20:04:14 +0000427all-local:: $(LIBNAME_LA)
Reid Spencer4d71b662004-10-22 21:01:56 +0000428
429$(LIBNAME_LA): $(BUILT_SOURCES) $(ObjectsLO) $(LIBDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000430 @$(ECHO) Linking $(CONFIGURATION) Shared Library $(notdir $@)
Reid Spencer4d71b662004-10-22 21:01:56 +0000431 $(VERB) $(Link) -o $@ $(ObjectsLO)
432 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $@ $(LIBDIR)
Reid Spencer3a561f52004-10-23 20:04:14 +0000433
434clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000435ifneq ($(strip $(LIBNAME_LA)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000436 $(VERB) $(RM) -f $(LIBNAME_LA)
Reid Spencere5487ba2004-10-24 07:53:21 +0000437endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000438
Reid Spencere5487ba2004-10-24 07:53:21 +0000439DestSharedLib = $(libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
440install-local:: install-shared-library
Reid Spencer4d71b662004-10-22 21:01:56 +0000441
Reid Spencere45ebfa2004-10-26 07:09:33 +0000442install-shared-library: $(libdir) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000443
444$(DestSharedLib): $(LIBNAME_LA)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000445 @$(ECHO) Installing $(CONFIGURATION) Shared Library $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000446 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_LA) $(DestSharedLib)
447 $(VERB) $(LIBTOOL) --finish $(libdir)
448
449uninstall-local:: uninstall-shared-library
450
451uninstall-shared-library:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000452 @$(ECHO) Uninstalling $(CONFIGURATION) Shared Library $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000453 $(VERB) $(RM) -f $(DestSharedLib)
454
Reid Spencer4d71b662004-10-22 21:01:56 +0000455endif
456
Reid Spencer3a561f52004-10-23 20:04:14 +0000457#---------------------------------------------------------
458# Bytecode Library Targets:
459# If the user asked for a bytecode library to be built
460# with the BYTECODE_LIBRARY variable, then we provide
461# targets for building them.
462#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000463ifdef BYTECODE_LIBRARY
464
465ifdef EXPORTED_SYMBOL_LIST
466 BCLinkLib += -Xlinker -internalize-public-api-list=$(EXPORTED_SYMBOL_LIST)
467else
468 ifdef EXPORTED_SYMBOL_FILE
469 BCLinkLib += -Xlinker -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
470 else
471 BCLinkLib += -Xlinker -disable-internalize
472 endif
473endif
474
Reid Spencer3a561f52004-10-23 20:04:14 +0000475all-local:: $(LIBNAME_BC)
Reid Spencer4d71b662004-10-22 21:01:56 +0000476
477$(LIBNAME_BC): $(BUILT_SOURCES) $(ObjectsBC) $(LIBDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000478 @$(ECHO) Linking $(CONFIGURATION) Bytecode Library $(notdir $@)
Reid Spencer4d71b662004-10-22 21:01:56 +0000479 $(VERB) $(BCLinkLib) -o $@ $(ObjectsBC)
480
Reid Spencer3a561f52004-10-23 20:04:14 +0000481clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000482ifneq ($(strip $(LIBNAME_BC)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000483 $(VERB) $(RM) -f $(LIBNAME_BC)
Reid Spencere5487ba2004-10-24 07:53:21 +0000484endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000485
Reid Spencere5487ba2004-10-24 07:53:21 +0000486DestBytecodeLib = $(bytecode_libdir)/lib$(LIBRARYNAME).bc
Reid Spencere45ebfa2004-10-26 07:09:33 +0000487
Reid Spencere5487ba2004-10-24 07:53:21 +0000488install-local:: install-bytecode-library
Chris Lattner481cc7c2003-08-15 02:18:35 +0000489
Reid Spencere45ebfa2004-10-26 07:09:33 +0000490install-bytecode-library: $(bytecode_libdir) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000491
492$(DestBytecodeLib): $(LIBNAME_BC) $(bytecode_libdir)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000493 @$(ECHO) Installing $(CONFIGURATION) Bytecode Library $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000494 $(VERB) $(INSTALL) $< $@
495
496uninstall-local:: uninstall-bytecode-library
497
498uninstall-bytecode-library:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000499 @$(ECHO) Uninstalling $(CONFIGURATION) Bytecode Library $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000500 $(VERB) $(RM) -f $(DestBytecodeLib)
Reid Spencer4d71b662004-10-22 21:01:56 +0000501
502endif
Vikram S. Adve60f56062002-08-02 18:34:12 +0000503
Chris Lattner760da062003-03-14 20:25:22 +0000504# Does the library want a .o version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000505ifndef DONT_BUILD_RELINKED
Reid Spencer3a561f52004-10-23 20:04:14 +0000506all-local:: $(LIBNAME_O)
Reid Spencer4d71b662004-10-22 21:01:56 +0000507
508$(LIBNAME_O): $(BUILT_SOURCES) $(ObjectsO) $(LIBDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000509 @$(ECHO) Linking $(CONFIGURATION) Object Library $(notdir $@)
Reid Spencer4d71b662004-10-22 21:01:56 +0000510 $(VERB) $(Relink) -o $@ $(ObjectsO)
511
Reid Spencer3a561f52004-10-23 20:04:14 +0000512clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000513ifneq ($(strip $(LIBNAME_O)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000514 $(VERB) $(RM) -f $(LIBNAME_O)
Reid Spencere5487ba2004-10-24 07:53:21 +0000515endif
516
517DestRelinkedLib = $(libdir)/$(LIBRARYNAME).o
518
519install-local:: install-relinked-library
520
Reid Spencere45ebfa2004-10-26 07:09:33 +0000521install-relinked-library: $(libdir) $(DestRelinkedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000522
523$(DestRelinkedLib): $(LIBNAME_O)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000524 @$(ECHO) Installing $(CONFIGURATION) Object Library $(DestRelinkedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000525 $(VERB) $(MKDIR) $(libdir)
526 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_O) $(DestRelinkedLib)
527
528uninstall-local:: uninstall-relinked-library
529
530uninstall-relinked-library:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000531 @$(ECHO) Uninstalling $(CONFIGURATION) Object Library $(DestRelinkedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000532 $(VERB) $(RM) -f $(DestRelinkedLib)
Reid Spencer4d71b662004-10-22 21:01:56 +0000533
Chris Lattnere62dbe92002-07-23 17:56:16 +0000534endif
Chris Lattner760da062003-03-14 20:25:22 +0000535
536# Does the library want an archive version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000537ifdef BUILD_ARCHIVE
Reid Spencer3a561f52004-10-23 20:04:14 +0000538all-local:: $(LIBNAME_A)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000539
Reid Spencer4d71b662004-10-22 21:01:56 +0000540$(LIBNAME_A): $(BUILT_SOURCES) $(ObjectsO) $(LIBDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000541 @$(ECHO) Building $(CONFIGURATION) Archive Library $(notdir $@)
Reid Spencer37130d22004-10-04 07:05:07 +0000542 $(VERB)$(RM) -f $@
Reid Spencer4d71b662004-10-22 21:01:56 +0000543 $(VERB) $(Archive) $@ $(ObjectsO)
544 $(VERB) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +0000545
Reid Spencer3a561f52004-10-23 20:04:14 +0000546clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000547ifneq ($(strip $(LIBNAME_A)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000548 $(VERB) $(RM) -f $(LIBNAME_A)
Chris Lattner00950542001-06-06 20:29:01 +0000549endif
550
Reid Spencere5487ba2004-10-24 07:53:21 +0000551DestArchiveLib := $(libdir)/lib$(LIBRARYNAME).a
552
553install-local:: install-archive-library
554
Reid Spencere45ebfa2004-10-26 07:09:33 +0000555install-archive-library: $(libdir) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000556
557$(DestArchiveLib): $(LIBNAME_A)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000558 @$(ECHO) Installing $(CONFIGURATION) Archive Library $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000559 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_A) $(DestArchiveLib)
560
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000561uninstall-local:: uninstall-archive-library
Reid Spencere5487ba2004-10-24 07:53:21 +0000562
563uninstall-archive-library:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000564 @$(ECHO) Uninstalling $(CONFIGURATION) Archive Library $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000565 $(VERB) $(RM) -f $(DestArchiveLib)
566
567endif
568
569# endif LIBRARYNAME
Reid Spencer4d71b662004-10-22 21:01:56 +0000570endif
571
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000572###############################################################################
573# Tool Build Rules: Build executable tool based on TOOLNAME option
574###############################################################################
575
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000576ifdef TOOLNAME
577
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000578#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000579# TOOLLINKOPTSB to pass options to the linker like library search path etc
580# Note that this is different from TOOLLINKOPTS, these options
581# are passed to the linker *before* the USEDLIBS options are passed.
582# e.g. usage TOOLLINKOPTSB = -L/home/xxx/lib
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000583#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000584ifdef TOOLLINKOPTSB
585Link += $(TOOLLINKOPTSB)
Reid Spencer37130d22004-10-04 07:05:07 +0000586endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000587
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000588# TOOLEXENAME - This is the output filenames to generate
Reid Spencer4d71b662004-10-22 21:01:56 +0000589TOOLEXENAME := $(TOOLDIR)/$(TOOLNAME)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000590
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000591# LIBS_OPTIONS - Compute the options lines that add -llib1 -llib2, etc.
Reid Spencer4d71b662004-10-22 21:01:56 +0000592PROJ_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
593PROJ_LIBS_OPTIONS := $(patsubst %.o, $(LIBDIR)/%.o, $(PROJ_LIBS_OPTIONS))
594LLVM_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
595LLVM_LIBS_OPTIONS := $(patsubst %.o, $(LLVMLIBDIR)/%.o, $(LLVM_LIBS_OPTIONS))
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000596
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000597# USED_LIBS/LIBS_PATHS - Compute dependent library file paths
Reid Spencer4d71b662004-10-22 21:01:56 +0000598PROJ_USED_LIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
599LLVM_USED_LIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
600PROJ_LIBS_PATHS := $(addprefix $(LIBDIR)/,$(PROJ_USED_LIBS))
601LLVM_LIBS_PATHS := $(addprefix $(LLVMLIBDIR)/,$(LLVM_USED_LIBS))
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000602
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000603# Concatenate all the optoins
Reid Spencer4d71b662004-10-22 21:01:56 +0000604LINK_OPTS := $(TOOLLINKOPTS) $(PROJ_LIBS_OPTIONS) $(LLVM_LIBS_OPTIONS)
John Criswellfe785bd2004-09-16 14:11:25 +0000605
Reid Spencer4d71b662004-10-22 21:01:56 +0000606# Handle compression libraries automatically
607ifeq ($(HAVE_BZIP2),1)
608LIBS += -lbz2
609endif
610ifeq ($(HAVE_ZLIB),1)
611LIBS += -lz
612endif
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000613
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000614# Tell make that we need to rebuild subdirectories before we can link the tool.
615# This affects things like LLI which has library subdirectories.
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000616$(TOOLEXENAME): $(addsuffix /.makeall, $(PARALLEL_DIRS))
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000617
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000618all-local:: $(TOOLEXENAME)
John Criswell2a6530f2003-06-27 16:58:44 +0000619
Reid Spencer3a561f52004-10-23 20:04:14 +0000620clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000621ifneq ($(strip $(TOOLEXENAME)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000622 $(VERB) $(RM) -f $(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +0000623endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000624
Reid Spencer4d71b662004-10-22 21:01:56 +0000625$(TOOLEXENAME): $(BUILT_SOURCES) $(ObjectsO) $(PROJ_LIBS_PATHS) $(LLVM_LIBS_PATHS) $(TOOLDIR)/.dir
626 @$(ECHO) Linking $(CONFIGURATION) executable $(TOOLNAME) $(STRIP_WARN_MSG)
627 $(VERB) $(Link) -o $@ $(ObjectsO) $(PROJ_LIBS_OPTIONS) $(LLVM_LIBS_OPTIONS) $(LIBS)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000628 @$(ECHO) ======= Finished Linking $(CONFIGURATION) Executable $(TOOLNAME) $(STRIP_WARN_MSG)
Reid Spencere5487ba2004-10-24 07:53:21 +0000629
630DestTool = $(bindir)/$(TOOLNAME)
631
Reid Spencere45ebfa2004-10-26 07:09:33 +0000632install-local:: install-tool
633
634install-tool: $(bindir) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +0000635
636$(DestTool): $(TOOLEXENAME)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000637 @$(ECHO) Installing $(CONFIGURATION) $(DestTool)
638 $(VERB) $(INSTALL) $(TOOLEXENAME) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +0000639
Reid Spencere45ebfa2004-10-26 07:09:33 +0000640$(bindir):
641 $(VERB) $(MKDIR) $(bindir)
642
Reid Spencere5487ba2004-10-24 07:53:21 +0000643uninstall-local:: uninstall-tool
644
645uninstall-tool:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000646 @$(ECHO) Uninstalling $(CONFIGURATION) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +0000647 $(VERB) $(RM) -f $(DestTool)
648
Reid Spencer4d71b662004-10-22 21:01:56 +0000649endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000650
Reid Spencer4d71b662004-10-22 21:01:56 +0000651ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +0000652
Reid Spencer4d71b662004-10-22 21:01:56 +0000653# Create .lo files in the OBJDIR directory from the .cpp and .c files...
Reid Spencer3a561f52004-10-23 20:04:14 +0000654ifdef SHARED_LIBRARY
655
656$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000657 @$(ECHO) "Compiling $*.cpp (PIC)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000658 $(VERB) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(OBJDIR)/$*.LACXXd $< -o $@ ; \
659 then $(MV) -f "$(OBJDIR)/$*.LACXXd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000660 else $(RM) -f "$(OBJDIR)/$*.LACXXd"; exit 1; fi
Reid Spencer3a561f52004-10-23 20:04:14 +0000661
662$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000663 @$(ECHO) "Compiling $*.c (PIC)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000664 $(VERB) if $(LTCompile.C) -MD -MT $@ -MP -MF $(OBJDIR)/$*.LACd $< -o $@ ; \
665 then $(MV) -f "$(OBJDIR)/$*.LACd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000666 else $(RM) -f "$(OBJDIR)/$*.LACd"; exit 1; fi
Reid Spencer3a561f52004-10-23 20:04:14 +0000667
668else
Reid Spencer4d71b662004-10-22 21:01:56 +0000669
670$(OBJDIR)/%.o: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000671 @$(ECHO) "Compiling $*.cpp"
Reid Spencer3a561f52004-10-23 20:04:14 +0000672 $(VERB) if $(Compile.CXX) -MD -MT $@ -MP -MF $(OBJDIR)/$*.CXXd $< -o $@ ; \
673 then $(MV) -f "$(OBJDIR)/$*.CXXd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000674 else $(RM) -f "$(OBJDIR)/$*.CXXd"; exit 1; fi
Reid Spencer4d71b662004-10-22 21:01:56 +0000675
676$(OBJDIR)/%.o: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000677 @$(ECHO) "Compiling $*.c"
Reid Spencer3a561f52004-10-23 20:04:14 +0000678 $(VERB) if $(Compile.C) -MD -MT $@ -MP -MF $(OBJDIR)/$*.Cd $< -o $@ ; \
679 then $(MV) -f "$(OBJDIR)/$*.Cd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000680 else $(RM) -f "$(OBJDIR)/$*.Cd"; exit 1; fi
Reid Spencer3a561f52004-10-23 20:04:14 +0000681
682endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000683
684# Create .bc files in the OBJDIR directory from .cpp and .c files...
685$(OBJDIR)/%.bc: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000686 @$(ECHO) "Compiling $*.cpp (bytecode)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000687 $(VERB) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(OBJDIR)/$*.BCCXXd" $< -o $@ ; \
688 then $(MV) -f "$(OBJDIR)/$*.BCCXXd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000689 else $(RM) -f "$(OBJDIR)/$*.BCCXXd"; exit 1; fi
Reid Spencer4d71b662004-10-22 21:01:56 +0000690
691$(OBJDIR)/%.bc: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000692 @$(ECHO) "Compiling $*.c (bytecode)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000693 $(VERB) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(OBJDIR)/$*.BCCd" $< -o $@ ; \
694 then $(MV) -f "$(OBJDIR)/$*.BCCd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000695 else $(RM) -f "$(OBJDIR)/$*.BCCd"; exit 1; fi
Reid Spencer4d71b662004-10-22 21:01:56 +0000696
697else
698
Reid Spencer3a561f52004-10-23 20:04:14 +0000699ifdef SHARED_LIBRARY
700
701$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000702 @$(ECHO) "Compiling $*.cpp (PIC)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000703 $(LTCompile.CXX) $< -o $@
704
705$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000706 @$(ECHO) "Compiling $*.cpp (PIC)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000707 $(LTCompile.C) $< -o $@
708
709else
Reid Spencer4d71b662004-10-22 21:01:56 +0000710
711$(OBJDIR)/%.o: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000712 @$(ECHO) "Compiling $*.cpp"
Reid Spencer3a561f52004-10-23 20:04:14 +0000713 $(Compile.CXX) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +0000714
715$(OBJDIR)/%.o: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000716 @$(ECHO) "Compiling $*.cpp"
Reid Spencer3a561f52004-10-23 20:04:14 +0000717 $(Compile.C) $< -o $@
718endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000719
720# Create .bc files in the OBJDIR directory from .cpp and .c files...
721$(OBJDIR)/%.bc: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000722 @$(ECHO) "Compiling $*.cpp (bytecode)"
Reid Spencer4d71b662004-10-22 21:01:56 +0000723 $(BCCompileCPP) $< -o $@
724
725$(OBJDIR)/%.bc: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000726 @$(ECHO) "Compiling $*.c (bytecode)"
Reid Spencer4d71b662004-10-22 21:01:56 +0000727 $(BCCompileC) $< -o $@
Brian Gaeke44909cf2003-12-10 00:26:28 +0000728
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000729endif
730
Reid Spencer4d71b662004-10-22 21:01:56 +0000731$(OBJDIR)/%.bc: %.ll $(OBJDIR)/.dir $(LLVMAS)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000732 @$(ECHO) "Compiling $*.ll"
Chris Lattner481cc7c2003-08-15 02:18:35 +0000733 $(VERB) $(LLVMAS) $< -f -o $@
734
Reid Spencer4d71b662004-10-22 21:01:56 +0000735ifdef TARGET
736
Reid Spencerc64b2b32004-10-23 08:19:37 +0000737TDFILES := $(strip $(wildcard $(BUILD_SRC_DIR)/*.td) $(LLVM_SRC_ROOT)/lib/Target/Target.td)
Reid Spencer16544482004-10-27 04:34:35 +0000738INCFILES := $(filter %.inc,$(BUILT_SOURCES))
Reid Spencer4d71b662004-10-22 21:01:56 +0000739
Reid Spencer16544482004-10-27 04:34:35 +0000740$(INCFILES) : $(TBLGEN) $(TDFILES)
Reid Spencer4d71b662004-10-22 21:01:56 +0000741
Reid Spencer16544482004-10-27 04:34:35 +0000742%GenRegisterNames.inc : %.td
Reid Spencer4d71b662004-10-22 21:01:56 +0000743 @echo "Building $(<F) register names with tblgen"
744 $(VERB) $(TableGen) -gen-register-enums -o $@ $<
745
Reid Spencer16544482004-10-27 04:34:35 +0000746%GenRegisterInfo.h.inc : %.td
Reid Spencer4d71b662004-10-22 21:01:56 +0000747 @echo "Building $(<F) register information header with tblgen"
748 $(VERB) $(TableGen) -gen-register-desc-header -o $@ $<
749
750%GenRegisterInfo.inc : %.td
751 @echo "Building $(<F) register info implementation with tblgen"
752 $(VERB) $(TableGen) -gen-register-desc -o $@ $<
753
754%GenInstrNames.inc : %.td
755 @echo "Building $(<F) instruction names with tblgen"
756 $(VERB) $(TableGen) -gen-instr-enums -o $@ $<
757
758%GenInstrInfo.inc : %.td
759 @echo "Building $(<F) instruction information with tblgen"
760 $(VERB) $(TableGen) -gen-instr-desc -o $@ $<
761
762%GenAsmWriter.inc : %.td
763 @echo "Building $(<F) assembly writer with tblgen"
764 $(VERB) $(TableGen) -gen-asm-writer -o $@ $<
765
766%GenATTAsmWriter.inc : %.td
767 @echo "Building $(<F) AT&T assembly writer with tblgen"
768 $(VERB) $(TableGen) -gen-asm-writer -o $@ $<
769
770%GenIntelAsmWriter.inc : %.td
771 @echo "Building $(<F) Intel assembly writer with tblgen"
772 $(VERB) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
773
774%GenInstrSelector.inc: %.td
775 @echo "Building $(<F) instruction selector with tblgen"
776 $(VERB) $(TableGen) -gen-instr-selector -o $@ $<
777
778%GenCodeEmitter.inc:: %.td
779 @echo "Building $(<F) code emitter with tblgen"
780 $(VERB) $(TableGen) -gen-emitter -o $@ $<
781
Reid Spencer3a561f52004-10-23 20:04:14 +0000782clean-local::
Reid Spencer4d71b662004-10-22 21:01:56 +0000783 $(VERB) rm -f *.inc
784
785endif
Chris Lattner481cc7c2003-08-15 02:18:35 +0000786
Chris Lattnere8996782003-01-16 22:44:19 +0000787#
788# Rules for building lex/yacc files
789#
Reid Spencer3a561f52004-10-23 20:04:14 +0000790LEX_FILES = $(filter %.l, $(SOURCES))
Chris Lattnere8996782003-01-16 22:44:19 +0000791LEX_OUTPUT = $(LEX_FILES:%.l=%.cpp)
Reid Spencer3a561f52004-10-23 20:04:14 +0000792YACC_FILES = $(filter %.y, $(SOURCES))
Chris Lattnere8996782003-01-16 22:44:19 +0000793YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
794.PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT)
795
Chris Lattner00950542001-06-06 20:29:01 +0000796# Create a .cpp source file from a flex input file... this uses sed to cut down
797# on the warnings emited by GCC...
Chris Lattner6d131b42003-01-23 16:33:10 +0000798#
799# The last line is a gross hack to work around flex aparently not being able to
800# resize the buffer on a large token input. Currently, for uninitialized string
801# buffers in LLVM we can generate very long tokens, so this is a hack around it.
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000802# FIXME. (f.e. char Buffer[10000] )
Chris Lattner6d131b42003-01-23 16:33:10 +0000803#
Chris Lattner00950542001-06-06 20:29:01 +0000804%.cpp: %.l
Reid Spencer4d71b662004-10-22 21:01:56 +0000805 @$(ECHO) Flexing $<
Chris Lattner7bb107d2003-08-04 19:48:10 +0000806 $(VERB) $(FLEX) -t $< | \
Reid Spencer4d71b662004-10-22 21:01:56 +0000807 $(SED) '/^find_rule/d' | \
808 $(SED) 's/void yyunput/inline void yyunput/' | \
809 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
810 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
Reid Spencer80f0ef72004-10-28 00:41:43 +0000811 > $@
Chris Lattner00950542001-06-06 20:29:01 +0000812
813# Rule for building the bison parsers...
Chris Lattner694c5df2003-05-15 21:28:55 +0000814%.c: %.y # Cancel built-in rules for yacc
Reid Spencer80f0ef72004-10-28 00:41:43 +0000815%.cpp: %.y # Cancel built-in rules for yacc
Chris Lattner694c5df2003-05-15 21:28:55 +0000816%.h: %.y # Cancel built-in rules for yacc
Chris Lattner00950542001-06-06 20:29:01 +0000817%.cpp %.h : %.y
Reid Spencer4d71b662004-10-22 21:01:56 +0000818 @$(ECHO) "Bisoning $*.y"
John Criswell410d1b52003-09-09 20:57:03 +0000819 $(VERB) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
Reid Spencer80f0ef72004-10-28 00:41:43 +0000820 $(VERB) $(MV) -f $*.tab.c $*.cpp
821 $(VERB) $(MV) -f $*.tab.h $*.h
Chris Lattner00950542001-06-06 20:29:01 +0000822
823# To create the directories...
824%/.dir:
Reid Spencer4d71b662004-10-22 21:01:56 +0000825 $(VERB) $(MKDIR) $* > /dev/null
John Criswell7a73b802003-06-30 21:59:07 +0000826 @$(DATE) > $@
Chris Lattner00950542001-06-06 20:29:01 +0000827
Reid Spencer4d71b662004-10-22 21:01:56 +0000828.PRECIOUS: $(OBJDIR)/.dir $(LIBDIR)/.dir $(TOOLDIR)/.dir $(LLVMLIBDIR)/.dir
829.PRECIOUS: $(LLVMTOOLDIR)/.dir
830
Chris Lattner30440c62003-01-16 21:06:18 +0000831# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +0000832ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +0000833%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +0000834 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +0000835else
836%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +0000837 $(ECHO) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +0000838endif
Chris Lattner30440c62003-01-16 21:06:18 +0000839
John Criswell7f336952003-09-06 14:44:17 +0000840#
841# This rules ensures that header files that are removed still have a rule for
842# which they can be "generated." This allows make to ignore them and
843# reproduce the dependency lists.
844#
John Criswell4b6e5d12003-09-18 18:37:08 +0000845%.h:: ;
John Criswell7f336952003-09-06 14:44:17 +0000846
Chris Lattner172b6482002-09-22 02:47:15 +0000847# 'make clean' nukes the tree
Reid Spencer3a561f52004-10-23 20:04:14 +0000848clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000849ifneq ($(strip $(OBJDIR)),)
Reid Spencer83cbcb92004-10-24 02:26:09 +0000850 $(VERB) $(RM) -rf $(OBJDIR)
Reid Spencere5487ba2004-10-24 07:53:21 +0000851endif
Brian Gaeke9d3cd402004-01-21 19:53:11 +0000852 $(VERB) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
853ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
854 $(VERB) $(RM) -f *$(SHLIBEXT)
855endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000856ifneq ($(strip $(LEX_OUTPUT)),)
857 $(VERB) $(RM) -f $(LEX_OUTPUT)
858endif
859ifneq ($(strip $(YACC_OUTPUT)),)
860 $(VERB) $(RM) -f $(YACC_OUTPUT)
861endif
John Criswell7a73b802003-06-30 21:59:07 +0000862
Reid Spencer3a561f52004-10-23 20:04:14 +0000863###############################################################################
864# DEPENDENCIES: Include the dependency files if we should
865###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +0000866ifndef DISABLE_AUTO_DEPENDENCIES
867
Reid Spencer3a561f52004-10-23 20:04:14 +0000868# If its not one of the cleaning targets
869ifneq ($strip($(filter-out clean clean-local dist-clean, $(MAKECMDGOALS))),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000870
Reid Spencer3a561f52004-10-23 20:04:14 +0000871# Get the list of dependency files
872DependFiles := $(basename $(filter %.cpp %.c %.cc, $(SOURCES)))
873DependFiles := $(patsubst %,$(BUILD_OBJ_DIR)/$(CONFIGURATION)/%.d,$(DependFiles))
Misha Brukman4f7a8cf2003-11-09 21:36:19 +0000874
Reid Spencer3a561f52004-10-23 20:04:14 +0000875-include /dev/null $(DependFiles)
876
John Criswelld741bcf2003-08-12 18:51:51 +0000877endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +0000878
Chris Lattner33ad24a2003-08-22 14:10:16 +0000879endif # ifndef DISABLE_AUTO_DEPENDENCIES
Reid Spencer4d71b662004-10-22 21:01:56 +0000880
Reid Spencer151f8ba2004-10-25 08:27:37 +0000881###############################################################################
882# Handle construction of a distribution tarball
883###############################################################################
884
885.PHONY: dist dist-chck dist-clean distdir dist-gzip dist-bzip2 dist-zip
886
Reid Spencere45ebfa2004-10-26 07:09:33 +0000887#------------------------------------------------------------------------
888# Define distribution related variables
889#------------------------------------------------------------------------
Reid Spencer151f8ba2004-10-25 08:27:37 +0000890DistName := $(LLVM_TARBALL_NAME)
891DistDir := $(BUILD_OBJ_ROOT)/$(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000892TopDistDir := $(BUILD_OBJ_ROOT)/$(DistName)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000893DistTarGZip := $(BUILD_OBJ_ROOT)/$(DistName).tar.gz
894DistZip := $(BUILD_OBJ_ROOT)/$(DistName).zip
895DistTarBZ2 := $(BUILD_OBJ_ROOT)/$(DistName).tar.bz2
896DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
897 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +0000898 Makefile.config.in configure autoconf
899DistOther := $(notdir $(wildcard \
900 $(BUILD_SRC_DIR)/*.h \
901 $(BUILD_SRC_DIR)/*.td \
902 $(BUILD_SRC_DIR)/*.def \
903 $(BUILD_SRC_DIR)/*.ll \
904 $(BUILD_SRC_DIR)/*.in))
905DistSources := $(SOURCES) $(EXTRA_DIST)
906DistSubDirs := $(SUBDIRS)
907DistFiles := $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000908
Reid Spencere45ebfa2004-10-26 07:09:33 +0000909
910#------------------------------------------------------------------------
911# We MUST build distribution with OBJ_DIR != SRC_DIR
912#------------------------------------------------------------------------
913ifeq ($(BUILD_SRC_DIR),$(BUILD_OBJ_DIR))
914dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
915 @$(ECHO) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
916
917DistCheckTop :=
918else
919
920DistCheckTop := check
921#------------------------------------------------------------------------
922# Prevent catastrophic remove
923#------------------------------------------------------------------------
924ifeq ($(LLVM_TARBALL_NAME),)
925$(error LLVM_TARBALL_NAME is empty. Please rerun configure)
926endif
927
928#------------------------------------------------------------------------
929# Prevent attempt to run dist targets from anywhere but the top level
930#------------------------------------------------------------------------
931ifneq ($(LEVEL),.)
932
933dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
934 @$(ECHO) ERROR: You must run $@ from $(BUILD_OBJ_ROOT)
935
936else
937
938#------------------------------------------------------------------------
939# Provide the top level targets
940#------------------------------------------------------------------------
941
942dist-gzip: $(DistTarGZip)
943
944$(DistTarGZip) : distdir
945 @$(ECHO) Packing gzipped distribution tar file.
946 $(VERB) cd $(BUILD_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | gzip -c > "$(DistTarGZip)"
947
948dist-bzip2: $(DistTarBZ2)
949
950$(DistTarBZ2) : distdir
951 @$(ECHO) Packing bzipped distribution tar file.
952 $(VERB) cd $(BUILD_OBJ_ROOT) ; $(TAR) chf - $(DistName) | $(BZIP2) -c >$(DistTarBZ2)
953
954dist-zip: $(DistZip)
955
956$(DistZip) : distdir
957 @$(ECHO) Packing zipped distribution file.
958 $(VERB) rm -f $(DistZip)
959 $(VERB) cd $(BUILD_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
960
961dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
962 @$(ECHO) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
963
964DistCheckDir := $(LLVM_OBJ_ROOT)/_distcheckdir
965
Reid Spencer9411c642004-10-26 22:26:33 +0000966dist-check:: $(DistCheckTop) $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000967 @$(ECHO) Checking distribution tar file.
968 $(VERB) if test -d $(DistCheckDir) ; then \
969 $(RM) -rf $(DistCheckDir) ; \
970 fi
971 $(VERB) $(MKDIR) $(DistCheckDir)
972 $(VERB) cd $(DistCheckDir) && \
973 $(MKDIR) $(DistCheckDir)/build && \
974 $(MKDIR) $(DistCheckDir)/install && \
975 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
976 cd build && \
977 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
978 --srcdir=../$(DistName) --with-llvmgccdir="$(LLVMGCCDIR)" && \
979 $(MAKE) check && \
980 $(MAKE) install && \
981 $(MAKE) uninstall && \
982 $(MAKE) dist && \
983 $(MAKE) clean && \
984 $(MAKE) dist-clean && \
985 $(ECHO) ===== $(DistTarGZip) Ready For Distribution =====
986
987dist-clean::
988 @$(ECHO) Cleaning distribution files
989 $(VERB) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) $(DistCheckDir)
990
991endif
992
993#------------------------------------------------------------------------
994# Provide the recursive distdir target for building the distribution directory
995#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000996distdir : $(DistSources)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000997 @$(ECHO) Building Distribution Directory $(DistDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000998 $(VERB) if test "$(DistDir)" = "$(TopDistDir)" ; then \
999 if test -d "$(DistDir)" ; then \
1000 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1001 exit 1 ; \
1002 fi ; \
1003 echo Removing $(DistDir) ; \
1004 $(RM) -rf $(DistDir); \
1005 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00001006 $(VERB) $(MKDIR) $(DistDir)
1007 $(VERB) srcdirstrip=`echo "$(BUILD_SRC_DIR)" | sed 's|.|.|g'`; \
1008 srcrootstrip=`echo "$(BUILD_SRC_ROOT)" | sed 's|.|.|g'`; \
1009 for file in $(DistFiles) ; do \
1010 case "$$file" in \
1011 $(BUILD_SRC_DIR)/*) file=`echo "$$file" | sed "s#^$$srcdirstrip/##"`;; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001012 $(BUILD_SRC_ROOT)/*) file=`echo "$$file" | sed "s#^$$srcrootstrip/#$(BUILD_OBJ_ROOT)/#"`;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001013 esac; \
1014 if test -f "$$file" || test -d "$$file" ; then \
1015 from_dir=. ; \
1016 else \
1017 from_dir=$(BUILD_SRC_DIR); \
1018 fi; \
1019 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'`; \
1020 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1021 to_dir="$(DistDir)/$$dir"; \
1022 $(MKDIR) "$$to_dir" ; \
1023 else \
1024 to_dir="$(DistDir)"; \
1025 fi; \
1026 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1027 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001028 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001029 fi ; \
1030 if test -d "$$from_dir/$$file"; then \
1031 if test -d "$(BUILD_SRC_DIR)/$$file" && \
1032 test "$$from_dir" != "$(BUILD_SRC_DIR)" ; then \
1033 cp -pR "$(BUILD_SRC_DIR)/$$file" "$$to_dir" || exit 1; \
1034 fi; \
1035 cp -pR $$from_dir/$$file $$to_dir || exit 1; \
1036 elif test -f "$$from_dir/$$file" ; then \
1037 cp -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1038 elif test -L "$$from_dir/$$file" ; then \
1039 cp -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1040 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1041 $(ECHO) "===== WARNING: Distribution Source $$from_dir/$$file Not Found!" ; \
1042 elif test "$(VERB)" != '@' ; then \
1043 $(ECHO) "Skipping non-existent $$from_dir/$$file" ; \
1044 fi; \
1045 done
Reid Spencere45ebfa2004-10-26 07:09:33 +00001046 $(VERB) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001047 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001048 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001049 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1050 ( cd $$subdir && $(MAKE) DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001051 fi; \
1052 done
Reid Spencere45ebfa2004-10-26 07:09:33 +00001053 $(VERB) $(MAKE) DistDir="$(DistDir)" dist-hook || exit 1
Reid Spencer151f8ba2004-10-25 08:27:37 +00001054 -$(VERB) find $(DistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
1055 ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
1056 ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
1057 ! -type d ! -perm -444 -exec $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1058 || chmod -R a+r $(DistDir)
1059
1060dist-hook::
1061
1062
Reid Spencere53e3972004-10-22 23:06:30 +00001063endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001064
1065###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00001066# TOP LEVEL - targets only to apply at the top level directory
1067###############################################################################
1068
1069ifeq ($(LEVEL),.)
1070
1071#------------------------------------------------------------------------
Reid Spencere5487ba2004-10-24 07:53:21 +00001072# Install support for project's include files:
1073#------------------------------------------------------------------------
1074install-local::
1075 @$(ECHO) Installing include files
1076 $(VERB) $(MKDIR) $(includedir)
1077 $(VERB) if [ -d "$(BUILD_SRC_ROOT)/include" ] ; then \
1078 cd $(BUILD_SRC_ROOT)/include && \
1079 find . -path '*/Internal' -prune -o '(' -type f \
1080 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' ')' \
1081 -print ')' | grep -v CVS | pax -rwdvpe $(includedir) ; \
1082 fi
1083
1084uninstall-local::
1085 @$(ECHO) Uninstalling include files
1086 $(VERB) if [ -d "$(BUILD_SRC_ROOT)/include" ] ; then \
1087 cd $(BUILD_SRC_ROOT)/include && \
1088 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1089 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' ')' \
1090 -print ')' | grep -v CVS | sed 's#^#$(includedir)/#'` ; \
1091 fi
1092
1093#------------------------------------------------------------------------
1094# Build tags database for Emacs/Xemacs:
1095#------------------------------------------------------------------------
Reid Spencer151f8ba2004-10-25 08:27:37 +00001096tags:: TAGS
Reid Spencere5487ba2004-10-24 07:53:21 +00001097
Reid Spencer151f8ba2004-10-25 08:27:37 +00001098TAGS:
Reid Spencere5487ba2004-10-24 07:53:21 +00001099 find include lib tools examples -name '*.cpp' -o -name '*.h' | $(ETAGS) $(ETAGSFLAGS) -
1100
Reid Spencere5487ba2004-10-24 07:53:21 +00001101endif
1102
1103###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001104# MISCELLANEOUS - utility targets
1105###############################################################################
1106
1107#------------------------------------------------------------------------
1108# Print out the directories used for building
Reid Spencer3a561f52004-10-23 20:04:14 +00001109printvars::
Reid Spencer9411c642004-10-26 22:26:33 +00001110 @$(ECHO) "CONFIGURATION : " $(CONFIGURATION)
Reid Spencer4d71b662004-10-22 21:01:56 +00001111 @$(ECHO) "BUILD_SRC_ROOT: " $(BUILD_SRC_ROOT)
1112 @$(ECHO) "BUILD_SRC_DIR : " $(BUILD_SRC_DIR)
1113 @$(ECHO) "BUILD_OBJ_ROOT: " $(BUILD_OBJ_ROOT)
1114 @$(ECHO) "BUILD_OBJ_DIR : " $(BUILD_OBJ_DIR)
1115 @$(ECHO) "LLVM_SRC_ROOT : " $(LLVM_SRC_ROOT)
1116 @$(ECHO) "LLVM_OBJ_ROOT : " $(LLVM_OBJ_ROOT)
Reid Spencer9411c642004-10-26 22:26:33 +00001117 @$(ECHO) "libdir : " $(libdir)
1118 @$(ECHO) "bindir : " $(bindir)
1119 @$(ECHO) "sysconfdir : " $(sysconfdir)
1120 @$(ECHO) "bytecode_libdir : " $(bytecode_libdir)
1121 @$(ECHO) "USER_TARGETS : " $(USER_TARGETS)
1122 @$(ECHO) "OBJMKFILES: $(OBJMKFILES)"
1123 @$(ECHO) "SRCMKFILES: $(SRCMKFILES)"
Reid Spencer4d71b662004-10-22 21:01:56 +00001124 @$(ECHO) "OBJDIR: " $(OBJDIR)
1125 @$(ECHO) "LIBDIR: " $(LIBDIR)
1126 @$(ECHO) "TOOLDIR: " $(TOOLDIR)
1127 @$(ECHO) "TDFILES:" '$(TDFILES)'
Reid Spencer3a561f52004-10-23 20:04:14 +00001128 @$(ECHO) "Compile.CXX: " '$(Compile.CXX)'
1129 @$(ECHO) "Compile.C: " '$(Compile.C)'
Reid Spencere5487ba2004-10-24 07:53:21 +00001130