blob: fca687cd89ca23ee7c04a38f664b89e395362870 [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
Anton Korobeynikovd26284c2009-08-14 18:53:19 +0000131# FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
Daniel Dunbare74973d2009-08-13 17:22:49 +0000132# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
133
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134.PRECIOUS: $(ConfigStatusScript)
Anton Korobeynikovd26284c2009-08-14 18:53:19 +0000135$(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 $(Echo) Reconfiguring with $<
137 $(Verb) cd $(PROJ_OBJ_ROOT) && \
138 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
139 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
140 fi ; \
141 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
142 $(ConfigStatusScript)
143
144#------------------------------------------------------------------------
145# Make sure the configuration makefile is up to date
146#------------------------------------------------------------------------
147ifneq ($(MakefileConfigIn),)
148$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
149 $(Echo) Regenerating $@
150 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
151endif
152
153ifneq ($(MakefileCommonIn),)
154$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
155 $(Echo) Regenerating $@
156 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
157endif
158
159#------------------------------------------------------------------------
160# If the Makefile in the source tree has been updated, copy it over into the
161# build tree. But, only do this if the source and object makefiles differ
162#------------------------------------------------------------------------
163ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
164
Gordon Henriksen4290f662008-03-10 15:58:40 +0000165Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 $(Echo) "Updating Makefile"
167 $(Verb) $(MKDIR) $(@D)
168 $(Verb) $(CP) -f $< $@
169
170# Copy the Makefile.* files unless we're in the root directory which avoids
171# the copying of Makefile.config.in or other things that should be explicitly
172# taken care of.
173$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
174 @case '$?' in \
175 *Makefile.rules) ;; \
176 *.in) ;; \
Gordon Henriksen4290f662008-03-10 15:58:40 +0000177 *) $(EchoCmd) "Updating $(@F)" ; \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 $(MKDIR) $(@D) ; \
179 $(CP) -f $< $@ ;; \
180 esac
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000181
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182endif
183
184#------------------------------------------------------------------------
185# Set up the basic dependencies
186#------------------------------------------------------------------------
187$(UserTargets):: $(PreConditions)
188
189all:: all-local
Anton Korobeynikov06565172008-11-10 07:33:13 +0000190clean:: clean-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191clean-all:: clean-local clean-all-local
192install:: install-local
193uninstall:: uninstall-local
Misha Brukman89fe5162009-01-08 02:11:55 +0000194install-local:: all-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195install-bytecode:: install-bytecode-local
196
197###############################################################################
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000198# LLVMC: Provide rules for compiling llvmc plugins
199###############################################################################
200
201ifdef LLVMC_PLUGIN
202
203LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
Mikhail Glushenkovd500a272009-06-23 20:46:48 +0000204CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000205REQUIRES_EH := 1
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000206
207ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
208 LD.Flags += -lCompilerDriver
209endif
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000210
211# Build a dynamic library if the user runs `make` directly from the plugin
212# directory.
213ifndef LLVMC_BUILTIN_PLUGIN
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000214 LOADABLE_MODULE = 1
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000215endif
216
217# TableGen stuff...
218ifneq ($(BUILT_SOURCES),)
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000219 LLVMC_BUILD_AUTOGENERATED_INC=1
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000220endif
221
222endif # LLVMC_PLUGIN
223
Mikhail Glushenkovbe76ef22009-06-25 01:07:00 +0000224ifdef LLVMC_BASED_DRIVER
225
226TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000227
Mikhail Glushenkovbe76ef22009-06-25 01:07:00 +0000228REQUIRES_EH := 1
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000229
230ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
231 LD.Flags += -lCompilerDriver
232else
233 LLVMLIBS = CompilerDriver.a
234 LINK_COMPONENTS = support system
235endif
Mikhail Glushenkovbe76ef22009-06-25 01:07:00 +0000236
237# Preprocessor magic that generates references to static variables in built-in
238# plugins.
239ifneq ($(LLVMC_BUILTIN_PLUGINS),)
240
241USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
242
243LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
244LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
245LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
246LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
247LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
248
249ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
250CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
251endif
252
253ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
254CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
255endif
256
257ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
258CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
259endif
260
261ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
262CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
263endif
264
265ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
266CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
267endif
268
269endif
270
271endif # LLVMC_BASED_DRIVER
272
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000273###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274# VARIABLES: Set up various variables based on configuration data
275###############################################################################
276
Daniel Dunbara89194e2008-10-03 19:11:19 +0000277# Variable for if this make is for a "cleaning" target
278ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
279 IS_CLEANING_TARGET=1
280endif
281
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000282#--------------------------------------------------------------------
283# Variables derived from configuration we are building
284#--------------------------------------------------------------------
285
286CPP.Defines :=
287# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
288# this can be overridden on the make command line.
Evan Cheng107dae12009-04-20 22:16:40 +0000289ifndef OPTIMIZE_OPTION
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000290 ifneq ($(HOST_OS),MingW)
Evan Cheng107dae12009-04-20 22:16:40 +0000291 OPTIMIZE_OPTION := -O3
292 else
293 OPTIMIZE_OPTION := -O2
294 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295endif
296
David Greene8cd590c2009-04-17 14:49:22 +0000297ifeq ($(ENABLE_OPTIMIZED),1)
298 BuildMode := Release
299 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000300 ifneq ($(HOST_OS),FreeBSD)
301 ifneq ($(HOST_OS),Darwin)
David Greene8cd590c2009-04-17 14:49:22 +0000302 OmitFramePointer := -fomit-frame-pointer
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303 endif
David Greene8cd590c2009-04-17 14:49:22 +0000304 endif
305
306 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Cheng95e92ae2009-04-20 22:49:59 +0000307 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
308 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000309 #ifeq ($(HOST_OS),Darwin)
Evan Cheng107dae12009-04-20 22:16:40 +0000310 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
311 #endif
David Greene8cd590c2009-04-17 14:49:22 +0000312 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
313 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
314 LD.Flags += $(OPTIMIZE_OPTION)
315else
316 BuildMode := Debug
317 CXX.Flags += -g
318 C.Flags += -g
319 LD.Flags += -g
320 KEEP_SYMBOLS := 1
321endif
322
323ifeq ($(ENABLE_PROFILING),1)
324 BuildMode := $(BuildMode)+Profile
325 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
326 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
327 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
328 KEEP_SYMBOLS := 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329endif
330
Daniel Dunbar886e1832008-09-02 17:35:16 +0000331#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
332# CXX.Flags += -fvisibility-inlines-hidden
333#endif
334
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000335# IF REQUIRES_EH=1 is specified then don't disable exceptions
336ifndef REQUIRES_EH
337 CXX.Flags += -fno-exceptions
338endif
339
Nicolas Geoffray0820ccc2009-08-19 22:04:44 +0000340ifdef REQUIRES_FRAME_POINTER
341 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
342 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
343 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
344endif
345
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346# IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
347ifndef REQUIRES_RTTI
348# CXX.Flags += -fno-rtti
349endif
350
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000351ifdef ENABLE_COVERAGE
352 BuildMode := $(BuildMode)+Coverage
Chris Lattner20cba1c2009-06-16 23:00:42 +0000353 CXX.Flags += -ftest-coverage -fprofile-arcs
354 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000355endif
356
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
358# then disable assertions by defining the appropriate preprocessor symbols.
359ifdef DISABLE_ASSERTIONS
Duncan Sands86a7a222009-03-27 11:35:00 +0000360 # Indicate that assertions are turned off using a minus sign
361 BuildMode := $(BuildMode)-Asserts
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362 CPP.Defines += -DNDEBUG
363else
364 CPP.Defines += -D_DEBUG
365endif
366
Misha Brukman89fe5162009-01-08 02:11:55 +0000367# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
368# configured), then enable expensive checks by defining the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369# appropriate preprocessor symbols.
370ifdef ENABLE_EXPENSIVE_CHECKS
371 BuildMode := $(BuildMode)+Checks
Duncan Sands871e55f2008-12-09 21:33:20 +0000372 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373endif
374
Nick Lewycky8d91e192009-02-26 07:44:16 +0000375# LOADABLE_MODULE implies several other things so we force them to be
376# defined/on.
377ifdef LOADABLE_MODULE
378 SHARED_LIBRARY := 1
Nick Lewycky8d91e192009-02-26 07:44:16 +0000379 LINK_LIBS_IN_SHARED := 1
380endif
381
382ifdef SHARED_LIBRARY
383 ENABLE_PIC := 1
384 PIC_FLAG = "(PIC)"
385endif
386
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387ifeq ($(ENABLE_PIC),1)
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000388 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky5b882f22009-02-21 08:41:09 +0000389 # Nothing. Win32 defaults to PIC and warns when given -fPIC
390 else
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000391 ifeq ($(HOST_OS),Darwin)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000392 # Common symbols not allowed in dylib files
Nick Lewycky5b882f22009-02-21 08:41:09 +0000393 CXX.Flags += -fno-common
394 C.Flags += -fno-common
395 else
396 # Linux and others; pass -fPIC
397 CXX.Flags += -fPIC
398 C.Flags += -fPIC
399 endif
400 endif
Mike Stump8efa3542009-05-08 23:08:58 +0000401else
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000402 ifeq ($(HOST_OS),Darwin)
Mike Stump8efa3542009-05-08 23:08:58 +0000403 CXX.Flags += -mdynamic-no-pic
404 C.Flags += -mdynamic-no-pic
405 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406endif
407
Eric Christopher06bf4822009-08-18 03:23:40 +0000408CXX.Flags += -Woverloaded-virtual
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409CPP.BaseFlags += $(CPP.Defines)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410AR.Flags := cru
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411
412# Make Floating point IEEE compliant on Alpha.
413ifeq ($(ARCH),Alpha)
414 CXX.Flags += -mieee
415 CPP.BaseFlags += -mieee
416ifeq ($(ENABLE_PIC),0)
417 CXX.Flags += -fPIC
418 CPP.BaseFlags += -fPIC
419endif
420endif
421
422ifeq ($(ARCH),Alpha)
423 LD.Flags += -Wl,--no-relax
424endif
425
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000426ifeq ($(HOST_OS),MingW)
Anton Korobeynikov025ddd42009-05-04 10:25:30 +0000427 ifeq ($(LLVM_CROSS_COMPILING),1)
428 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
429 ifdef TOOLNAME
430 LD.Flags += -Wl,--allow-multiple-definition
431 endif
432 endif
433endif
434
Jay Foad188e6472009-05-15 18:13:31 +0000435ifdef ENABLE_EXPENSIVE_CHECKS
436 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
437 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
438 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
Daniel Dunbar3b8513d2009-09-03 08:41:19 +0000439 CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
Jay Foad188e6472009-05-15 18:13:31 +0000440endif
441
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442#--------------------------------------------------------------------
443# Directory locations
444#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000445TargetMode :=
446ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000447 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000448endif
449
450ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000451ObjDir := $(ObjRootDir)
452LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
453ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
454ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
455LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
456LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
457LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458CFERuntimeLibDir := $(LLVMGCCDIR)/lib
459
460#--------------------------------------------------------------------
461# Full Paths To Compiled Tools and Utilities
462#--------------------------------------------------------------------
463EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
464Echo = @$(EchoCmd)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465ifndef LLVMAS
466LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
467endif
468ifndef TBLGEN
469 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000470 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471 else
472 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
473 endif
474endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000475LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000476ifndef LLVMLD
477LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
478endif
479ifndef LLVMDIS
480LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
481endif
482ifndef LLI
483LLI := $(LLVMToolDir)/lli$(EXEEXT)
484endif
485ifndef LLC
486LLC := $(LLVMToolDir)/llc$(EXEEXT)
487endif
488ifndef LOPT
489LOPT := $(LLVMToolDir)/opt$(EXEEXT)
490endif
491ifndef LBUGPOINT
492LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
493endif
494ifndef LUPGRADE
495LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
496endif
497ifeq ($(LLVMGCC_MAJVERS),3)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
499LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
500else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501LLVMGCCWITHPATH := $(LLVMGCC)
502LLVMGXXWITHPATH := $(LLVMGXX)
503endif
504
505#--------------------------------------------------------------------
506# Adjust to user's request
507#--------------------------------------------------------------------
508
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000509ifeq ($(HOST_OS),Darwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000510 DARWIN_VERSION := `sw_vers -productVersion`
511 # Strip a number like 10.4.7 to 10.4
512 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
513 # Get "4" out of 10.4 for later pieces in the makefile.
514 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendling3c0d23b2009-03-22 08:28:45 +0000515
Julien Lerouge64e1db82009-03-27 18:18:00 +0000516 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
Evan Chenge951aca2009-09-08 18:52:20 +0000517 -dynamiclib
518 ifneq ($(ARCH),ARM)
519 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
520 endif
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000521else
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000522 ifeq ($(HOST_OS),Cygwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000523 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000524 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000525 else
526 SharedLinkOptions=-shared
527 endif
528endif
529
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000530ifeq ($(TARGET_OS),Darwin)
Evan Chenge951aca2009-09-08 18:52:20 +0000531 ifneq ($(ARCH),ARM)
532 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
533 endif
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000534endif
535
Nick Lewycky8d91e192009-02-26 07:44:16 +0000536# Adjust LD.Flags depending on the kind of library that is to be built. Note
537# that if LOADABLE_MODULE is specified then the resulting shared library can
538# be opened with dlopen.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539ifdef LOADABLE_MODULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 LD.Flags += -module
541endif
542
543ifdef SHARED_LIBRARY
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000544ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky12015c12009-03-03 04:55:15 +0000545 LD.Flags += $(RPATH) -Wl,$(LibDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546endif
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000547endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548
549ifdef TOOL_VERBOSE
550 C.Flags += -v
551 CXX.Flags += -v
552 LD.Flags += -v
553 VERBOSE := 1
554endif
555
556# Adjust settings for verbose mode
557ifndef VERBOSE
558 Verb := @
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000559 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
561else
Misha Brukman89fe5162009-01-08 02:11:55 +0000562 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563endif
564
565# By default, strip symbol information from executable
566ifndef KEEP_SYMBOLS
567 Strip := $(PLATFORMSTRIPOPTS)
568 StripWarnMsg := "(without symbols)"
569 Install.StripFlag += -s
570endif
571
572# Adjust linker flags for building an executable
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000573ifneq ($(HOST_OS),Darwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000574ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575ifdef TOOLNAME
576ifdef EXAMPLE_TOOL
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000577 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578else
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000579 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580endif
581endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000582endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000583endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584
585#----------------------------------------------------------
586# Options To Invoke Tools
587#----------------------------------------------------------
588
Daniel Dunbarb47afd52009-05-12 07:26:49 +0000589ifndef NO_PEDANTIC
Duncan Sands7d9ea942009-06-19 12:40:30 +0000590CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbarb47afd52009-05-12 07:26:49 +0000591endif
Duncan Sands7d9ea942009-06-19 12:40:30 +0000592CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
593 $(EXTRA_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000594
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000595ifeq ($(HOST_OS),HP-UX)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
597endif
598
599# If we are building a universal binary on Mac OS/X, pass extra options. This
600# is useful to people that want to link the LLVM libraries into their universal
601# apps.
602#
603# The following can be optionally specified:
604# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
605# For Mac OS/X 10.4 Intel machines, the traditional one is:
606# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
607# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
608# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
609# i386/ppc only.
610ifdef UNIVERSAL
611 ifndef UNIVERSAL_ARCH
612 UNIVERSAL_ARCH := i386 ppc
613 endif
614 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
615 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000616 ifdef UNIVERSAL_SDK_PATH
617 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 endif
619
620 # Building universal cannot compute dependencies automatically.
621 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000622else
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000623 ifeq ($(TARGET_OS),Darwin)
Bill Wendling025cce52009-03-12 04:10:09 +0000624 ifeq ($(ARCH),x86_64)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000625 TargetCommonOpts = -m64
Bill Wendling025cce52009-03-12 04:10:09 +0000626 else
627 ifeq ($(ARCH),x86)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000628 TargetCommonOpts = -m32
Bill Wendling025cce52009-03-12 04:10:09 +0000629 endif
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000630 endif
631 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632endif
633
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000634ifeq ($(HOST_OS),SunOS)
Chris Lattner35c997c2008-06-24 17:44:42 +0000635CPP.BaseFlags += -include llvm/System/Solaris.h
636endif
637
Misha Brukman89fe5162009-01-08 02:11:55 +0000638LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000639CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000640# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000641CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
642 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000643 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
644 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
645 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000646
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000647ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher06bf4822009-08-18 03:23:40 +0000648 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000649 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher06bf4822009-08-18 03:23:40 +0000650 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
651 $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000652 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher06bf4822009-08-18 03:23:40 +0000653 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner20cba1c2009-06-16 23:00:42 +0000654 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopherd631dfc2009-08-18 18:07:35 +0000655 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
656 $(LDFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000657 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000658else
Eric Christopher06bf4822009-08-18 03:23:40 +0000659 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000660 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher06bf4822009-08-18 03:23:40 +0000661 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000662 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher06bf4822009-08-18 03:23:40 +0000663 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner20cba1c2009-06-16 23:00:42 +0000664 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopherd631dfc2009-08-18 18:07:35 +0000665 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000666 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000667endif
668
Eric Christopher06bf4822009-08-18 03:23:40 +0000669BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CFLAGS) \
670 $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000671 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher06bf4822009-08-18 03:23:40 +0000672Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000673 $(TargetCommonOpts) $(CompileCommonOpts) -E
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674
Eric Christopher06bf4822009-08-18 03:23:40 +0000675BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
676 $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000677 $(TargetCommonOpts) $(CompileCommonOpts)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678
Misha Brukman89fe5162009-01-08 02:11:55 +0000679ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
680ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000681DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000682
683# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
684# paths. In this case, the SYSPATH function (defined in
685# Makefile.config) transforms Unix paths into Windows paths.
686TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000687 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000688 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
689 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
690
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691Archive = $(AR) $(AR.Flags)
692LArchive = $(LLVMToolDir)/llvm-ar rcsf
693ifdef RANLIB
694Ranlib = $(RANLIB)
695else
696Ranlib = ranlib
697endif
698
699#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000700# Get the list of source files and compute object file
701# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702#----------------------------------------------------------
703
704ifndef SOURCES
705 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000706 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000707else
708 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000709endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710
711ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000712Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713endif
714
715BaseNameSources := $(sort $(basename $(Sources)))
716
717ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
719
720###############################################################################
721# DIRECTORIES: Handle recursive descent of directory structure
722###############################################################################
723
724#---------------------------------------------------------
725# Provide rules to make install dirs. This must be early
726# in the file so they get built before dependencies
727#---------------------------------------------------------
728
Mike Stump98f72e02009-02-12 23:45:11 +0000729$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000730 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000731
732# To create other directories, as needed, and timestamp their creation
733%/.dir:
734 $(Verb) $(MKDIR) $* > /dev/null
735 $(Verb) $(DATE) > $@
736
737.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
738.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
739
740#---------------------------------------------------------
741# Handle the DIRS options for sequential construction
742#---------------------------------------------------------
743
Misha Brukman89fe5162009-01-08 02:11:55 +0000744SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000745ifdef DIRS
746SubDirs += $(DIRS)
747
748ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
749$(RecursiveTargets)::
750 $(Verb) for dir in $(DIRS); do \
751 if [ ! -f $$dir/Makefile ]; then \
752 $(MKDIR) $$dir; \
753 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
754 fi; \
755 ($(MAKE) -C $$dir $@ ) || exit 1; \
756 done
757else
758$(RecursiveTargets)::
759 $(Verb) for dir in $(DIRS); do \
760 ($(MAKE) -C $$dir $@ ) || exit 1; \
761 done
762endif
763
764endif
765
766#---------------------------------------------------------
767# Handle the EXPERIMENTAL_DIRS options ensuring success
768# after each directory is built.
769#---------------------------------------------------------
770ifdef EXPERIMENTAL_DIRS
771$(RecursiveTargets)::
772 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
773 if [ ! -f $$dir/Makefile ]; then \
774 $(MKDIR) $$dir; \
775 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
776 fi; \
777 ($(MAKE) -C $$dir $@ ) || exit 0; \
778 done
779endif
780
781#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000782# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
783#-----------------------------------------------------------
784ifdef OPTIONAL_PARALLEL_DIRS
785 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
786endif
787
788#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789# Handle the PARALLEL_DIRS options for parallel construction
790#-----------------------------------------------------------
791ifdef PARALLEL_DIRS
792
793SubDirs += $(PARALLEL_DIRS)
794
795# Unfortunately, this list must be maintained if new recursive targets are added
796all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
797clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
798clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
799install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
800uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
801install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
802
803ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
804
805$(ParallelTargets) :
806 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
807 $(MKDIR) $(@D); \
808 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
809 fi; \
810 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
811endif
812
813#---------------------------------------------------------
814# Handle the OPTIONAL_DIRS options for directores that may
815# or may not exist.
816#---------------------------------------------------------
817ifdef OPTIONAL_DIRS
818
819SubDirs += $(OPTIONAL_DIRS)
820
821ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
822$(RecursiveTargets)::
823 $(Verb) for dir in $(OPTIONAL_DIRS); do \
824 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
825 if [ ! -f $$dir/Makefile ]; then \
826 $(MKDIR) $$dir; \
827 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
828 fi; \
829 ($(MAKE) -C$$dir $@ ) || exit 1; \
830 fi \
831 done
832else
833$(RecursiveTargets)::
834 $(Verb) for dir in $(OPTIONAL_DIRS); do \
835 ($(MAKE) -C$$dir $@ ) || exit 1; \
836 done
837endif
838endif
839
840#---------------------------------------------------------
841# Handle the CONFIG_FILES options
842#---------------------------------------------------------
843ifdef CONFIG_FILES
844
845ifdef NO_INSTALL
846install-local::
847 $(Echo) Install circumvented with NO_INSTALL
848uninstall-local::
849 $(Echo) UnInstall circumvented with NO_INSTALL
850else
851install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
852 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
853 $(Verb)for file in $(CONFIG_FILES); do \
854 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
855 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
856 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
857 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
858 else \
859 $(ECHO) Error: cannot find config file $${file}. ; \
860 fi \
861 done
862
863uninstall-local::
864 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
865 $(Verb)for file in $(CONFIG_FILES); do \
866 $(RM) -f $(PROJ_etcdir)/$${file} ; \
867 done
868endif
869
870endif
871
872###############################################################################
873# Set up variables for building libararies
874###############################################################################
875
876#---------------------------------------------------------
877# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000878# libraries needed when linking. There are "Proj" libs
879# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880# by the LLVM project).
881#---------------------------------------------------------
882
883ifdef USEDLIBS
884ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
885ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
886ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
887ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
888endif
889
890ifdef LLVMLIBS
891LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
892LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
893LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
894LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
895endif
896
Daniel Dunbara89194e2008-10-03 19:11:19 +0000897ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000898ifdef LINK_COMPONENTS
899
900# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
901# clean in tools, then do a make in tools (instead of at the top level).
902$(LLVM_CONFIG):
903 @echo "*** llvm-config doesn't exist - rebuilding it."
904 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000905
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
907
Mikhail Glushenkovfc320822009-03-03 10:03:27 +0000908LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
909LLVMLibsPaths += $(LLVM_CONFIG) \
Misha Brukmanfc6ae992009-08-17 15:31:24 +0000910 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911endif
912endif
913
914###############################################################################
915# Library Build Rules: Four ways to build a library
916###############################################################################
917
918#---------------------------------------------------------
919# Bytecode Module Targets:
920# If the user set MODULE_NAME then they want to build a
921# bytecode module from the sources. We compile all the
922# sources and link it together into a single bytecode
923# module.
924#---------------------------------------------------------
925
926ifdef MODULE_NAME
927ifeq ($(strip $(LLVMGCC)),)
928$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
929else
930
931Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000932LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933
934
935ifdef EXPORTED_SYMBOL_FILE
936LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
937endif
938
939$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
940 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
941 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
942
943all-local:: $(Module)
944
945clean-local::
946ifneq ($(strip $(Module)),)
947 -$(Verb) $(RM) -f $(Module)
948endif
949
950ifdef BYTECODE_DESTINATION
951ModuleDestDir := $(BYTECODE_DESTINATION)
952else
953ModuleDestDir := $(PROJ_libdir)
954endif
955
956ifdef NO_INSTALL
957install-local::
958 $(Echo) Install circumvented with NO_INSTALL
959uninstall-local::
960 $(Echo) Uninstall circumvented with NO_INSTALL
961else
962DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
963
964install-module:: $(DestModule)
965install-local:: $(DestModule)
966
Misha Brukman89fe5162009-01-08 02:11:55 +0000967$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000968 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
969 $(Verb) $(DataInstall) $(Module) $(DestModule)
970
971uninstall-local::
972 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
973 -$(Verb) $(RM) -f $(DestModule)
974endif
975
976endif
977endif
978
979# if we're building a library ...
980ifdef LIBRARYNAME
981
Misha Brukmanfc6ae992009-08-17 15:31:24 +0000982# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983LIBRARYNAME := $(strip $(LIBRARYNAME))
984ifdef LOADABLE_MODULE
Nick Lewycky8d91e192009-02-26 07:44:16 +0000985LibName.A := $(LibDir)/$(LIBRARYNAME).a
986LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky8d91e192009-02-26 07:44:16 +0000989LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
990endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991LibName.O := $(LibDir)/$(LIBRARYNAME).o
992LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
993
994#---------------------------------------------------------
995# Shared Library Targets:
996# If the user asked for a shared library to be built
997# with the SHARED_LIBRARY variable, then we provide
998# targets for building them.
999#---------------------------------------------------------
1000ifdef SHARED_LIBRARY
1001
Nick Lewycky8d91e192009-02-26 07:44:16 +00001002all-local:: $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001003
1004ifdef LINK_LIBS_IN_SHARED
1005ifdef LOADABLE_MODULE
1006SharedLibKindMessage := "Loadable Module"
1007else
1008SharedLibKindMessage := "Shared Library"
1009endif
Nick Lewycky8d91e192009-02-26 07:44:16 +00001010$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001011 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1012 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001013 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Edwin Töröke59edce2009-05-26 19:11:47 +00001014 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001015else
Nick Lewycky8d91e192009-02-26 07:44:16 +00001016$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001017 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001018 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019endif
1020
1021clean-local::
Nick Lewycky8d91e192009-02-26 07:44:16 +00001022ifneq ($(strip $(LibName.SO)),)
1023 -$(Verb) $(RM) -f $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001024endif
1025
1026ifdef NO_INSTALL
1027install-local::
1028 $(Echo) Install circumvented with NO_INSTALL
1029uninstall-local::
1030 $(Echo) Uninstall circumvented with NO_INSTALL
1031else
1032DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1033
1034install-local:: $(DestSharedLib)
1035
Nick Lewycky8d91e192009-02-26 07:44:16 +00001036$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001038 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039
Misha Brukman89fe5162009-01-08 02:11:55 +00001040uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1042 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
1043endif
1044endif
1045
1046#---------------------------------------------------------
1047# Bytecode Library Targets:
1048# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +00001049# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050# targets for building them.
1051#---------------------------------------------------------
1052ifdef BYTECODE_LIBRARY
1053ifeq ($(strip $(LLVMGCC)),)
1054$(warning Bytecode libraries require llvm-gcc which could not be found ****)
1055else
1056
1057all-local:: $(LibName.BCA)
1058
1059ifdef EXPORTED_SYMBOL_FILE
1060BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
1061 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1062
1063$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1064 $(LLVMToolDir)/llvm-ar
1065 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1066 "(internalize)"
Daniel Dunbarc6750c92009-08-28 16:14:46 +00001067 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068 $(Verb) $(RM) -f $@
Daniel Dunbarc6750c92009-08-28 16:14:46 +00001069 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070else
1071$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1072 $(LLVMToolDir)/llvm-ar
1073 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1074 $(Verb) $(RM) -f $@
1075 $(Verb) $(LArchive) $@ $(ObjectsBC)
1076
1077endif
1078
1079clean-local::
1080ifneq ($(strip $(LibName.BCA)),)
1081 -$(Verb) $(RM) -f $(LibName.BCA)
1082endif
1083
1084ifdef BYTECODE_DESTINATION
1085BytecodeDestDir := $(BYTECODE_DESTINATION)
1086else
1087BytecodeDestDir := $(PROJ_libdir)
1088endif
1089
Daniel Dunbar659cef82009-05-12 05:35:40 +00001090DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091
1092install-bytecode-local:: $(DestBytecodeLib)
1093
1094ifdef NO_INSTALL
1095install-local::
1096 $(Echo) Install circumvented with NO_INSTALL
1097uninstall-local::
1098 $(Echo) Uninstall circumvented with NO_INSTALL
1099else
1100install-local:: $(DestBytecodeLib)
1101
Mike Stump98f72e02009-02-12 23:45:11 +00001102$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001103 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1104 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1105
1106uninstall-local::
1107 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1108 -$(Verb) $(RM) -f $(DestBytecodeLib)
1109endif
1110endif
1111endif
1112
1113#---------------------------------------------------------
Chris Lattner20cba1c2009-06-16 23:00:42 +00001114# Library Targets:
1115# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1116# building an archive.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117#---------------------------------------------------------
1118ifndef BUILD_ARCHIVE
Chris Lattner20cba1c2009-06-16 23:00:42 +00001119ifndef LOADABLE_MODULE
1120BUILD_ARCHIVE = 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121endif
1122endif
1123
1124#---------------------------------------------------------
1125# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001126# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127# then we provide targets for building them.
1128#---------------------------------------------------------
1129ifdef BUILD_ARCHIVE
1130
1131all-local:: $(LibName.A)
1132
1133$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1134 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1135 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001136 $(Verb) $(Archive) $@ $(ObjectsO)
1137 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138
1139clean-local::
1140ifneq ($(strip $(LibName.A)),)
1141 -$(Verb) $(RM) -f $(LibName.A)
1142endif
1143
1144ifdef NO_INSTALL
1145install-local::
1146 $(Echo) Install circumvented with NO_INSTALL
1147uninstall-local::
1148 $(Echo) Uninstall circumvented with NO_INSTALL
1149else
1150DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1151
1152install-local:: $(DestArchiveLib)
1153
Mike Stump98f72e02009-02-12 23:45:11 +00001154$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1156 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001157 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001158
1159uninstall-local::
1160 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1161 -$(Verb) $(RM) -f $(DestArchiveLib)
1162endif
1163endif
1164
1165# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001166endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001167
1168###############################################################################
1169# Tool Build Rules: Build executable tool based on TOOLNAME option
1170###############################################################################
1171
1172ifdef TOOLNAME
1173
1174#---------------------------------------------------------
1175# Set up variables for building a tool.
1176#---------------------------------------------------------
1177ifdef EXAMPLE_TOOL
1178ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1179else
1180ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1181endif
1182
1183#---------------------------------------------------------
Chris Lattner8b04ea72009-02-26 17:47:49 +00001184# Prune Exports
1185#---------------------------------------------------------
1186
1187# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1188# not exporting all of the weak symbols from the binary. This reduces dyld
1189# startup time by 4x on darwin in some cases.
1190ifdef TOOL_NO_EXPORTS
Anton Korobeynikov92c51812009-08-18 00:40:33 +00001191ifeq ($(HOST_OS),Darwin)
Chris Lattnerc6c51352009-03-10 17:15:56 +00001192
1193# Tiger tools don't support this.
1194ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner8b04ea72009-02-26 17:47:49 +00001195LD.Flags += -Wl,-exported_symbol -Wl,_main
1196endif
Chris Lattnerc6c51352009-03-10 17:15:56 +00001197endif
Chris Lattner8b04ea72009-02-26 17:47:49 +00001198
Anton Korobeynikov92c51812009-08-18 00:40:33 +00001199ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Chris Lattner7c024612009-02-26 18:38:40 +00001200LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner8b04ea72009-02-26 17:47:49 +00001201endif
1202endif
1203
1204
1205#---------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001206# Provide targets for building the tools
1207#---------------------------------------------------------
1208all-local:: $(ToolBuildPath)
1209
1210clean-local::
1211ifneq ($(strip $(ToolBuildPath)),)
1212 -$(Verb) $(RM) -f $(ToolBuildPath)
1213endif
1214
1215ifdef EXAMPLE_TOOL
1216$(ToolBuildPath): $(ExmplDir)/.dir
1217else
1218$(ToolBuildPath): $(ToolDir)/.dir
1219endif
1220
1221$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1222 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001223 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001224 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1225 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001226 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001227
1228ifdef NO_INSTALL
1229install-local::
1230 $(Echo) Install circumvented with NO_INSTALL
1231uninstall-local::
1232 $(Echo) Uninstall circumvented with NO_INSTALL
1233else
Anton Korobeynikovfffdd942009-08-05 09:37:43 +00001234DestTool = $(PROJ_bindir)/$(TOOLNAME)$(EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001235
1236install-local:: $(DestTool)
1237
Mike Stump98f72e02009-02-12 23:45:11 +00001238$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001239 $(Echo) Installing $(BuildMode) $(DestTool)
1240 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1241
1242uninstall-local::
1243 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1244 -$(Verb) $(RM) -f $(DestTool)
1245endif
1246endif
1247
1248###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001249# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001250###############################################################################
1251
1252# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikov92c51812009-08-18 00:40:33 +00001253ifeq ($(HOST_OS),HP-UX)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001254 DISABLE_AUTO_DEPENDENCIES=1
1255endif
1256
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001257# Provide rule sets for when dependency generation is enabled
1258ifndef DISABLE_AUTO_DEPENDENCIES
1259
1260#---------------------------------------------------------
Nick Lewycky8d91e192009-02-26 07:44:16 +00001261# Create .o files in the ObjDir directory from the .cpp and .c files...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001262#---------------------------------------------------------
1263
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001264DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky8d91e192009-02-26 07:44:16 +00001265 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001266
Daniel Dunbar285108f2009-05-12 06:35:50 +00001267# If the build succeeded, move the dependency file over, otherwise
1268# remove it.
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001269DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1270 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1271
Nick Lewycky8d91e192009-02-26 07:44:16 +00001272$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001273 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001274 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001275 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001276
Nick Lewycky8d91e192009-02-26 07:44:16 +00001277$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001279 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001280 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001281
Nick Lewycky8d91e192009-02-26 07:44:16 +00001282$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001283 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001284 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001285 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001286
1287#---------------------------------------------------------
1288# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1289#---------------------------------------------------------
1290
Daniel Dunbar285108f2009-05-12 06:35:50 +00001291BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1292 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1293
1294# If the build succeeded, move the dependency file over, otherwise
1295# remove it.
1296BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1297 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1298
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001299$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1300 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001301 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1302 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1303 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001304
1305$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1306 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001307 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1308 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1309 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001310
1311$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1312 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001313 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1314 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1315 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001316
1317# Provide alternate rule sets if dependencies are disabled
1318else
1319
Nick Lewycky8d91e192009-02-26 07:44:16 +00001320$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001321 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001322 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001323
Nick Lewycky8d91e192009-02-26 07:44:16 +00001324$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001325 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001326 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001327
Nick Lewycky8d91e192009-02-26 07:44:16 +00001328$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001329 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001330 $(Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001331
1332$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1333 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1334 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001335
1336$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1337 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1338 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339
1340$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1341 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1342 $(BCCompile.C) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001343
1344endif
1345
1346
1347## Rules for building preprocessed (.i/.ii) outputs.
1348$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1349 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1350 $(Verb) $(Preprocess.CXX) $< -o $@
1351
1352$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1353 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1354 $(Verb) $(Preprocess.CXX) $< -o $@
1355
1356$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1357 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1358 $(Verb) $(Preprocess.C) $< -o $@
1359
1360
1361$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1362 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001363 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001364
1365$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1366 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001367 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001368
1369$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1370 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001371 $(Compile.C) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001372
1373
1374# make the C and C++ compilers strip debug info out of bytecode libraries.
1375ifdef DEBUG_RUNTIME
Dan Gohman25de0de2009-09-08 15:52:56 +00001376$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001377 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman25de0de2009-09-08 15:52:56 +00001378 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001379else
Dan Gohman25de0de2009-09-08 15:52:56 +00001380$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001381 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman25de0de2009-09-08 15:52:56 +00001382 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383endif
1384
1385
1386#---------------------------------------------------------
1387# Provide rule to build .bc files from .ll sources,
1388# regardless of dependencies
1389#---------------------------------------------------------
1390$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1391 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1392 $(Verb) $(LLVMAS) $< -f -o $@
1393
1394###############################################################################
1395# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1396###############################################################################
1397
1398ifdef TARGET
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001399TABLEGEN_INC_FILES_COMMON = 1
1400endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001401
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001402ifdef LLVMC_BUILD_AUTOGENERATED_INC
1403TABLEGEN_INC_FILES_COMMON = 1
1404endif
1405
1406ifdef TABLEGEN_INC_FILES_COMMON
1407
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001408INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1409INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1410.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1411
Misha Brukman89fe5162009-01-08 02:11:55 +00001412# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001413# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1414# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001415# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001416# dependencies of the .inc files are, unless the contents of the .inc file
1417# changes.
1418$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1419 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1420
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001421endif # TABLEGEN_INC_FILES_COMMON
1422
1423ifdef TARGET
1424
1425TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1426 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1427 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1428 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1429 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1430 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1431 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1432
Rafael Espindola4d8cd532009-03-10 17:58:54 +00001433# All of these files depend on tblgen and the .td files.
1434$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1435
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001436$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1437$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1438 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001439 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001440
1441$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1442$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1443 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001444 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001445
1446$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1447$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1448 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001449 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001450
1451$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1452$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1453 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001454 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001455
1456$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1457$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1458 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001459 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001460
1461$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1462$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1463 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001464 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001465
1466$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1467$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1468 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001469 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001470
Daniel Dunbara9b43082009-07-13 18:35:35 +00001471$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1472$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1473 $(Echo) "Building $(<F) assembly matcher with tblgen"
1474 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1475
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001476$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1477$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1478 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001479 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001480
1481$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1482$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001483 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001484 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001485
Dan Gohmanb75dead2008-08-13 20:19:35 +00001486$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1487$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1488 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1489 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1490
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001491$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1492$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1493 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001494 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001495
1496$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1497$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1498 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001499 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001500
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001501$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1502$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1503 $(Echo) "Building $(<F) calling convention information with tblgen"
1504 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1505
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001506clean-local::
1507 -$(Verb) $(RM) -f $(INCFiles)
1508
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001509endif # TARGET
1510
1511ifdef LLVMC_BUILD_AUTOGENERATED_INC
1512
Mikhail Glushenkov3b335a42009-04-21 19:46:10 +00001513LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1514 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001515
1516TDFiles := $(LLVMCPluginSrc) \
1517 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1518
1519$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1520 $(TBLGEN) $(TD_COMMON)
1521 $(Echo) "Building LLVMC configuration library with tblgen"
1522 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1523
1524endif # LLVMC_BUILD_AUTOGENERATED_INC
1525
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001526###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001527# OTHER RULES: Other rules needed
1528###############################################################################
1529
1530# To create postscript files from dot files...
1531ifneq ($(DOT),false)
1532%.ps: %.dot
1533 $(DOT) -Tps < $< > $@
1534else
1535%.ps: %.dot
1536 $(Echo) "Cannot build $@: The program dot is not installed"
1537endif
1538
1539# This rules ensures that header files that are removed still have a rule for
1540# which they can be "generated." This allows make to ignore them and
1541# reproduce the dependency lists.
1542%.h:: ;
1543%.hpp:: ;
1544
1545# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001546# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001547# errors or disastrous removal.
1548clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001549ifneq ($(strip $(ObjRootDir)),)
1550 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001551endif
1552 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1553ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1554 -$(Verb) $(RM) -f *$(SHLIBEXT)
1555endif
1556
1557clean-all-local::
1558 -$(Verb) $(RM) -rf Debug Release Profile
1559
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001560
1561###############################################################################
1562# DEPENDENCIES: Include the dependency files if we should
1563###############################################################################
1564ifndef DISABLE_AUTO_DEPENDENCIES
1565
1566# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001567ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001568
1569# Get the list of dependency files
Daniel Dunbar285108f2009-05-12 06:35:50 +00001570DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1571DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1572
1573# Include bitcode dependency files if using bitcode libraries
1574ifdef BYTECODE_LIBRARY
1575DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1576endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001577
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001578-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001579
1580endif
1581
Misha Brukman89fe5162009-01-08 02:11:55 +00001582endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001583
1584###############################################################################
1585# CHECK: Running the test suite
1586###############################################################################
1587
Bill Wendlingea4af672009-04-09 18:26:57 +00001588check::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001589 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1590 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1591 $(EchoCmd) Running test suite ; \
1592 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1593 TESTSUITE=$(TESTSUITE) ; \
1594 else \
1595 $(EchoCmd) No Makefile in test directory ; \
1596 fi ; \
1597 else \
1598 $(EchoCmd) No test directory ; \
1599 fi
1600
Daniel Dunbar12ffa4d2009-09-08 05:31:44 +00001601check-lit::
1602 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1603 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1604 $(EchoCmd) Running test suite ; \
1605 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1606 else \
1607 $(EchoCmd) No Makefile in test directory ; \
1608 fi ; \
1609 else \
1610 $(EchoCmd) No test directory ; \
1611 fi
1612
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001614# UNITTESTS: Running the unittests test suite
1615###############################################################################
1616
Bill Wendlingea4af672009-04-09 18:26:57 +00001617unittests::
Bill Wendling2e3646a2009-01-04 23:12:21 +00001618 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1619 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1620 $(EchoCmd) Running unittests test suite ; \
1621 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1622 else \
1623 $(EchoCmd) No Makefile in unittests directory ; \
1624 fi ; \
1625 else \
1626 $(EchoCmd) No unittests directory ; \
1627 fi
1628
1629###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001630# DISTRIBUTION: Handle construction of a distribution tarball
1631###############################################################################
1632
1633#------------------------------------------------------------------------
1634# Define distribution related variables
1635#------------------------------------------------------------------------
1636DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1637DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1638TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1639DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1640DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1641DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1642DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1643 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1644 Makefile.config.in configure autoconf
1645DistOther := $(notdir $(wildcard \
1646 $(PROJ_SRC_DIR)/*.h \
1647 $(PROJ_SRC_DIR)/*.td \
1648 $(PROJ_SRC_DIR)/*.def \
1649 $(PROJ_SRC_DIR)/*.ll \
1650 $(PROJ_SRC_DIR)/*.in))
1651DistSubDirs := $(SubDirs)
1652DistSources = $(Sources) $(EXTRA_DIST)
1653DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1654
1655#------------------------------------------------------------------------
1656# We MUST build distribution with OBJ_DIR != SRC_DIR
1657#------------------------------------------------------------------------
1658ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1659dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1660 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1661
1662else
1663
1664#------------------------------------------------------------------------
1665# Prevent attempt to run dist targets from anywhere but the top level
1666#------------------------------------------------------------------------
1667ifneq ($(LEVEL),.)
1668dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1669 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1670else
1671
1672#------------------------------------------------------------------------
1673# Provide the top level targets
1674#------------------------------------------------------------------------
1675
1676dist-gzip:: $(DistTarGZip)
1677
1678$(DistTarGZip) : $(TopDistDir)/.makedistdir
1679 $(Echo) Packing gzipped distribution tar file.
1680 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1681 $(GZIP) -c > "$(DistTarGZip)"
1682
1683dist-bzip2:: $(DistTarBZ2)
1684
1685$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1686 $(Echo) Packing bzipped distribution tar file.
1687 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1688 $(BZIP2) -c >$(DistTarBZ2)
1689
1690dist-zip:: $(DistZip)
1691
1692$(DistZip) : $(TopDistDir)/.makedistdir
1693 $(Echo) Packing zipped distribution file.
1694 $(Verb) rm -f $(DistZip)
1695 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1696
Misha Brukman89fe5162009-01-08 02:11:55 +00001697dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001698 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1699
1700DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1701
1702dist-check:: $(DistTarGZip)
1703 $(Echo) Checking distribution tar file.
1704 $(Verb) if test -d $(DistCheckDir) ; then \
1705 $(RM) -rf $(DistCheckDir) ; \
1706 fi
1707 $(Verb) $(MKDIR) $(DistCheckDir)
1708 $(Verb) cd $(DistCheckDir) && \
1709 $(MKDIR) $(DistCheckDir)/build && \
1710 $(MKDIR) $(DistCheckDir)/install && \
1711 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1712 cd build && \
1713 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1714 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1715 $(MAKE) all && \
1716 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001717 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001718 $(MAKE) install && \
1719 $(MAKE) uninstall && \
1720 $(MAKE) dist-clean && \
1721 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1722
1723dist-clean::
1724 $(Echo) Cleaning distribution files
1725 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1726 $(DistCheckDir)
1727
1728endif
1729
1730#------------------------------------------------------------------------
1731# Provide the recursive distdir target for building the distribution directory
1732#------------------------------------------------------------------------
1733distdir: $(DistDir)/.makedistdir
1734$(DistDir)/.makedistdir: $(DistSources)
1735 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1736 if test -d "$(DistDir)" ; then \
1737 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1738 exit 1 ; \
1739 fi ; \
1740 $(EchoCmd) Removing old $(DistDir) ; \
1741 $(RM) -rf $(DistDir); \
1742 $(EchoCmd) Making 'all' to verify build ; \
1743 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1744 fi
1745 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001746 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001747 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1748 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1749 for file in $(DistFiles) ; do \
1750 case "$$file" in \
1751 $(PROJ_SRC_DIR)/*) \
1752 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1753 ;; \
1754 $(PROJ_SRC_ROOT)/*) \
1755 file=`echo "$$file" | \
1756 sed "s#^$$srcrootstrip/##"` \
1757 ;; \
1758 esac; \
1759 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1760 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1761 from_dir="$(PROJ_SRC_DIR)" ; \
1762 elif test -f "$$file" || test -d "$$file" ; then \
1763 from_dir=. ; \
1764 fi ; \
1765 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1766 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1767 to_dir="$(DistDir)/$$dir"; \
1768 $(MKDIR) "$$to_dir" ; \
1769 else \
1770 to_dir="$(DistDir)"; \
1771 fi; \
1772 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1773 if test -n "$$mid_dir" ; then \
1774 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1775 fi ; \
1776 if test -d "$$from_dir/$$file"; then \
1777 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1778 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1779 cd $(PROJ_SRC_DIR) ; \
1780 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1781 ( cd $$to_dir ; $(TAR) xf - ) ; \
1782 cd $(PROJ_OBJ_DIR) ; \
1783 else \
1784 cd $$from_dir ; \
1785 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1786 ( cd $$to_dir ; $(TAR) xf - ) ; \
1787 cd $(PROJ_OBJ_DIR) ; \
1788 fi; \
1789 elif test -f "$$from_dir/$$file" ; then \
1790 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1791 elif test -L "$$from_dir/$$file" ; then \
1792 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1793 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1794 $(EchoCmd) "===== WARNING: Distribution Source " \
1795 "$$from_dir/$$file Not Found!" ; \
1796 elif test "$(Verb)" != '@' ; then \
1797 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1798 fi; \
1799 done
1800 $(Verb) for subdir in $(DistSubDirs) ; do \
1801 if test "$$subdir" \!= "." ; then \
1802 new_distdir="$(DistDir)/$$subdir" ; \
1803 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1804 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1805 DistDir="$$new_distdir" distdir ) || exit 1; \
1806 fi; \
1807 done
1808 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1809 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1810 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1811 -name .svn \) -print` ;\
1812 $(MAKE) dist-hook ; \
1813 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1814 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1815 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1816 -o ! -type d ! -perm -444 -exec \
1817 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1818 || chmod -R a+r $(DistDir) ; \
1819 fi
1820
1821# This is invoked by distdir target, define it as a no-op to avoid errors if not
1822# defined by user.
1823dist-hook::
1824
1825endif
1826
1827###############################################################################
1828# TOP LEVEL - targets only to apply at the top level directory
1829###############################################################################
1830
1831ifeq ($(LEVEL),.)
1832
1833#------------------------------------------------------------------------
1834# Install support for the project's include files:
1835#------------------------------------------------------------------------
1836ifdef NO_INSTALL
1837install-local::
1838 $(Echo) Install circumvented with NO_INSTALL
1839uninstall-local::
1840 $(Echo) Uninstall circumvented with NO_INSTALL
1841else
1842install-local::
1843 $(Echo) Installing include files
1844 $(Verb) $(MKDIR) $(PROJ_includedir)
1845 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1846 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001847 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001848 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1849 grep -v .svn` ; do \
1850 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1851 if test \! -d "$$instdir" ; then \
1852 $(EchoCmd) Making install directory $$instdir ; \
1853 $(MKDIR) $$instdir ;\
1854 fi ; \
1855 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1856 done ; \
1857 fi
1858ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1859 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1860 cd $(PROJ_OBJ_ROOT)/include && \
1861 for hdr in `find . -type f -print | grep -v CVS` ; do \
1862 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1863 done ; \
1864 fi
1865endif
1866
1867uninstall-local::
1868 $(Echo) Uninstalling include files
1869 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1870 cd $(PROJ_SRC_ROOT)/include && \
1871 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001872 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001873 -o -name '*.in' ')' -print ')' | \
1874 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1875 cd $(PROJ_SRC_ROOT)/include && \
1876 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1877 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1878 fi
1879endif
1880endif
1881
1882check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001883 @echo searching for overlength lines in files: $(Sources)
1884 @echo
1885 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001886 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001887
1888check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001889 @echo searching for tabs in files: $(Sources)
1890 @echo
1891 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001892 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001893
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001894check-footprint:
1895 @ls -l $(LibDir) | awk '\
1896 BEGIN { sum = 0; } \
1897 { sum += $$5; } \
1898 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1899 @ls -l $(ToolDir) | awk '\
1900 BEGIN { sum = 0; } \
1901 { sum += $$5; } \
1902 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1903#------------------------------------------------------------------------
1904# Print out the directories used for building
1905#------------------------------------------------------------------------
1906printvars::
1907 $(Echo) "BuildMode : " '$(BuildMode)'
1908 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1909 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1910 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1911 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1912 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1913 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1914 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1915 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1916 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1917 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1918 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1919 $(Echo) "UserTargets : " '$(UserTargets)'
1920 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1921 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1922 $(Echo) "ObjDir : " '$(ObjDir)'
1923 $(Echo) "LibDir : " '$(LibDir)'
1924 $(Echo) "ToolDir : " '$(ToolDir)'
1925 $(Echo) "ExmplDir : " '$(ExmplDir)'
1926 $(Echo) "Sources : " '$(Sources)'
1927 $(Echo) "TDFiles : " '$(TDFiles)'
1928 $(Echo) "INCFiles : " '$(INCFiles)'
1929 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1930 $(Echo) "PreConditions: " '$(PreConditions)'
1931 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1932 $(Echo) "Compile.C : " '$(Compile.C)'
1933 $(Echo) "Archive : " '$(Archive)'
1934 $(Echo) "YaccFiles : " '$(YaccFiles)'
1935 $(Echo) "LexFiles : " '$(LexFiles)'
1936 $(Echo) "Module : " '$(Module)'
1937 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1938 $(Echo) "SubDirs : " '$(SubDirs)'
1939 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1940 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001941
1942###
1943# Debugging
1944
Daniel Dunbara6b02752009-03-06 22:23:25 +00001945# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001946# definition, value and origin of XXX.
Daniel Dunbara6b02752009-03-06 22:23:25 +00001947make-print-%:
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001948 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))