blob: 56d3a8739edefb302cc6c641d73dcb36a7aaa32f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner3876aa72007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Misha Brukman89fe5162009-01-08 02:11:55 +00007#
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008#===------------------------------------------------------------------------===#
9#
10# 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.
12#
13#===-----------------------------------------------------------------------====#
14
15################################################################################
16# TARGETS: Define standard targets that can be invoked
17################################################################################
18
19#--------------------------------------------------------------------
20# Define the various target sets
21#--------------------------------------------------------------------
22RecursiveTargets := all clean clean-all install uninstall install-bytecode
23LocalTargets := all-local clean-local clean-all-local check-local \
24 install-local printvars uninstall-local \
Bill Wendling2e3646a2009-01-04 23:12:21 +000025 install-bytecode-local unittests
Chris Lattner42596062007-09-26 06:10:47 +000026TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling2e3646a2009-01-04 23:12:21 +000027 dist-zip unittests
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
29InternalTargets := preconditions distdir dist-hook
30
31################################################################################
32# INITIALIZATION: Basic things the makefile needs
33################################################################################
34
35#--------------------------------------------------------------------
36# Set the VPATH so that we can find source files.
37#--------------------------------------------------------------------
38VPATH=$(PROJ_SRC_DIR)
39
40#--------------------------------------------------------------------
41# Reset the list of suffixes we know how to build.
42#--------------------------------------------------------------------
43.SUFFIXES:
Nick Lewycky8d91e192009-02-26 07:44:16 +000044.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
46
47#--------------------------------------------------------------------
48# Mark all of these targets as phony to avoid implicit rule search
49#--------------------------------------------------------------------
50.PHONY: $(UserTargets) $(InternalTargets)
51
52#--------------------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +000053# Make sure all the user-target rules are double colon rules and
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054# they are defined first.
55#--------------------------------------------------------------------
56
57$(UserTargets)::
58
59################################################################################
60# PRECONDITIONS: that which must be built/checked first
61################################################################################
62
63SrcMakefiles := $(filter %Makefile %Makefile.tests,\
64 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66ConfigureScript := $(PROJ_SRC_ROOT)/configure
67ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
71MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
72PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
73ifneq ($(MakefileCommonIn),)
74PreConditions += $(MakefileCommon)
75endif
76
77ifneq ($(MakefileConfigIn),)
78PreConditions += $(MakefileConfig)
79endif
80
81preconditions: $(PreConditions)
82
83#------------------------------------------------------------------------
84# Make sure the BUILT_SOURCES are built first
85#------------------------------------------------------------------------
86$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
87
88clean-all-local::
89ifneq ($(strip $(BUILT_SOURCES)),)
90 -$(Verb) $(RM) -f $(BUILT_SOURCES)
91endif
92
93ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
94spotless:
95 $(Verb) if test -x config.status ; then \
96 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
101 $(RM) -rf * ; \
102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
109 else \
110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
111 fi
112else
113spotless:
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
115endif
116
117$(BUILT_SOURCES) : $(ObjMakefiles)
118
119#------------------------------------------------------------------------
120# Make sure we're not using a stale configuration
121#------------------------------------------------------------------------
122reconfigure:
123 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124 $(Verb) cd $(PROJ_OBJ_ROOT) && \
125 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
127 fi ; \
128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
130
131.PRECIOUS: $(ConfigStatusScript)
132$(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
137 fi ; \
138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
140
141#------------------------------------------------------------------------
142# Make sure the configuration makefile is up to date
143#------------------------------------------------------------------------
144ifneq ($(MakefileConfigIn),)
145$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146 $(Echo) Regenerating $@
147 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
148endif
149
150ifneq ($(MakefileCommonIn),)
151$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152 $(Echo) Regenerating $@
153 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
154endif
155
156#------------------------------------------------------------------------
157# If the Makefile in the source tree has been updated, copy it over into the
158# build tree. But, only do this if the source and object makefiles differ
159#------------------------------------------------------------------------
160ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
161
Gordon Henriksen4290f662008-03-10 15:58:40 +0000162Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 $(Echo) "Updating Makefile"
164 $(Verb) $(MKDIR) $(@D)
165 $(Verb) $(CP) -f $< $@
166
167# Copy the Makefile.* files unless we're in the root directory which avoids
168# the copying of Makefile.config.in or other things that should be explicitly
169# taken care of.
170$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
171 @case '$?' in \
172 *Makefile.rules) ;; \
173 *.in) ;; \
Gordon Henriksen4290f662008-03-10 15:58:40 +0000174 *) $(EchoCmd) "Updating $(@F)" ; \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 $(MKDIR) $(@D) ; \
176 $(CP) -f $< $@ ;; \
177 esac
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000178
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179endif
180
181#------------------------------------------------------------------------
182# Set up the basic dependencies
183#------------------------------------------------------------------------
184$(UserTargets):: $(PreConditions)
185
186all:: all-local
Anton Korobeynikov06565172008-11-10 07:33:13 +0000187clean:: clean-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188clean-all:: clean-local clean-all-local
189install:: install-local
190uninstall:: uninstall-local
Misha Brukman89fe5162009-01-08 02:11:55 +0000191install-local:: all-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192install-bytecode:: install-bytecode-local
193
194###############################################################################
195# VARIABLES: Set up various variables based on configuration data
196###############################################################################
197
Daniel Dunbara89194e2008-10-03 19:11:19 +0000198# Variable for if this make is for a "cleaning" target
199ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
200 IS_CLEANING_TARGET=1
201endif
202
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203#--------------------------------------------------------------------
204# Variables derived from configuration we are building
205#--------------------------------------------------------------------
206
207CPP.Defines :=
208# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
209# this can be overridden on the make command line.
210ifneq ($(OS),MingW)
211 OPTIMIZE_OPTION := -O3
212else
213 OPTIMIZE_OPTION := -O2
214endif
215
216ifdef ENABLE_PROFILING
217 BuildMode := Profile
Gordon Henriksen09968862008-01-06 21:54:35 +0000218 CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
219 C.Flags += $(OPTIMIZE_OPTION) -pg -g
220 LD.Flags += $(OPTIMIZE_OPTION) -pg -g
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 KEEP_SYMBOLS := 1
222else
223 ifeq ($(ENABLE_OPTIMIZED),1)
224 BuildMode := Release
225 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
226 ifneq ($(OS),FreeBSD)
227 ifneq ($(OS),Darwin)
228 OmitFramePointer := -fomit-frame-pointer
229 endif
230 endif
231
232 # Darwin requires -fstrict-aliasing to be explicitly enabled.
233 ifeq ($(OS),Darwin)
Evan Cheng1bde8892008-06-05 23:00:08 +0000234 EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 endif
236
Gordon Henriksen09968862008-01-06 21:54:35 +0000237 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
238 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
239 LD.Flags += $(OPTIMIZE_OPTION)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 else
241 BuildMode := Debug
Gordon Henriksen09968862008-01-06 21:54:35 +0000242 CXX.Flags += -g
243 C.Flags += -g
244 LD.Flags += -g
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 KEEP_SYMBOLS := 1
246 endif
247endif
248
Daniel Dunbar886e1832008-09-02 17:35:16 +0000249#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
250# CXX.Flags += -fvisibility-inlines-hidden
251#endif
252
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253# IF REQUIRES_EH=1 is specified then don't disable exceptions
254ifndef REQUIRES_EH
255 CXX.Flags += -fno-exceptions
256endif
257
258# IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
259ifndef REQUIRES_RTTI
260# CXX.Flags += -fno-rtti
261endif
262
263# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
264# then disable assertions by defining the appropriate preprocessor symbols.
265ifdef DISABLE_ASSERTIONS
266 BuildMode := $(BuildMode)-Asserts
267 CPP.Defines += -DNDEBUG
268else
269 CPP.Defines += -D_DEBUG
270endif
271
Misha Brukman89fe5162009-01-08 02:11:55 +0000272# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
273# configured), then enable expensive checks by defining the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274# appropriate preprocessor symbols.
275ifdef ENABLE_EXPENSIVE_CHECKS
276 BuildMode := $(BuildMode)+Checks
Duncan Sands871e55f2008-12-09 21:33:20 +0000277 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278endif
279
Nick Lewycky8d91e192009-02-26 07:44:16 +0000280# LOADABLE_MODULE implies several other things so we force them to be
281# defined/on.
282ifdef LOADABLE_MODULE
283 SHARED_LIBRARY := 1
284 DONT_BUILD_RELINKED := 1
285 LINK_LIBS_IN_SHARED := 1
286endif
287
288ifdef SHARED_LIBRARY
289 ENABLE_PIC := 1
290 PIC_FLAG = "(PIC)"
291endif
292
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293ifeq ($(ENABLE_PIC),1)
Nick Lewycky5b882f22009-02-21 08:41:09 +0000294 ifeq ($(LLVM_ON_WIN32),1)
295 # Nothing. Win32 defaults to PIC and warns when given -fPIC
296 else
297 ifeq ($(OS),Darwin)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000298 # Common symbols not allowed in dylib files
Nick Lewycky5b882f22009-02-21 08:41:09 +0000299 CXX.Flags += -fno-common
300 C.Flags += -fno-common
301 else
302 # Linux and others; pass -fPIC
303 CXX.Flags += -fPIC
304 C.Flags += -fPIC
305 endif
306 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307endif
308
309CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
310C.Flags += $(CFLAGS)
311CPP.Defines += $(CPPFLAGS)
312CPP.BaseFlags += $(CPP.Defines)
313LD.Flags += $(LDFLAGS)
314AR.Flags := cru
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315
316# Make Floating point IEEE compliant on Alpha.
317ifeq ($(ARCH),Alpha)
318 CXX.Flags += -mieee
319 CPP.BaseFlags += -mieee
320ifeq ($(ENABLE_PIC),0)
321 CXX.Flags += -fPIC
322 CPP.BaseFlags += -fPIC
323endif
324endif
325
326ifeq ($(ARCH),Alpha)
327 LD.Flags += -Wl,--no-relax
328endif
329
330#--------------------------------------------------------------------
331# Directory locations
332#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000333TargetMode :=
334ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000335 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000336endif
337
338ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000339ObjDir := $(ObjRootDir)
340LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
341ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
342ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
343LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
344LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
345LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346CFERuntimeLibDir := $(LLVMGCCDIR)/lib
347
348#--------------------------------------------------------------------
349# Full Paths To Compiled Tools and Utilities
350#--------------------------------------------------------------------
351EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
352Echo = @$(EchoCmd)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353ifndef LLVMAS
354LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
355endif
356ifndef TBLGEN
357 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000358 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359 else
360 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
361 endif
362endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000363LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364ifndef LLVMLD
365LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
366endif
367ifndef LLVMDIS
368LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
369endif
370ifndef LLI
371LLI := $(LLVMToolDir)/lli$(EXEEXT)
372endif
373ifndef LLC
374LLC := $(LLVMToolDir)/llc$(EXEEXT)
375endif
376ifndef LOPT
377LOPT := $(LLVMToolDir)/opt$(EXEEXT)
378endif
379ifndef LBUGPOINT
380LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
381endif
382ifndef LUPGRADE
383LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
384endif
385ifeq ($(LLVMGCC_MAJVERS),3)
386UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
387UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
388LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
389LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
390else
391UPGRADE_MSG =
392UPGRADE_LL =
393LLVMGCCWITHPATH := $(LLVMGCC)
394LLVMGXXWITHPATH := $(LLVMGXX)
395endif
396
397#--------------------------------------------------------------------
398# Adjust to user's request
399#--------------------------------------------------------------------
400
Nick Lewycky8d91e192009-02-26 07:44:16 +0000401# Adjust LD.Flags depending on the kind of library that is to be built. Note
402# that if LOADABLE_MODULE is specified then the resulting shared library can
403# be opened with dlopen.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404ifdef LOADABLE_MODULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405 LD.Flags += -module
406endif
407
408ifdef SHARED_LIBRARY
Nick Lewycky8d91e192009-02-26 07:44:16 +0000409 LD.Flags += -Wl,-rpath -Wl,$(LibDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410endif
411
412ifdef TOOL_VERBOSE
413 C.Flags += -v
414 CXX.Flags += -v
415 LD.Flags += -v
416 VERBOSE := 1
417endif
418
419# Adjust settings for verbose mode
420ifndef VERBOSE
421 Verb := @
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000422 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
424else
Misha Brukman89fe5162009-01-08 02:11:55 +0000425 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426endif
427
428# By default, strip symbol information from executable
429ifndef KEEP_SYMBOLS
430 Strip := $(PLATFORMSTRIPOPTS)
431 StripWarnMsg := "(without symbols)"
432 Install.StripFlag += -s
433endif
434
435# Adjust linker flags for building an executable
Nick Lewycky324b1192009-02-26 08:03:36 +0000436ifneq ($(OS),Darwin)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000437ifdef TOOLNAME
438ifdef EXAMPLE_TOOL
Nick Lewycky8d91e192009-02-26 07:44:16 +0000439 LD.Flags += -Wl,-rpath -Wl,$(ExmplDir) -export-dynamic
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440else
Nick Lewycky8d91e192009-02-26 07:44:16 +0000441 LD.Flags += -Wl,-rpath -Wl,$(ToolDir) -export-dynamic
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442endif
443endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000444endif
445
446ifeq ($(OS),Darwin)
Chris Lattner323808e2009-02-26 17:44:38 +0000447 DARWIN_VERSION := `sw_vers -productVersion`
448 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -bundle \
449 -mmacosx-version-min=$(DARWIN_VERSION)
450 CompileCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000451else
452 SharedLinkOptions=-shared
453endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454
455#----------------------------------------------------------
456# Options To Invoke Tools
457#----------------------------------------------------------
458
Chris Lattner323808e2009-02-26 17:44:38 +0000459CompileCommonOpts += -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
461
462ifeq ($(OS),HP-UX)
463 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
464endif
465
466# If we are building a universal binary on Mac OS/X, pass extra options. This
467# is useful to people that want to link the LLVM libraries into their universal
468# apps.
469#
470# The following can be optionally specified:
471# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
472# For Mac OS/X 10.4 Intel machines, the traditional one is:
473# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
474# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
475# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
476# i386/ppc only.
477ifdef UNIVERSAL
478 ifndef UNIVERSAL_ARCH
479 UNIVERSAL_ARCH := i386 ppc
480 endif
481 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
482 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerc372e1c2009-02-26 19:08:30 +0000483 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 ifdef UNIVERSAL_SDK_PATH
485 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerc372e1c2009-02-26 19:08:30 +0000486 Relink.Flags += -isysroot $(UNIVERSAL_SDK_PATH)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 endif
488
489 # Building universal cannot compute dependencies automatically.
490 DISABLE_AUTO_DEPENDENCIES=1
491endif
492
Chris Lattner35c997c2008-06-24 17:44:42 +0000493ifeq ($(OS),SunOS)
494CPP.BaseFlags += -include llvm/System/Solaris.h
495endif
496
Misha Brukman89fe5162009-01-08 02:11:55 +0000497LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000498CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000500CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
501 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000502 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
503 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
504 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505
Jim Grosbache4c032e2008-10-02 22:56:44 +0000506 ifeq ($(BUILD_COMPONENT), 1)
507 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
508 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
509 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
510 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
511 $(LD.Flags) $(Strip)
512 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
513 $(Relink.Flags)
514else
515 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
516 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
517 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
518 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
519 $(LD.Flags) $(Strip)
520 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
521 $(Relink.Flags)
522endif
523
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
525Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
526
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
528 $(CompileCommonOpts)
529
Misha Brukman89fe5162009-01-08 02:11:55 +0000530ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
531ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000532DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000533
534# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
535# paths. In this case, the SYSPATH function (defined in
536# Makefile.config) transforms Unix paths into Windows paths.
537TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000538 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000539 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
540 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
541
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542Archive = $(AR) $(AR.Flags)
543LArchive = $(LLVMToolDir)/llvm-ar rcsf
544ifdef RANLIB
545Ranlib = $(RANLIB)
546else
547Ranlib = ranlib
548endif
549
550#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000551# Get the list of source files and compute object file
552# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553#----------------------------------------------------------
554
555ifndef SOURCES
556 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000557 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558else
559 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000560endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561
562ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000563Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564endif
565
566BaseNameSources := $(sort $(basename $(Sources)))
567
568ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
570
571###############################################################################
572# DIRECTORIES: Handle recursive descent of directory structure
573###############################################################################
574
575#---------------------------------------------------------
576# Provide rules to make install dirs. This must be early
577# in the file so they get built before dependencies
578#---------------------------------------------------------
579
Mike Stump98f72e02009-02-12 23:45:11 +0000580$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000581 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582
583# To create other directories, as needed, and timestamp their creation
584%/.dir:
585 $(Verb) $(MKDIR) $* > /dev/null
586 $(Verb) $(DATE) > $@
587
588.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
589.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
590
591#---------------------------------------------------------
592# Handle the DIRS options for sequential construction
593#---------------------------------------------------------
594
Misha Brukman89fe5162009-01-08 02:11:55 +0000595SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596ifdef DIRS
597SubDirs += $(DIRS)
598
599ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
600$(RecursiveTargets)::
601 $(Verb) for dir in $(DIRS); do \
602 if [ ! -f $$dir/Makefile ]; then \
603 $(MKDIR) $$dir; \
604 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
605 fi; \
606 ($(MAKE) -C $$dir $@ ) || exit 1; \
607 done
608else
609$(RecursiveTargets)::
610 $(Verb) for dir in $(DIRS); do \
611 ($(MAKE) -C $$dir $@ ) || exit 1; \
612 done
613endif
614
615endif
616
617#---------------------------------------------------------
618# Handle the EXPERIMENTAL_DIRS options ensuring success
619# after each directory is built.
620#---------------------------------------------------------
621ifdef EXPERIMENTAL_DIRS
622$(RecursiveTargets)::
623 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
624 if [ ! -f $$dir/Makefile ]; then \
625 $(MKDIR) $$dir; \
626 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
627 fi; \
628 ($(MAKE) -C $$dir $@ ) || exit 0; \
629 done
630endif
631
632#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000633# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
634#-----------------------------------------------------------
635ifdef OPTIONAL_PARALLEL_DIRS
636 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
637endif
638
639#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000640# Handle the PARALLEL_DIRS options for parallel construction
641#-----------------------------------------------------------
642ifdef PARALLEL_DIRS
643
644SubDirs += $(PARALLEL_DIRS)
645
646# Unfortunately, this list must be maintained if new recursive targets are added
647all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
648clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
649clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
650install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
651uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
652install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
653
654ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
655
656$(ParallelTargets) :
657 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
658 $(MKDIR) $(@D); \
659 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
660 fi; \
661 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
662endif
663
664#---------------------------------------------------------
665# Handle the OPTIONAL_DIRS options for directores that may
666# or may not exist.
667#---------------------------------------------------------
668ifdef OPTIONAL_DIRS
669
670SubDirs += $(OPTIONAL_DIRS)
671
672ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
673$(RecursiveTargets)::
674 $(Verb) for dir in $(OPTIONAL_DIRS); do \
675 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
676 if [ ! -f $$dir/Makefile ]; then \
677 $(MKDIR) $$dir; \
678 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
679 fi; \
680 ($(MAKE) -C$$dir $@ ) || exit 1; \
681 fi \
682 done
683else
684$(RecursiveTargets)::
685 $(Verb) for dir in $(OPTIONAL_DIRS); do \
686 ($(MAKE) -C$$dir $@ ) || exit 1; \
687 done
688endif
689endif
690
691#---------------------------------------------------------
692# Handle the CONFIG_FILES options
693#---------------------------------------------------------
694ifdef CONFIG_FILES
695
696ifdef NO_INSTALL
697install-local::
698 $(Echo) Install circumvented with NO_INSTALL
699uninstall-local::
700 $(Echo) UnInstall circumvented with NO_INSTALL
701else
702install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
703 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
704 $(Verb)for file in $(CONFIG_FILES); do \
705 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
706 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
707 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
708 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
709 else \
710 $(ECHO) Error: cannot find config file $${file}. ; \
711 fi \
712 done
713
714uninstall-local::
715 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
716 $(Verb)for file in $(CONFIG_FILES); do \
717 $(RM) -f $(PROJ_etcdir)/$${file} ; \
718 done
719endif
720
721endif
722
723###############################################################################
724# Set up variables for building libararies
725###############################################################################
726
727#---------------------------------------------------------
728# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000729# libraries needed when linking. There are "Proj" libs
730# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000731# by the LLVM project).
732#---------------------------------------------------------
733
734ifdef USEDLIBS
735ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
736ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
737ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
738ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
739endif
740
741ifdef LLVMLIBS
742LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
743LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
744LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
745LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
746endif
747
Daniel Dunbara89194e2008-10-03 19:11:19 +0000748ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749ifdef LINK_COMPONENTS
750
751# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
752# clean in tools, then do a make in tools (instead of at the top level).
753$(LLVM_CONFIG):
754 @echo "*** llvm-config doesn't exist - rebuilding it."
755 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000756
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
758
759ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
760ProjLibsPaths += $(LLVM_CONFIG) \
761 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
762endif
763endif
764
765###############################################################################
766# Library Build Rules: Four ways to build a library
767###############################################################################
768
769#---------------------------------------------------------
770# Bytecode Module Targets:
771# If the user set MODULE_NAME then they want to build a
772# bytecode module from the sources. We compile all the
773# sources and link it together into a single bytecode
774# module.
775#---------------------------------------------------------
776
777ifdef MODULE_NAME
778ifeq ($(strip $(LLVMGCC)),)
779$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
780else
781
782Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000783LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784
785
786ifdef EXPORTED_SYMBOL_FILE
787LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
788endif
789
790$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
791 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
792 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
793
794all-local:: $(Module)
795
796clean-local::
797ifneq ($(strip $(Module)),)
798 -$(Verb) $(RM) -f $(Module)
799endif
800
801ifdef BYTECODE_DESTINATION
802ModuleDestDir := $(BYTECODE_DESTINATION)
803else
804ModuleDestDir := $(PROJ_libdir)
805endif
806
807ifdef NO_INSTALL
808install-local::
809 $(Echo) Install circumvented with NO_INSTALL
810uninstall-local::
811 $(Echo) Uninstall circumvented with NO_INSTALL
812else
813DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
814
815install-module:: $(DestModule)
816install-local:: $(DestModule)
817
Misha Brukman89fe5162009-01-08 02:11:55 +0000818$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
820 $(Verb) $(DataInstall) $(Module) $(DestModule)
821
822uninstall-local::
823 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
824 -$(Verb) $(RM) -f $(DestModule)
825endif
826
827endif
828endif
829
830# if we're building a library ...
831ifdef LIBRARYNAME
832
833# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
834LIBRARYNAME := $(strip $(LIBRARYNAME))
835ifdef LOADABLE_MODULE
Nick Lewycky8d91e192009-02-26 07:44:16 +0000836LibName.A := $(LibDir)/$(LIBRARYNAME).a
837LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky8d91e192009-02-26 07:44:16 +0000840LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
841endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842LibName.O := $(LibDir)/$(LIBRARYNAME).o
843LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
844
845#---------------------------------------------------------
846# Shared Library Targets:
847# If the user asked for a shared library to be built
848# with the SHARED_LIBRARY variable, then we provide
849# targets for building them.
850#---------------------------------------------------------
851ifdef SHARED_LIBRARY
852
Nick Lewycky8d91e192009-02-26 07:44:16 +0000853all-local:: $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854
855ifdef LINK_LIBS_IN_SHARED
856ifdef LOADABLE_MODULE
857SharedLibKindMessage := "Loadable Module"
858else
859SharedLibKindMessage := "Shared Library"
860endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000861$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
863 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000864 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
865 $(ProjLibsOptions) $(LLVMLibsOptions)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000866else
Nick Lewycky8d91e192009-02-26 07:44:16 +0000867$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000869 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000870endif
871
872clean-local::
Nick Lewycky8d91e192009-02-26 07:44:16 +0000873ifneq ($(strip $(LibName.SO)),)
874 -$(Verb) $(RM) -f $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875endif
876
877ifdef NO_INSTALL
878install-local::
879 $(Echo) Install circumvented with NO_INSTALL
880uninstall-local::
881 $(Echo) Uninstall circumvented with NO_INSTALL
882else
883DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
884
885install-local:: $(DestSharedLib)
886
Nick Lewycky8d91e192009-02-26 07:44:16 +0000887$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000889 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890
Misha Brukman89fe5162009-01-08 02:11:55 +0000891uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
893 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
894endif
895endif
896
897#---------------------------------------------------------
898# Bytecode Library Targets:
899# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +0000900# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000901# targets for building them.
902#---------------------------------------------------------
903ifdef BYTECODE_LIBRARY
904ifeq ($(strip $(LLVMGCC)),)
905$(warning Bytecode libraries require llvm-gcc which could not be found ****)
906else
907
908all-local:: $(LibName.BCA)
909
910ifdef EXPORTED_SYMBOL_FILE
911BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
912 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
913
914$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
915 $(LLVMToolDir)/llvm-ar
916 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
917 "(internalize)"
918 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
919 $(Verb) $(RM) -f $@
920 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
921else
922$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
923 $(LLVMToolDir)/llvm-ar
924 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
925 $(Verb) $(RM) -f $@
926 $(Verb) $(LArchive) $@ $(ObjectsBC)
927
928endif
929
930clean-local::
931ifneq ($(strip $(LibName.BCA)),)
932 -$(Verb) $(RM) -f $(LibName.BCA)
933endif
934
935ifdef BYTECODE_DESTINATION
936BytecodeDestDir := $(BYTECODE_DESTINATION)
937else
938BytecodeDestDir := $(PROJ_libdir)
939endif
940
941DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
942
943install-bytecode-local:: $(DestBytecodeLib)
944
945ifdef NO_INSTALL
946install-local::
947 $(Echo) Install circumvented with NO_INSTALL
948uninstall-local::
949 $(Echo) Uninstall circumvented with NO_INSTALL
950else
951install-local:: $(DestBytecodeLib)
952
Mike Stump98f72e02009-02-12 23:45:11 +0000953$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
955 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
956
957uninstall-local::
958 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
959 -$(Verb) $(RM) -f $(DestBytecodeLib)
960endif
961endif
962endif
963
964#---------------------------------------------------------
965# ReLinked Library Targets:
966# If the user explicitly requests a relinked library with
967# BUILD_RELINKED, provide it. Otherwise, if they specify
968# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
969# them one.
970#---------------------------------------------------------
971ifndef BUILD_ARCHIVE
972ifndef DONT_BUILD_RELINKED
973BUILD_RELINKED = 1
974endif
975endif
976
977ifdef BUILD_RELINKED
978
979all-local:: $(LibName.O)
980
981$(LibName.O): $(ObjectsO) $(LibDir)/.dir
982 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
Nick Lewycky14c68542009-02-26 08:48:14 +0000983 $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984
985clean-local::
986ifneq ($(strip $(LibName.O)),)
987 -$(Verb) $(RM) -f $(LibName.O)
988endif
989
990ifdef NO_INSTALL
991install-local::
992 $(Echo) Install circumvented with NO_INSTALL
993uninstall-local::
994 $(Echo) Uninstall circumvented with NO_INSTALL
995else
996DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
997
998install-local:: $(DestRelinkedLib)
999
Mike Stump98f72e02009-02-12 23:45:11 +00001000$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001001 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001002 $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001003
1004uninstall-local::
1005 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1006 -$(Verb) $(RM) -f $(DestRelinkedLib)
1007endif
1008endif
1009
1010#---------------------------------------------------------
1011# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001012# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001013# then we provide targets for building them.
1014#---------------------------------------------------------
1015ifdef BUILD_ARCHIVE
1016
1017all-local:: $(LibName.A)
1018
1019$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1020 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1021 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001022 $(Verb) $(Archive) $@ $(ObjectsO)
1023 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001024
1025clean-local::
1026ifneq ($(strip $(LibName.A)),)
1027 -$(Verb) $(RM) -f $(LibName.A)
1028endif
1029
1030ifdef NO_INSTALL
1031install-local::
1032 $(Echo) Install circumvented with NO_INSTALL
1033uninstall-local::
1034 $(Echo) Uninstall circumvented with NO_INSTALL
1035else
1036DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1037
1038install-local:: $(DestArchiveLib)
1039
Mike Stump98f72e02009-02-12 23:45:11 +00001040$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1042 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001043 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044
1045uninstall-local::
1046 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1047 -$(Verb) $(RM) -f $(DestArchiveLib)
1048endif
1049endif
1050
1051# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001052endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053
1054###############################################################################
1055# Tool Build Rules: Build executable tool based on TOOLNAME option
1056###############################################################################
1057
1058ifdef TOOLNAME
1059
1060#---------------------------------------------------------
1061# Set up variables for building a tool.
1062#---------------------------------------------------------
1063ifdef EXAMPLE_TOOL
1064ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1065else
1066ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1067endif
1068
1069#---------------------------------------------------------
Chris Lattner8b04ea72009-02-26 17:47:49 +00001070# Prune Exports
1071#---------------------------------------------------------
1072
1073# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1074# not exporting all of the weak symbols from the binary. This reduces dyld
1075# startup time by 4x on darwin in some cases.
1076ifdef TOOL_NO_EXPORTS
1077ifeq ($(OS),Darwin)
1078LD.Flags += -Wl,-exported_symbol -Wl,_main
1079endif
1080
1081ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
Chris Lattner7c024612009-02-26 18:38:40 +00001082LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner8b04ea72009-02-26 17:47:49 +00001083endif
1084endif
1085
1086
1087#---------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088# Provide targets for building the tools
1089#---------------------------------------------------------
1090all-local:: $(ToolBuildPath)
1091
1092clean-local::
1093ifneq ($(strip $(ToolBuildPath)),)
1094 -$(Verb) $(RM) -f $(ToolBuildPath)
1095endif
1096
1097ifdef EXAMPLE_TOOL
1098$(ToolBuildPath): $(ExmplDir)/.dir
1099else
1100$(ToolBuildPath): $(ToolDir)/.dir
1101endif
1102
1103$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1104 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001105 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001106 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1107 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001108 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109
1110ifdef NO_INSTALL
1111install-local::
1112 $(Echo) Install circumvented with NO_INSTALL
1113uninstall-local::
1114 $(Echo) Uninstall circumvented with NO_INSTALL
1115else
1116DestTool = $(PROJ_bindir)/$(TOOLNAME)
1117
1118install-local:: $(DestTool)
1119
Mike Stump98f72e02009-02-12 23:45:11 +00001120$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121 $(Echo) Installing $(BuildMode) $(DestTool)
1122 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1123
1124uninstall-local::
1125 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1126 -$(Verb) $(RM) -f $(DestTool)
1127endif
1128endif
1129
1130###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001131# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132###############################################################################
1133
1134# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1135ifeq ($(OS),HP-UX)
1136 DISABLE_AUTO_DEPENDENCIES=1
1137endif
1138
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139# Provide rule sets for when dependency generation is enabled
1140ifndef DISABLE_AUTO_DEPENDENCIES
1141
1142#---------------------------------------------------------
Nick Lewycky8d91e192009-02-26 07:44:16 +00001143# Create .o files in the ObjDir directory from the .cpp and .c files...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144#---------------------------------------------------------
1145
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001146DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky8d91e192009-02-26 07:44:16 +00001147 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001148
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001149# If the build succeeded, move the dependency file over. If it failed, put an
1150# empty file there.
1151DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1152 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1153
Nick Lewycky8d91e192009-02-26 07:44:16 +00001154$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001156 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001157 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001158
Nick Lewycky8d91e192009-02-26 07:44:16 +00001159$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001160 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001161 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001162 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163
Nick Lewycky8d91e192009-02-26 07:44:16 +00001164$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001166 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001167 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168
1169#---------------------------------------------------------
1170# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1171#---------------------------------------------------------
1172
1173$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1174 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1175 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1176 $< -o $@ -S -emit-llvm ; \
1177 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1178 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001179 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001180 $(call UPGRADE_LL,$@)
1181
1182$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1183 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1184 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1185 $< -o $@ -S -emit-llvm ; \
1186 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1187 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001188 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001189 $(call UPGRADE_LL,$@)
1190
1191$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1192 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1193 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1194 $< -o $@ -S -emit-llvm ; \
1195 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1196 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001197 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001198 $(call UPGRADE_LL,$@)
1199
1200# Provide alternate rule sets if dependencies are disabled
1201else
1202
Nick Lewycky8d91e192009-02-26 07:44:16 +00001203$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001204 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001205 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001206
Nick Lewycky8d91e192009-02-26 07:44:16 +00001207$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001208 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001209 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001210
Nick Lewycky8d91e192009-02-26 07:44:16 +00001211$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001212 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001213 $(Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001214
1215$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1216 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1217 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001218 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001219 $(call UPGRADE_LL,$@)
1220
1221$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1222 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1223 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001224 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001225 $(call UPGRADE_LL,$@)
1226
1227$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1228 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1229 $(BCCompile.C) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001230 $(call UPGRADE_MSG,@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001231 $(call UPGRADE_LL,@)
1232
1233endif
1234
1235
1236## Rules for building preprocessed (.i/.ii) outputs.
1237$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1238 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1239 $(Verb) $(Preprocess.CXX) $< -o $@
1240
1241$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1242 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1243 $(Verb) $(Preprocess.CXX) $< -o $@
1244
1245$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1246 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1247 $(Verb) $(Preprocess.C) $< -o $@
1248
1249
1250$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1251 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001252 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253
1254$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1255 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001256 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001257
1258$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1259 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001260 $(Compile.C) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001261
1262
1263# make the C and C++ compilers strip debug info out of bytecode libraries.
1264ifdef DEBUG_RUNTIME
1265$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1266 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1267 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1268else
1269$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1270 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1271 $(Verb) $(LLVMAS) $< -o - | \
1272 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1273endif
1274
1275
1276#---------------------------------------------------------
1277# Provide rule to build .bc files from .ll sources,
1278# regardless of dependencies
1279#---------------------------------------------------------
1280$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1281 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1282 $(Verb) $(LLVMAS) $< -f -o $@
1283
1284###############################################################################
1285# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1286###############################################################################
1287
1288ifdef TARGET
1289
1290TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
Evan Cheng301aaf52008-11-24 07:34:46 +00001291 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1292 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1293 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1294 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001295 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1296 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1297INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1298INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1299.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1300
1301# All of these files depend on tblgen and the .td files.
1302$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1303
Misha Brukman89fe5162009-01-08 02:11:55 +00001304# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001305# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1306# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001307# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001308# dependencies of the .inc files are, unless the contents of the .inc file
1309# changes.
1310$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1311 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1312
1313$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1314$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1315 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001316 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001317
1318$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1319$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1320 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001321 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001322
1323$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1324$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1325 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001326 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001327
1328$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1329$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1330 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001331 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001332
1333$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1334$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1335 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001336 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001337
1338$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1339$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1340 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001341 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342
1343$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1344$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1345 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001346 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001347
1348$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1349$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1350 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001351 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001352
1353$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1354$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001355 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001356 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001357
Dan Gohmanb75dead2008-08-13 20:19:35 +00001358$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1359$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1360 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1361 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1362
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001363$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1364$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1365 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001366 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001367
1368$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1369$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1370 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001371 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001372
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001373$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1374$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1375 $(Echo) "Building $(<F) calling convention information with tblgen"
1376 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1377
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001378clean-local::
1379 -$(Verb) $(RM) -f $(INCFiles)
1380
1381endif
1382
1383###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001384# OTHER RULES: Other rules needed
1385###############################################################################
1386
1387# To create postscript files from dot files...
1388ifneq ($(DOT),false)
1389%.ps: %.dot
1390 $(DOT) -Tps < $< > $@
1391else
1392%.ps: %.dot
1393 $(Echo) "Cannot build $@: The program dot is not installed"
1394endif
1395
1396# This rules ensures that header files that are removed still have a rule for
1397# which they can be "generated." This allows make to ignore them and
1398# reproduce the dependency lists.
1399%.h:: ;
1400%.hpp:: ;
1401
1402# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001403# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001404# errors or disastrous removal.
1405clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001406ifneq ($(strip $(ObjRootDir)),)
1407 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001408endif
1409 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1410ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1411 -$(Verb) $(RM) -f *$(SHLIBEXT)
1412endif
1413
1414clean-all-local::
1415 -$(Verb) $(RM) -rf Debug Release Profile
1416
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001417
1418###############################################################################
1419# DEPENDENCIES: Include the dependency files if we should
1420###############################################################################
1421ifndef DISABLE_AUTO_DEPENDENCIES
1422
1423# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001424ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001425
1426# Get the list of dependency files
1427DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1428DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1429
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001430-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001431
1432endif
1433
Misha Brukman89fe5162009-01-08 02:11:55 +00001434endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001435
1436###############################################################################
1437# CHECK: Running the test suite
1438###############################################################################
1439
1440check::
1441 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1442 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1443 $(EchoCmd) Running test suite ; \
1444 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1445 TESTSUITE=$(TESTSUITE) ; \
1446 else \
1447 $(EchoCmd) No Makefile in test directory ; \
1448 fi ; \
1449 else \
1450 $(EchoCmd) No test directory ; \
1451 fi
1452
1453###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001454# UNITTESTS: Running the unittests test suite
1455###############################################################################
1456
1457unittests::
1458 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1459 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1460 $(EchoCmd) Running unittests test suite ; \
1461 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1462 else \
1463 $(EchoCmd) No Makefile in unittests directory ; \
1464 fi ; \
1465 else \
1466 $(EchoCmd) No unittests directory ; \
1467 fi
1468
1469###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001470# DISTRIBUTION: Handle construction of a distribution tarball
1471###############################################################################
1472
1473#------------------------------------------------------------------------
1474# Define distribution related variables
1475#------------------------------------------------------------------------
1476DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1477DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1478TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1479DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1480DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1481DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1482DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1483 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1484 Makefile.config.in configure autoconf
1485DistOther := $(notdir $(wildcard \
1486 $(PROJ_SRC_DIR)/*.h \
1487 $(PROJ_SRC_DIR)/*.td \
1488 $(PROJ_SRC_DIR)/*.def \
1489 $(PROJ_SRC_DIR)/*.ll \
1490 $(PROJ_SRC_DIR)/*.in))
1491DistSubDirs := $(SubDirs)
1492DistSources = $(Sources) $(EXTRA_DIST)
1493DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1494
1495#------------------------------------------------------------------------
1496# We MUST build distribution with OBJ_DIR != SRC_DIR
1497#------------------------------------------------------------------------
1498ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1499dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1500 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1501
1502else
1503
1504#------------------------------------------------------------------------
1505# Prevent attempt to run dist targets from anywhere but the top level
1506#------------------------------------------------------------------------
1507ifneq ($(LEVEL),.)
1508dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1509 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1510else
1511
1512#------------------------------------------------------------------------
1513# Provide the top level targets
1514#------------------------------------------------------------------------
1515
1516dist-gzip:: $(DistTarGZip)
1517
1518$(DistTarGZip) : $(TopDistDir)/.makedistdir
1519 $(Echo) Packing gzipped distribution tar file.
1520 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1521 $(GZIP) -c > "$(DistTarGZip)"
1522
1523dist-bzip2:: $(DistTarBZ2)
1524
1525$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1526 $(Echo) Packing bzipped distribution tar file.
1527 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1528 $(BZIP2) -c >$(DistTarBZ2)
1529
1530dist-zip:: $(DistZip)
1531
1532$(DistZip) : $(TopDistDir)/.makedistdir
1533 $(Echo) Packing zipped distribution file.
1534 $(Verb) rm -f $(DistZip)
1535 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1536
Misha Brukman89fe5162009-01-08 02:11:55 +00001537dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001538 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1539
1540DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1541
1542dist-check:: $(DistTarGZip)
1543 $(Echo) Checking distribution tar file.
1544 $(Verb) if test -d $(DistCheckDir) ; then \
1545 $(RM) -rf $(DistCheckDir) ; \
1546 fi
1547 $(Verb) $(MKDIR) $(DistCheckDir)
1548 $(Verb) cd $(DistCheckDir) && \
1549 $(MKDIR) $(DistCheckDir)/build && \
1550 $(MKDIR) $(DistCheckDir)/install && \
1551 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1552 cd build && \
1553 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1554 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1555 $(MAKE) all && \
1556 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001557 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001558 $(MAKE) install && \
1559 $(MAKE) uninstall && \
1560 $(MAKE) dist-clean && \
1561 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1562
1563dist-clean::
1564 $(Echo) Cleaning distribution files
1565 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1566 $(DistCheckDir)
1567
1568endif
1569
1570#------------------------------------------------------------------------
1571# Provide the recursive distdir target for building the distribution directory
1572#------------------------------------------------------------------------
1573distdir: $(DistDir)/.makedistdir
1574$(DistDir)/.makedistdir: $(DistSources)
1575 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1576 if test -d "$(DistDir)" ; then \
1577 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1578 exit 1 ; \
1579 fi ; \
1580 $(EchoCmd) Removing old $(DistDir) ; \
1581 $(RM) -rf $(DistDir); \
1582 $(EchoCmd) Making 'all' to verify build ; \
1583 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1584 fi
1585 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001586 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001587 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1588 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1589 for file in $(DistFiles) ; do \
1590 case "$$file" in \
1591 $(PROJ_SRC_DIR)/*) \
1592 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1593 ;; \
1594 $(PROJ_SRC_ROOT)/*) \
1595 file=`echo "$$file" | \
1596 sed "s#^$$srcrootstrip/##"` \
1597 ;; \
1598 esac; \
1599 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1600 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1601 from_dir="$(PROJ_SRC_DIR)" ; \
1602 elif test -f "$$file" || test -d "$$file" ; then \
1603 from_dir=. ; \
1604 fi ; \
1605 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1606 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1607 to_dir="$(DistDir)/$$dir"; \
1608 $(MKDIR) "$$to_dir" ; \
1609 else \
1610 to_dir="$(DistDir)"; \
1611 fi; \
1612 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1613 if test -n "$$mid_dir" ; then \
1614 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1615 fi ; \
1616 if test -d "$$from_dir/$$file"; then \
1617 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1618 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1619 cd $(PROJ_SRC_DIR) ; \
1620 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1621 ( cd $$to_dir ; $(TAR) xf - ) ; \
1622 cd $(PROJ_OBJ_DIR) ; \
1623 else \
1624 cd $$from_dir ; \
1625 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1626 ( cd $$to_dir ; $(TAR) xf - ) ; \
1627 cd $(PROJ_OBJ_DIR) ; \
1628 fi; \
1629 elif test -f "$$from_dir/$$file" ; then \
1630 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1631 elif test -L "$$from_dir/$$file" ; then \
1632 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1633 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1634 $(EchoCmd) "===== WARNING: Distribution Source " \
1635 "$$from_dir/$$file Not Found!" ; \
1636 elif test "$(Verb)" != '@' ; then \
1637 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1638 fi; \
1639 done
1640 $(Verb) for subdir in $(DistSubDirs) ; do \
1641 if test "$$subdir" \!= "." ; then \
1642 new_distdir="$(DistDir)/$$subdir" ; \
1643 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1644 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1645 DistDir="$$new_distdir" distdir ) || exit 1; \
1646 fi; \
1647 done
1648 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1649 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1650 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1651 -name .svn \) -print` ;\
1652 $(MAKE) dist-hook ; \
1653 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1654 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1655 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1656 -o ! -type d ! -perm -444 -exec \
1657 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1658 || chmod -R a+r $(DistDir) ; \
1659 fi
1660
1661# This is invoked by distdir target, define it as a no-op to avoid errors if not
1662# defined by user.
1663dist-hook::
1664
1665endif
1666
1667###############################################################################
1668# TOP LEVEL - targets only to apply at the top level directory
1669###############################################################################
1670
1671ifeq ($(LEVEL),.)
1672
1673#------------------------------------------------------------------------
1674# Install support for the project's include files:
1675#------------------------------------------------------------------------
1676ifdef NO_INSTALL
1677install-local::
1678 $(Echo) Install circumvented with NO_INSTALL
1679uninstall-local::
1680 $(Echo) Uninstall circumvented with NO_INSTALL
1681else
1682install-local::
1683 $(Echo) Installing include files
1684 $(Verb) $(MKDIR) $(PROJ_includedir)
1685 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1686 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001687 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001688 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1689 grep -v .svn` ; do \
1690 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1691 if test \! -d "$$instdir" ; then \
1692 $(EchoCmd) Making install directory $$instdir ; \
1693 $(MKDIR) $$instdir ;\
1694 fi ; \
1695 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1696 done ; \
1697 fi
1698ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1699 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1700 cd $(PROJ_OBJ_ROOT)/include && \
1701 for hdr in `find . -type f -print | grep -v CVS` ; do \
1702 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1703 done ; \
1704 fi
1705endif
1706
1707uninstall-local::
1708 $(Echo) Uninstalling include files
1709 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1710 cd $(PROJ_SRC_ROOT)/include && \
1711 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001712 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001713 -o -name '*.in' ')' -print ')' | \
1714 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1715 cd $(PROJ_SRC_ROOT)/include && \
1716 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1717 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1718 fi
1719endif
1720endif
1721
1722check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001723 @echo searching for overlength lines in files: $(Sources)
1724 @echo
1725 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001726 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001727
1728check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001729 @echo searching for tabs in files: $(Sources)
1730 @echo
1731 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001732 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001733
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001734check-footprint:
1735 @ls -l $(LibDir) | awk '\
1736 BEGIN { sum = 0; } \
1737 { sum += $$5; } \
1738 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1739 @ls -l $(ToolDir) | awk '\
1740 BEGIN { sum = 0; } \
1741 { sum += $$5; } \
1742 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1743#------------------------------------------------------------------------
1744# Print out the directories used for building
1745#------------------------------------------------------------------------
1746printvars::
1747 $(Echo) "BuildMode : " '$(BuildMode)'
1748 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1749 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1750 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1751 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1752 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1753 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1754 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1755 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1756 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1757 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1758 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1759 $(Echo) "UserTargets : " '$(UserTargets)'
1760 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1761 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1762 $(Echo) "ObjDir : " '$(ObjDir)'
1763 $(Echo) "LibDir : " '$(LibDir)'
1764 $(Echo) "ToolDir : " '$(ToolDir)'
1765 $(Echo) "ExmplDir : " '$(ExmplDir)'
1766 $(Echo) "Sources : " '$(Sources)'
1767 $(Echo) "TDFiles : " '$(TDFiles)'
1768 $(Echo) "INCFiles : " '$(INCFiles)'
1769 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1770 $(Echo) "PreConditions: " '$(PreConditions)'
1771 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1772 $(Echo) "Compile.C : " '$(Compile.C)'
1773 $(Echo) "Archive : " '$(Archive)'
1774 $(Echo) "YaccFiles : " '$(YaccFiles)'
1775 $(Echo) "LexFiles : " '$(LexFiles)'
1776 $(Echo) "Module : " '$(Module)'
1777 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1778 $(Echo) "SubDirs : " '$(SubDirs)'
1779 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1780 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001781
1782###
1783# Debugging
1784
1785# General debugging rule, use 'make print-XXX' to print the
1786# definition, value and origin of XXX.
1787print-%:
1788 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))