blob: 3df4811bf89371a751f0e6963bd1c2f8d1a866c5 [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 Spencer86606782004-10-26 23:10:00 +000064SRCMKFILES := $(filter-out Makefile.rules %.in,\
65 $(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
85#------------------------------------------------------------------------
86# Make sure we're not using a stale configuration
87#------------------------------------------------------------------------
88.PRECIOUS: $(CONFIG_STATUS)
89$(CONFIG_STATUS): $(CONFIGURE)
90 @$(ECHO) Reconfiguring with $<
91 $(VERB) $(CONFIG_STATUS) --recheck $(CONFIGUREFLAGS)
92
93#------------------------------------------------------------------------
94# Make sure the configuration makefile is up to date
95#------------------------------------------------------------------------
96$(MAKE_CONFIG): $(MAKE_CONFIG_IN) $(CONFIG_STATUS)
97 @$(ECHO) Regenerating $@
98 $(VERB) cd $(LLVM_OBJ_ROOT) ; $(CONFIG_STATUS) Makefile.config
99
100#------------------------------------------------------------------------
101# If the Makefile in the source tree has been updated, copy it over into the
102# build tree. But, only do this if the source and object makefiles differ
103#------------------------------------------------------------------------
104ifneq ($(BUILD_OBJ_DIR),$(BUILD_SRC_DIR))
105
106$(BUILD_OBJ_DIR)/Makefile : $(BUILD_SRC_DIR)/Makefile
107 @$(ECHO) "Updating Makefile"
108 $(VERB) $(MKDIR) $(@D)
109 $(VERB) cp -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000110
111# Copy the Makefile.* files unless we're in the root directory which avoids
112# the copying of Makefile.config.in or other things that should be explicitly
113# taken care of.
Reid Spencer9411c642004-10-26 22:26:33 +0000114$(BUILD_OBJ_DIR)/Makefile% : $(BUILD_SRC_DIR)/Makefile%
Reid Spencer86606782004-10-26 23:10:00 +0000115 @case '$?' in \
116 *Makefile.rules) ;; \
117 *.in) ;; \
118 *) $(ECHO) "Updating $(@F)" ; \
119 $(MKDIR) $(@D) ; \
120 cp -f $< $@ ;; \
121 esac
122
Reid Spencer9411c642004-10-26 22:26:33 +0000123endif
124
125#------------------------------------------------------------------------
126# Set up the basic dependencies
127#------------------------------------------------------------------------
128$(USER_TARGETS):: $(PRECONDITIONS)
129
130all:: all-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000131check:: check-local
132clean:: clean-local
Reid Spencer9411c642004-10-26 22:26:33 +0000133install:: install-local
134uninstall:: uninstall-local
135check-local:: all-local
136install-local:: all-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000137
138###############################################################################
139# VARIABLES: Set up various variables based on configuration data
140###############################################################################
141
142#--------------------------------------------------------------------
143# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000144#--------------------------------------------------------------------
145
Chris Lattner760da062003-03-14 20:25:22 +0000146ifdef ENABLE_PROFILING
Chris Lattner760da062003-03-14 20:25:22 +0000147 CONFIGURATION := Profile
Reid Spencer4d71b662004-10-22 21:01:56 +0000148 CXXFLAGS += -O3 -DNDEBUG -felide-constructors -finline-functions -pg
149 CFLAGS += -O3 -DNDEBUG -pg
150 LDFLAGS += -O3 -DNDEBUG -pg
Chris Lattner760da062003-03-14 20:25:22 +0000151else
152 ifdef ENABLE_OPTIMIZED
153 CONFIGURATION := Release
Reid Spencer4d71b662004-10-22 21:01:56 +0000154 CXXFLAGS += -O3 -DNDEBUG -finline-functions -felide-constructors -fomit-frame-pointer
155 CFLAGS += -O3 -DNDEBUG -fomit-frame-pointer
156 LDFLAGS += -O3 -DNDEBUG
Chris Lattner760da062003-03-14 20:25:22 +0000157 else
158 CONFIGURATION := Debug
Reid Spencer4d71b662004-10-22 21:01:56 +0000159 CXXFLAGS += -g -D_DEBUG
160 CFLAGS += -g -D_DEBUG
161 LDFLAGS += -g -D_DEBUG
162 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000163 endif
164endif
165
Reid Spencer4d71b662004-10-22 21:01:56 +0000166ARFLAGS := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000167
168#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000169# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000170#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000171OBJDIR := $(BUILD_OBJ_DIR)/$(CONFIGURATION)
172LIBDIR := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
173TOOLDIR := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
174LLVMLIBDIR := $(LLVM_OBJ_ROOT)/lib/$(CONFIGURATION)
175LLVMTOOLDIR := $(LLVM_OBJ_ROOT)/tools/$(CONFIGURATION)
John Criswell7a73b802003-06-30 21:59:07 +0000176
Reid Spencer3a561f52004-10-23 20:04:14 +0000177#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000178# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000179#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000180LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
181LLVMAS := $(LLVMTOOLDIR)/llvm-as$(EXEEXT)
182BURG := $(LLVMTOOLDIR)/burg$(EXEEXT)
183TBLGEN := $(LLVMTOOLDIR)/tblgen$(EXEEXT)
184GCCLD := $(LLVMTOOLDIR)/gccld$(EXEEXT)
185LLVMGCC := PATH=$(LLVMTOOLDIR):$(PATH) $(LLVMGCCDIR)/bin/gcc
186LLVMGXX := PATH=$(LLVMTOOLDIR):$(PATH) $(LLVMGCCDIR)/bin/g++
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000187
Reid Spencer4d71b662004-10-22 21:01:56 +0000188# Need a better way to compute this.
189LLVMGCCLIBDIR := $(dir $(shell $(LLVMGCC) -print-file-name=libgcc.a))/
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000190
Reid Spencer3a561f52004-10-23 20:04:14 +0000191#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000192# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000193#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000194
Reid Spencer3a561f52004-10-23 20:04:14 +0000195# Adjust LIBTOOL options for shared libraries, or not.
John Criswell82f4a5a2003-07-31 20:58:51 +0000196ifndef SHARED_LIBRARY
Reid Spencer4d71b662004-10-22 21:01:56 +0000197 LIBTOOL += --tag=disable-shared
198else
199 LDFLAGS += -rpath $(LIBDIR)
John Criswell82f4a5a2003-07-31 20:58:51 +0000200endif
201
Reid Spencer3a561f52004-10-23 20:04:14 +0000202# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000203ifndef VERBOSE
Reid Spencer4d71b662004-10-22 21:01:56 +0000204 VERB := @
205 LIBTOOL += --silent
206 AR += >/dev/null 2>/dev/null
Reid Spencer151f8ba2004-10-25 08:27:37 +0000207 CONFIGUREFLAGS += >$(BUILD_OBJ_DIR)/configure.out 2>&1
208else
209 CONFIGUREFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000210endif
211
Vikram S. Advefeeae582002-09-18 11:55:13 +0000212# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000213ifndef KEEP_SYMBOLS
Reid Spencer4d71b662004-10-22 21:01:56 +0000214 STRIP = $(PLATFORMSTRIPOPTS)
215 STRIP_WARN_MSG = "(without symbols)"
Vikram S. Advefeeae582002-09-18 11:55:13 +0000216endif
217
Reid Spencer3a561f52004-10-23 20:04:14 +0000218# Adjust linker flags for building an executable
Reid Spencer4d71b662004-10-22 21:01:56 +0000219ifdef TOOLNAME
220 LDFLAGS += -rpath $(TOOLDIR) -export-dynamic $(TOOLLINKOPTS)
221endif
Chris Lattner00950542001-06-06 20:29:01 +0000222
Reid Spencer3a561f52004-10-23 20:04:14 +0000223# Use TOOLLINKOPTSB to pass options to the linker like library search
224# path etc.
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000225# Note that this is different from TOOLLINKOPTS, these options
226# are passed to the linker *before* the USEDLIBS options are passed.
227# e.g. usage TOOLLINKOPTSB = -L/home/xxx/lib
228ifdef TOOLLINKOPTSB
Reid Spencer4d71b662004-10-22 21:01:56 +0000229LDFLAGS += $(TOOLLINKOPTSB)
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000230endif
231
Reid Spencer3a561f52004-10-23 20:04:14 +0000232#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000233# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000234#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000235
236CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused
237
Reid Spencer3a561f52004-10-23 20:04:14 +0000238LDFLAGS += -L$(LIBDIR) -L$(LLVMLIBDIR)
Reid Spencer4d71b662004-10-22 21:01:56 +0000239CPPFLAGS += -I$(BUILD_OBJ_DIR) \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000240 -I$(BUILD_SRC_DIR) \
241 -I$(BUILD_SRC_ROOT)/include \
242 -I$(BUILD_OBJ_ROOT)/include \
243 -I$(LLVM_OBJ_ROOT)/include \
244 -I$(LLVM_SRC_ROOT)/include \
245 -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
Reid Spencer4d71b662004-10-22 21:01:56 +0000246
Reid Spencer3a561f52004-10-23 20:04:14 +0000247Compile.C = $(CC) $(CPPFLAGS) $(CompileCommonOpts) -c $(CFLAGS)
248Compile.CXX = $(CXX) $(CPPFLAGS) $(CompileCommonOpts) $(CXXFLAGS) -c
249LTCompile.C = $(LIBTOOL) --mode=compile $(Compile.C)
250LTCompile.CXX = $(LIBTOOL) --tag=CXX --mode=compile $(Compile.CXX)
251BCCompile.CXX = $(LLVMGXX) $(CPPFLAGS) $(CompileCommonOpts) $(CXXFLAGS) -c
252BCCompile.C = $(LLVMGCC) $(CPPFLAGS) $(CompileCommonOpts) $(CFLAGS) -c
253Link = $(LIBTOOL) --tag=CXX --mode=link $(CXX) $(CPPFLAGS) \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000254 $(CompileCommonOpts) $(LDFLAGS) $(STRIP)
Reid Spencer3a561f52004-10-23 20:04:14 +0000255Relink = $(LIBTOOL) --tag=CXX --mode=link $(CXX)
256BCLinkLib = $(LLVMGCC) -shared -nostdlib
257Burg = $(BURG) -I $(BUILD_SRC_DIR)
258TableGen = $(TBLGEN) -I $(BUILD_SRC_DIR)
259Archive = $(AR) $(ARFLAGS)
Reid Spencer4d71b662004-10-22 21:01:56 +0000260ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000261Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000262else
Reid Spencer3a561f52004-10-23 20:04:14 +0000263Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000264endif
265
Chris Lattner00950542001-06-06 20:29:01 +0000266#----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000267# Get the list of source files
268#----------------------------------------------------------
269ifndef SOURCES
270SOURCES := $(notdir $(wildcard $(BUILD_SRC_DIR)/*.cpp \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000271 $(BUILD_SRC_DIR)/*.cc $(BUILD_SRC_DIR)/*.c $(BUILD_SRC_DIR)/*.y \
272 $(BUILD_SRC_DIR)/*.l))
Reid Spencer4d71b662004-10-22 21:01:56 +0000273endif
274
275ifdef BUILT_SOURCES
Reid Spencer3a561f52004-10-23 20:04:14 +0000276SOURCES += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
Vikram S. Advead9ea7e2002-10-14 16:40:04 +0000277endif
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000278
Reid Spencer3a561f52004-10-23 20:04:14 +0000279#----------------------------------------------------------
280# Types of objects that can be built from sources
281#----------------------------------------------------------
282BASENAME_SOURCES := $(sort $(basename $(SOURCES)))
283ObjectsO := $(BASENAME_SOURCES:%=$(OBJDIR)/%.o)
284ObjectsLO := $(BASENAME_SOURCES:%=$(OBJDIR)/%.lo)
285ObjectsBC := $(BASENAME_SOURCES:%=$(OBJDIR)/%.bc)
286
287
288###############################################################################
289# DIRECTORIES: Handle recursive descent of directory structure
290###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000291
Chris Lattner00950542001-06-06 20:29:01 +0000292#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000293# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000294#---------------------------------------------------------
295
Reid Spencer151f8ba2004-10-25 08:27:37 +0000296SUBDIRS :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000297ifdef DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000298SUBDIRS += $(DIRS)
Reid Spencer3a561f52004-10-23 20:04:14 +0000299$(RECURSIVE_TARGETS)::
Reid Spencer4d71b662004-10-22 21:01:56 +0000300 $(VERB) for dir in $(DIRS); do \
301 if [ ! -f $$dir/Makefile ]; then \
302 $(MKDIR) $$dir; \
303 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
304 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000305 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000306 done
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000307endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000308
Reid Spencer3a561f52004-10-23 20:04:14 +0000309#---------------------------------------------------------
310# Handle the EXPERIMENTAL_DIRS options ensuring success
311# after each directory is built.
312#---------------------------------------------------------
313ifdef EXPERIMENTAL_DIRS
314$(RECURSIVE_TARGETS)::
315 $(VERB) for dir in $(EXPERIMENTAL_DIRS); do \
316 if [ ! -f $$dir/Makefile ]; then \
317 $(MKDIR) $$dir; \
318 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
319 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000320 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000321 done
322endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000323
Reid Spencer3a561f52004-10-23 20:04:14 +0000324#---------------------------------------------------------
325# Handle the PARALLEL_DIRS options for parallel construction
326#---------------------------------------------------------
327ifdef PARALLEL_DIRS
328
Reid Spencer151f8ba2004-10-25 08:27:37 +0000329SUBDIRS += $(PARALLEL_DIRS)
Reid Spencer3a561f52004-10-23 20:04:14 +0000330# Unfortunately, this list must be maintained if new
331# recursive targets are added.
332all :: $(addsuffix /.makeall , $(PARALLEL_DIRS))
333clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS))
334check :: $(addsuffix /.makecheck , $(PARALLEL_DIRS))
335install :: $(addsuffix /.makeinstall , $(PARALLEL_DIRS))
336uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
337
338Parallel_Targets := $(foreach T,$(RECURSIVE_TARGETS),%/.make$(T))
339
340$(Parallel_Targets) :
Reid Spencer4d71b662004-10-22 21:01:56 +0000341 $(VERB) if [ ! -f $(@D)/Makefile ]; then \
342 $(MKDIR) $(@D); \
343 cp $(BUILD_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000344 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000345 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000346endif
347
Reid Spencer3a561f52004-10-23 20:04:14 +0000348#---------------------------------------------------------
349# Handle the OPTIONAL_DIRS options for directores that may
350# or may not exist.
351#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000352ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000353
354SUBDIRS += $(OPTIONAL_DIRS)
355
Reid Spencer3a561f52004-10-23 20:04:14 +0000356$(RECURSIVE_TARGETS)::
Reid Spencer4d71b662004-10-22 21:01:56 +0000357 $(VERB) for dir in $(OPTIONAL_DIRS); do \
358 if [ -d $(BUILD_SRC_DIR)/$$dir ]; then\
359 if [ ! -f $$dir/Makefile ]; then \
360 $(MKDIR) $$dir; \
361 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
362 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000363 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000364 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000365 done
366endif
367
Reid Spencerfc945082004-08-20 09:20:05 +0000368#---------------------------------------------------------
369# Handle the CONFIG_FILES options
370#---------------------------------------------------------
371ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000372
Reid Spencere5487ba2004-10-24 07:53:21 +0000373install-local:: install-config-dir
Reid Spencer3a561f52004-10-23 20:04:14 +0000374
375install-config-dir: $(sysconfdir) $(CONFIG_FILES)
Reid Spencer37130d22004-10-04 07:05:07 +0000376 $(VERB)$(ECHO) Installing Configuration Files To $(sysconfdir)
377 $(VERB)for file in $(CONFIG_FILES); do \
Reid Spencer4d71b662004-10-22 21:01:56 +0000378 $(INSTALL) $(BUILD_SRC_DIR)/$${file} $(sysconfdir) ; \
Reid Spencerfc945082004-08-20 09:20:05 +0000379 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000380
Reid Spencere5487ba2004-10-24 07:53:21 +0000381uninstall-local:: uninstall-config-dir
382
383uninstall-config-dir:
384 $(VERB)$(ECHO) Uninstalling Configuration Files From $(sysconfdir)
385 $(VERB)for file in $(CONFIG_FILES); do \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000386 $(RM) -f $(sysconfdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000387 done
388
Reid Spencer3a561f52004-10-23 20:04:14 +0000389$(sysconfdir):
Reid Spencer9411c642004-10-26 22:26:33 +0000390 $(VERB) $(MKDIR) $(sysconfdir)
Reid Spencer3a561f52004-10-23 20:04:14 +0000391
Reid Spencerfc945082004-08-20 09:20:05 +0000392endif
393
Reid Spencer3a561f52004-10-23 20:04:14 +0000394###############################################################################
395# Library Build Rules: Four ways to build a library
396###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000397
Reid Spencere45ebfa2004-10-26 07:09:33 +0000398$(libdir):
399 $(VERB) $(MKDIR) $(libdir)
400
401$(bytecode_libdir):
402 $(VERB) $(MKDIR) $(bytecode_libdir)
403
404
Brian Gaeke8abff792004-01-22 22:53:48 +0000405
Reid Spencer3a561f52004-10-23 20:04:14 +0000406# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +0000407ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000408
Chris Lattner2a548c52002-09-16 22:36:42 +0000409# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000410LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer4d71b662004-10-22 21:01:56 +0000411LIBNAME_LA := $(LIBDIR)/lib$(LIBRARYNAME).la
412LIBNAME_A := $(LIBDIR)/lib$(LIBRARYNAME).a
413LIBNAME_O := $(LIBDIR)/$(LIBRARYNAME).o
414LIBNAME_BC := $(LIBDIR)/lib$(LIBRARYNAME).bc
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000415
Reid Spencer3a561f52004-10-23 20:04:14 +0000416#---------------------------------------------------------
417# Shared Library Targets:
418# If the user asked for a shared library to be built
419# with the SHARED_LIBRARY variable, then we provide
420# targets for building them.
421#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000422ifdef SHARED_LIBRARY
423
Reid Spencer3a561f52004-10-23 20:04:14 +0000424all-local:: $(LIBNAME_LA)
Reid Spencer4d71b662004-10-22 21:01:56 +0000425
426$(LIBNAME_LA): $(BUILT_SOURCES) $(ObjectsLO) $(LIBDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000427 @$(ECHO) Linking $(CONFIGURATION) Shared Library $(notdir $@)
Reid Spencer4d71b662004-10-22 21:01:56 +0000428 $(VERB) $(Link) -o $@ $(ObjectsLO)
429 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $@ $(LIBDIR)
Reid Spencer3a561f52004-10-23 20:04:14 +0000430
431clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000432ifneq ($(strip $(LIBNAME_LA)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000433 $(VERB) $(RM) -f $(LIBNAME_LA)
Reid Spencere5487ba2004-10-24 07:53:21 +0000434endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000435
Reid Spencere5487ba2004-10-24 07:53:21 +0000436DestSharedLib = $(libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
437install-local:: install-shared-library
Reid Spencer4d71b662004-10-22 21:01:56 +0000438
Reid Spencere45ebfa2004-10-26 07:09:33 +0000439install-shared-library: $(libdir) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000440
441$(DestSharedLib): $(LIBNAME_LA)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000442 @$(ECHO) Installing $(CONFIGURATION) Shared Library $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000443 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_LA) $(DestSharedLib)
444 $(VERB) $(LIBTOOL) --finish $(libdir)
445
446uninstall-local:: uninstall-shared-library
447
448uninstall-shared-library:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000449 @$(ECHO) Uninstalling $(CONFIGURATION) Shared Library $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000450 $(VERB) $(RM) -f $(DestSharedLib)
451
Reid Spencer4d71b662004-10-22 21:01:56 +0000452endif
453
Reid Spencer3a561f52004-10-23 20:04:14 +0000454#---------------------------------------------------------
455# Bytecode Library Targets:
456# If the user asked for a bytecode library to be built
457# with the BYTECODE_LIBRARY variable, then we provide
458# targets for building them.
459#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000460ifdef BYTECODE_LIBRARY
461
462ifdef EXPORTED_SYMBOL_LIST
463 BCLinkLib += -Xlinker -internalize-public-api-list=$(EXPORTED_SYMBOL_LIST)
464else
465 ifdef EXPORTED_SYMBOL_FILE
466 BCLinkLib += -Xlinker -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
467 else
468 BCLinkLib += -Xlinker -disable-internalize
469 endif
470endif
471
Reid Spencer3a561f52004-10-23 20:04:14 +0000472all-local:: $(LIBNAME_BC)
Reid Spencer4d71b662004-10-22 21:01:56 +0000473
474$(LIBNAME_BC): $(BUILT_SOURCES) $(ObjectsBC) $(LIBDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000475 @$(ECHO) Linking $(CONFIGURATION) Bytecode Library $(notdir $@)
Reid Spencer4d71b662004-10-22 21:01:56 +0000476 $(VERB) $(BCLinkLib) -o $@ $(ObjectsBC)
477
Reid Spencer3a561f52004-10-23 20:04:14 +0000478clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000479ifneq ($(strip $(LIBNAME_BC)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000480 $(VERB) $(RM) -f $(LIBNAME_BC)
Reid Spencere5487ba2004-10-24 07:53:21 +0000481endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000482
Reid Spencere5487ba2004-10-24 07:53:21 +0000483DestBytecodeLib = $(bytecode_libdir)/lib$(LIBRARYNAME).bc
Reid Spencere45ebfa2004-10-26 07:09:33 +0000484
Reid Spencere5487ba2004-10-24 07:53:21 +0000485install-local:: install-bytecode-library
Chris Lattner481cc7c2003-08-15 02:18:35 +0000486
Reid Spencere45ebfa2004-10-26 07:09:33 +0000487install-bytecode-library: $(bytecode_libdir) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000488
489$(DestBytecodeLib): $(LIBNAME_BC) $(bytecode_libdir)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000490 @$(ECHO) Installing $(CONFIGURATION) Bytecode Library $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000491 $(VERB) $(INSTALL) $< $@
492
493uninstall-local:: uninstall-bytecode-library
494
495uninstall-bytecode-library:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000496 @$(ECHO) Uninstalling $(CONFIGURATION) Bytecode Library $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000497 $(VERB) $(RM) -f $(DestBytecodeLib)
Reid Spencer4d71b662004-10-22 21:01:56 +0000498
499endif
Vikram S. Adve60f56062002-08-02 18:34:12 +0000500
Chris Lattner760da062003-03-14 20:25:22 +0000501# Does the library want a .o version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000502ifndef DONT_BUILD_RELINKED
Reid Spencer3a561f52004-10-23 20:04:14 +0000503all-local:: $(LIBNAME_O)
Reid Spencer4d71b662004-10-22 21:01:56 +0000504
505$(LIBNAME_O): $(BUILT_SOURCES) $(ObjectsO) $(LIBDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000506 @$(ECHO) Linking $(CONFIGURATION) Object Library $(notdir $@)
Reid Spencer4d71b662004-10-22 21:01:56 +0000507 $(VERB) $(Relink) -o $@ $(ObjectsO)
508
Reid Spencer3a561f52004-10-23 20:04:14 +0000509clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000510ifneq ($(strip $(LIBNAME_O)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000511 $(VERB) $(RM) -f $(LIBNAME_O)
Reid Spencere5487ba2004-10-24 07:53:21 +0000512endif
513
514DestRelinkedLib = $(libdir)/$(LIBRARYNAME).o
515
516install-local:: install-relinked-library
517
Reid Spencere45ebfa2004-10-26 07:09:33 +0000518install-relinked-library: $(libdir) $(DestRelinkedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000519
520$(DestRelinkedLib): $(LIBNAME_O)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000521 @$(ECHO) Installing $(CONFIGURATION) Object Library $(DestRelinkedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000522 $(VERB) $(MKDIR) $(libdir)
523 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_O) $(DestRelinkedLib)
524
525uninstall-local:: uninstall-relinked-library
526
527uninstall-relinked-library:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000528 @$(ECHO) Uninstalling $(CONFIGURATION) Object Library $(DestRelinkedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000529 $(VERB) $(RM) -f $(DestRelinkedLib)
Reid Spencer4d71b662004-10-22 21:01:56 +0000530
Chris Lattnere62dbe92002-07-23 17:56:16 +0000531endif
Chris Lattner760da062003-03-14 20:25:22 +0000532
533# Does the library want an archive version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000534ifdef BUILD_ARCHIVE
Reid Spencer3a561f52004-10-23 20:04:14 +0000535all-local:: $(LIBNAME_A)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000536
Reid Spencer4d71b662004-10-22 21:01:56 +0000537$(LIBNAME_A): $(BUILT_SOURCES) $(ObjectsO) $(LIBDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000538 @$(ECHO) Building $(CONFIGURATION) Archive Library $(notdir $@)
Reid Spencer37130d22004-10-04 07:05:07 +0000539 $(VERB)$(RM) -f $@
Reid Spencer4d71b662004-10-22 21:01:56 +0000540 $(VERB) $(Archive) $@ $(ObjectsO)
541 $(VERB) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +0000542
Reid Spencer3a561f52004-10-23 20:04:14 +0000543clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000544ifneq ($(strip $(LIBNAME_A)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000545 $(VERB) $(RM) -f $(LIBNAME_A)
Chris Lattner00950542001-06-06 20:29:01 +0000546endif
547
Reid Spencere5487ba2004-10-24 07:53:21 +0000548DestArchiveLib := $(libdir)/lib$(LIBRARYNAME).a
549
550install-local:: install-archive-library
551
Reid Spencere45ebfa2004-10-26 07:09:33 +0000552install-archive-library: $(libdir) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000553
554$(DestArchiveLib): $(LIBNAME_A)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000555 @$(ECHO) Installing $(CONFIGURATION) Archive Library $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000556 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_A) $(DestArchiveLib)
557
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000558uninstall-local:: uninstall-archive-library
Reid Spencere5487ba2004-10-24 07:53:21 +0000559
560uninstall-archive-library:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000561 @$(ECHO) Uninstalling $(CONFIGURATION) Archive Library $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000562 $(VERB) $(RM) -f $(DestArchiveLib)
563
564endif
565
566# endif LIBRARYNAME
Reid Spencer4d71b662004-10-22 21:01:56 +0000567endif
568
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000569###############################################################################
570# Tool Build Rules: Build executable tool based on TOOLNAME option
571###############################################################################
572
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000573ifdef TOOLNAME
574
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000575#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000576# TOOLLINKOPTSB to pass options to the linker like library search path etc
577# Note that this is different from TOOLLINKOPTS, these options
578# are passed to the linker *before* the USEDLIBS options are passed.
579# e.g. usage TOOLLINKOPTSB = -L/home/xxx/lib
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000580#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000581ifdef TOOLLINKOPTSB
582Link += $(TOOLLINKOPTSB)
Reid Spencer37130d22004-10-04 07:05:07 +0000583endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000584
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000585# TOOLEXENAME - This is the output filenames to generate
Reid Spencer4d71b662004-10-22 21:01:56 +0000586TOOLEXENAME := $(TOOLDIR)/$(TOOLNAME)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000587
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000588# LIBS_OPTIONS - Compute the options lines that add -llib1 -llib2, etc.
Reid Spencer4d71b662004-10-22 21:01:56 +0000589PROJ_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
590PROJ_LIBS_OPTIONS := $(patsubst %.o, $(LIBDIR)/%.o, $(PROJ_LIBS_OPTIONS))
591LLVM_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
592LLVM_LIBS_OPTIONS := $(patsubst %.o, $(LLVMLIBDIR)/%.o, $(LLVM_LIBS_OPTIONS))
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000593
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000594# USED_LIBS/LIBS_PATHS - Compute dependent library file paths
Reid Spencer4d71b662004-10-22 21:01:56 +0000595PROJ_USED_LIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
596LLVM_USED_LIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
597PROJ_LIBS_PATHS := $(addprefix $(LIBDIR)/,$(PROJ_USED_LIBS))
598LLVM_LIBS_PATHS := $(addprefix $(LLVMLIBDIR)/,$(LLVM_USED_LIBS))
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000599
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000600# Concatenate all the optoins
Reid Spencer4d71b662004-10-22 21:01:56 +0000601LINK_OPTS := $(TOOLLINKOPTS) $(PROJ_LIBS_OPTIONS) $(LLVM_LIBS_OPTIONS)
John Criswellfe785bd2004-09-16 14:11:25 +0000602
Reid Spencer4d71b662004-10-22 21:01:56 +0000603# Handle compression libraries automatically
604ifeq ($(HAVE_BZIP2),1)
605LIBS += -lbz2
606endif
607ifeq ($(HAVE_ZLIB),1)
608LIBS += -lz
609endif
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000610
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000611# Tell make that we need to rebuild subdirectories before we can link the tool.
612# This affects things like LLI which has library subdirectories.
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000613$(TOOLEXENAME): $(addsuffix /.makeall, $(PARALLEL_DIRS))
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000614
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000615all-local:: $(TOOLEXENAME)
John Criswell2a6530f2003-06-27 16:58:44 +0000616
Reid Spencer3a561f52004-10-23 20:04:14 +0000617clean-local::
Reid Spencere5487ba2004-10-24 07:53:21 +0000618ifneq ($(strip $(TOOLEXENAME)),)
Reid Spencer4d71b662004-10-22 21:01:56 +0000619 $(VERB) $(RM) -f $(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +0000620endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000621
Reid Spencer4d71b662004-10-22 21:01:56 +0000622$(TOOLEXENAME): $(BUILT_SOURCES) $(ObjectsO) $(PROJ_LIBS_PATHS) $(LLVM_LIBS_PATHS) $(TOOLDIR)/.dir
623 @$(ECHO) Linking $(CONFIGURATION) executable $(TOOLNAME) $(STRIP_WARN_MSG)
624 $(VERB) $(Link) -o $@ $(ObjectsO) $(PROJ_LIBS_OPTIONS) $(LLVM_LIBS_OPTIONS) $(LIBS)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000625 @$(ECHO) ======= Finished Linking $(CONFIGURATION) Executable $(TOOLNAME) $(STRIP_WARN_MSG)
Reid Spencere5487ba2004-10-24 07:53:21 +0000626
627DestTool = $(bindir)/$(TOOLNAME)
628
Reid Spencere45ebfa2004-10-26 07:09:33 +0000629install-local:: install-tool
630
631install-tool: $(bindir) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +0000632
633$(DestTool): $(TOOLEXENAME)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000634 @$(ECHO) Installing $(CONFIGURATION) $(DestTool)
635 $(VERB) $(INSTALL) $(TOOLEXENAME) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +0000636
Reid Spencere45ebfa2004-10-26 07:09:33 +0000637$(bindir):
638 $(VERB) $(MKDIR) $(bindir)
639
Reid Spencere5487ba2004-10-24 07:53:21 +0000640uninstall-local:: uninstall-tool
641
642uninstall-tool:
Reid Spencere45ebfa2004-10-26 07:09:33 +0000643 @$(ECHO) Uninstalling $(CONFIGURATION) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +0000644 $(VERB) $(RM) -f $(DestTool)
645
Reid Spencer4d71b662004-10-22 21:01:56 +0000646endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000647
Reid Spencer4d71b662004-10-22 21:01:56 +0000648ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +0000649
Reid Spencer4d71b662004-10-22 21:01:56 +0000650# Create .lo files in the OBJDIR directory from the .cpp and .c files...
Reid Spencer3a561f52004-10-23 20:04:14 +0000651ifdef SHARED_LIBRARY
652
653$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000654 @$(ECHO) "Compiling $*.cpp (PIC)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000655 $(VERB) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(OBJDIR)/$*.LACXXd $< -o $@ ; \
656 then $(MV) -f "$(OBJDIR)/$*.LACXXd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000657 else $(RM) -f "$(OBJDIR)/$*.LACXXd"; exit 1; fi
Reid Spencer3a561f52004-10-23 20:04:14 +0000658
659$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000660 @$(ECHO) "Compiling $*.c (PIC)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000661 $(VERB) if $(LTCompile.C) -MD -MT $@ -MP -MF $(OBJDIR)/$*.LACd $< -o $@ ; \
662 then $(MV) -f "$(OBJDIR)/$*.LACd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000663 else $(RM) -f "$(OBJDIR)/$*.LACd"; exit 1; fi
Reid Spencer3a561f52004-10-23 20:04:14 +0000664
665else
Reid Spencer4d71b662004-10-22 21:01:56 +0000666
667$(OBJDIR)/%.o: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000668 @$(ECHO) "Compiling $*.cpp"
Reid Spencer3a561f52004-10-23 20:04:14 +0000669 $(VERB) if $(Compile.CXX) -MD -MT $@ -MP -MF $(OBJDIR)/$*.CXXd $< -o $@ ; \
670 then $(MV) -f "$(OBJDIR)/$*.CXXd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000671 else $(RM) -f "$(OBJDIR)/$*.CXXd"; exit 1; fi
Reid Spencer4d71b662004-10-22 21:01:56 +0000672
673$(OBJDIR)/%.o: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000674 @$(ECHO) "Compiling $*.c"
Reid Spencer3a561f52004-10-23 20:04:14 +0000675 $(VERB) if $(Compile.C) -MD -MT $@ -MP -MF $(OBJDIR)/$*.Cd $< -o $@ ; \
676 then $(MV) -f "$(OBJDIR)/$*.Cd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000677 else $(RM) -f "$(OBJDIR)/$*.Cd"; exit 1; fi
Reid Spencer3a561f52004-10-23 20:04:14 +0000678
679endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000680
681# Create .bc files in the OBJDIR directory from .cpp and .c files...
682$(OBJDIR)/%.bc: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000683 @$(ECHO) "Compiling $*.cpp (bytecode)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000684 $(VERB) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(OBJDIR)/$*.BCCXXd" $< -o $@ ; \
685 then $(MV) -f "$(OBJDIR)/$*.BCCXXd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000686 else $(RM) -f "$(OBJDIR)/$*.BCCXXd"; exit 1; fi
Reid Spencer4d71b662004-10-22 21:01:56 +0000687
688$(OBJDIR)/%.bc: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000689 @$(ECHO) "Compiling $*.c (bytecode)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000690 $(VERB) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(OBJDIR)/$*.BCCd" $< -o $@ ; \
691 then $(MV) -f "$(OBJDIR)/$*.BCCd" "$(OBJDIR)/$*.d"; \
Reid Spencer151f8ba2004-10-25 08:27:37 +0000692 else $(RM) -f "$(OBJDIR)/$*.BCCd"; exit 1; fi
Reid Spencer4d71b662004-10-22 21:01:56 +0000693
694else
695
Reid Spencer3a561f52004-10-23 20:04:14 +0000696ifdef SHARED_LIBRARY
697
698$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000699 @$(ECHO) "Compiling $*.cpp (PIC)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000700 $(LTCompile.CXX) $< -o $@
701
702$(OBJDIR)/%.lo $(OBJDIR)/%.o: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000703 @$(ECHO) "Compiling $*.cpp (PIC)"
Reid Spencer3a561f52004-10-23 20:04:14 +0000704 $(LTCompile.C) $< -o $@
705
706else
Reid Spencer4d71b662004-10-22 21:01:56 +0000707
708$(OBJDIR)/%.o: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000709 @$(ECHO) "Compiling $*.cpp"
Reid Spencer3a561f52004-10-23 20:04:14 +0000710 $(Compile.CXX) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +0000711
712$(OBJDIR)/%.o: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000713 @$(ECHO) "Compiling $*.cpp"
Reid Spencer3a561f52004-10-23 20:04:14 +0000714 $(Compile.C) $< -o $@
715endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000716
717# Create .bc files in the OBJDIR directory from .cpp and .c files...
718$(OBJDIR)/%.bc: %.cpp $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000719 @$(ECHO) "Compiling $*.cpp (bytecode)"
Reid Spencer4d71b662004-10-22 21:01:56 +0000720 $(BCCompileCPP) $< -o $@
721
722$(OBJDIR)/%.bc: %.c $(OBJDIR)/.dir
Reid Spencere45ebfa2004-10-26 07:09:33 +0000723 @$(ECHO) "Compiling $*.c (bytecode)"
Reid Spencer4d71b662004-10-22 21:01:56 +0000724 $(BCCompileC) $< -o $@
Brian Gaeke44909cf2003-12-10 00:26:28 +0000725
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000726endif
727
Reid Spencer4d71b662004-10-22 21:01:56 +0000728$(OBJDIR)/%.bc: %.ll $(OBJDIR)/.dir $(LLVMAS)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000729 @$(ECHO) "Compiling $*.ll"
Chris Lattner481cc7c2003-08-15 02:18:35 +0000730 $(VERB) $(LLVMAS) $< -f -o $@
731
Reid Spencer4d71b662004-10-22 21:01:56 +0000732ifdef TARGET
733
Reid Spencerc64b2b32004-10-23 08:19:37 +0000734TDFILES := $(strip $(wildcard $(BUILD_SRC_DIR)/*.td) $(LLVM_SRC_ROOT)/lib/Target/Target.td)
Reid Spencer4d71b662004-10-22 21:01:56 +0000735
736$(BUILT_SOURCES): $(TDFILES)
737
738%GenRegisterNames.inc : %.td
739 @echo "Building $(<F) register names with tblgen"
740 $(VERB) $(TableGen) -gen-register-enums -o $@ $<
741
742%GenRegisterInfo.h.inc : %.td
743 @echo "Building $(<F) register information header with tblgen"
744 $(VERB) $(TableGen) -gen-register-desc-header -o $@ $<
745
746%GenRegisterInfo.inc : %.td
747 @echo "Building $(<F) register info implementation with tblgen"
748 $(VERB) $(TableGen) -gen-register-desc -o $@ $<
749
750%GenInstrNames.inc : %.td
751 @echo "Building $(<F) instruction names with tblgen"
752 $(VERB) $(TableGen) -gen-instr-enums -o $@ $<
753
754%GenInstrInfo.inc : %.td
755 @echo "Building $(<F) instruction information with tblgen"
756 $(VERB) $(TableGen) -gen-instr-desc -o $@ $<
757
758%GenAsmWriter.inc : %.td
759 @echo "Building $(<F) assembly writer with tblgen"
760 $(VERB) $(TableGen) -gen-asm-writer -o $@ $<
761
762%GenATTAsmWriter.inc : %.td
763 @echo "Building $(<F) AT&T assembly writer with tblgen"
764 $(VERB) $(TableGen) -gen-asm-writer -o $@ $<
765
766%GenIntelAsmWriter.inc : %.td
767 @echo "Building $(<F) Intel assembly writer with tblgen"
768 $(VERB) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
769
770%GenInstrSelector.inc: %.td
771 @echo "Building $(<F) instruction selector with tblgen"
772 $(VERB) $(TableGen) -gen-instr-selector -o $@ $<
773
774%GenCodeEmitter.inc:: %.td
775 @echo "Building $(<F) code emitter with tblgen"
776 $(VERB) $(TableGen) -gen-emitter -o $@ $<
777
Reid Spencer3a561f52004-10-23 20:04:14 +0000778clean-local::
Reid Spencer4d71b662004-10-22 21:01:56 +0000779 $(VERB) rm -f *.inc
780
781endif
Chris Lattner481cc7c2003-08-15 02:18:35 +0000782
Chris Lattnere8996782003-01-16 22:44:19 +0000783#
784# Rules for building lex/yacc files
785#
Reid Spencer3a561f52004-10-23 20:04:14 +0000786LEX_FILES = $(filter %.l, $(SOURCES))
Chris Lattnere8996782003-01-16 22:44:19 +0000787LEX_OUTPUT = $(LEX_FILES:%.l=%.cpp)
Reid Spencer3a561f52004-10-23 20:04:14 +0000788YACC_FILES = $(filter %.y, $(SOURCES))
Chris Lattnere8996782003-01-16 22:44:19 +0000789YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
790.PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT)
791
Chris Lattner00950542001-06-06 20:29:01 +0000792# Create a .cpp source file from a flex input file... this uses sed to cut down
793# on the warnings emited by GCC...
Chris Lattner6d131b42003-01-23 16:33:10 +0000794#
795# The last line is a gross hack to work around flex aparently not being able to
796# resize the buffer on a large token input. Currently, for uninitialized string
797# buffers in LLVM we can generate very long tokens, so this is a hack around it.
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000798# FIXME. (f.e. char Buffer[10000] )
Chris Lattner6d131b42003-01-23 16:33:10 +0000799#
Chris Lattner00950542001-06-06 20:29:01 +0000800%.cpp: %.l
Reid Spencer4d71b662004-10-22 21:01:56 +0000801 @$(ECHO) Flexing $<
Chris Lattner7bb107d2003-08-04 19:48:10 +0000802 $(VERB) $(FLEX) -t $< | \
Reid Spencer4d71b662004-10-22 21:01:56 +0000803 $(SED) '/^find_rule/d' | \
804 $(SED) 's/void yyunput/inline void yyunput/' | \
805 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
806 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
807 > $@.tmp
808 $(VERB) cmp -s $@ $@.tmp > /dev/null || $(MV) -f $@.tmp $@
Chris Lattnera328f882003-08-04 19:47:06 +0000809 @# remove the output of flex if it didn't get moved over...
810 @rm -f $@.tmp
Chris Lattner00950542001-06-06 20:29:01 +0000811
812# Rule for building the bison parsers...
Chris Lattner694c5df2003-05-15 21:28:55 +0000813%.c: %.y # Cancel built-in rules for yacc
814%.h: %.y # Cancel built-in rules for yacc
Chris Lattner00950542001-06-06 20:29:01 +0000815%.cpp %.h : %.y
Reid Spencer4d71b662004-10-22 21:01:56 +0000816 @$(ECHO) "Bisoning $*.y"
John Criswell410d1b52003-09-09 20:57:03 +0000817 $(VERB) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
Reid Spencer4d71b662004-10-22 21:01:56 +0000818 $(VERB) cmp -s $*.tab.c $*.cpp > /dev/null || $(MV) -f $*.tab.c $*.cpp
819 $(VERB) cmp -s $*.tab.h $*.h > /dev/null || $(MV) -f $*.tab.h $*.h
Chris Lattnera328f882003-08-04 19:47:06 +0000820 @# If the files were not updated, don't leave them lying around...
821 @rm -f $*.tab.c $*.tab.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