blob: 48cb690be285f6aadd473874848cac0c8fbe6658 [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#--------------------------------------------------------------------
Daniel Dunbar4f1c6552009-09-13 22:39:27 +000022RecursiveTargets := all clean clean-all install uninstall install-bytecode \
23 unitcheck
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024LocalTargets := all-local clean-local clean-all-local check-local \
25 install-local printvars uninstall-local \
Daniel Dunbar4f1c6552009-09-13 22:39:27 +000026 install-bytecode-local
Chris Lattner42596062007-09-26 06:10:47 +000027TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling2e3646a2009-01-04 23:12:21 +000028 dist-zip unittests
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30InternalTargets := preconditions distdir dist-hook
31
32################################################################################
33# INITIALIZATION: Basic things the makefile needs
34################################################################################
35
36#--------------------------------------------------------------------
37# Set the VPATH so that we can find source files.
38#--------------------------------------------------------------------
39VPATH=$(PROJ_SRC_DIR)
40
41#--------------------------------------------------------------------
42# Reset the list of suffixes we know how to build.
43#--------------------------------------------------------------------
44.SUFFIXES:
Nick Lewycky8d91e192009-02-26 07:44:16 +000045.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
47
48#--------------------------------------------------------------------
49# Mark all of these targets as phony to avoid implicit rule search
50#--------------------------------------------------------------------
51.PHONY: $(UserTargets) $(InternalTargets)
52
53#--------------------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +000054# Make sure all the user-target rules are double colon rules and
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055# they are defined first.
56#--------------------------------------------------------------------
57
58$(UserTargets)::
59
60################################################################################
61# PRECONDITIONS: that which must be built/checked first
62################################################################################
63
64SrcMakefiles := $(filter %Makefile %Makefile.tests,\
65 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67ConfigureScript := $(PROJ_SRC_ROOT)/configure
68ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
72MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
73PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
74ifneq ($(MakefileCommonIn),)
75PreConditions += $(MakefileCommon)
76endif
77
78ifneq ($(MakefileConfigIn),)
79PreConditions += $(MakefileConfig)
80endif
81
82preconditions: $(PreConditions)
83
84#------------------------------------------------------------------------
85# Make sure the BUILT_SOURCES are built first
86#------------------------------------------------------------------------
87$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
88
89clean-all-local::
90ifneq ($(strip $(BUILT_SOURCES)),)
91 -$(Verb) $(RM) -f $(BUILT_SOURCES)
92endif
93
94ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
95spotless:
96 $(Verb) if test -x config.status ; then \
97 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
98 $(MKDIR) .spotless.save ; \
99 $(MV) config.status .spotless.save ; \
100 $(MV) mklib .spotless.save ; \
101 $(MV) projects .spotless.save ; \
102 $(RM) -rf * ; \
103 $(MV) .spotless.save/config.status . ; \
104 $(MV) .spotless.save/mklib . ; \
105 $(MV) .spotless.save/projects . ; \
106 $(RM) -rf .spotless.save ; \
107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
110 else \
111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
112 fi
113else
114spotless:
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
116endif
117
118$(BUILT_SOURCES) : $(ObjMakefiles)
119
120#------------------------------------------------------------------------
121# Make sure we're not using a stale configuration
122#------------------------------------------------------------------------
123reconfigure:
124 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125 $(Verb) cd $(PROJ_OBJ_ROOT) && \
126 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
128 fi ; \
129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
131
Anton Korobeynikovd26284c2009-08-14 18:53:19 +0000132# FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
Daniel Dunbare74973d2009-08-13 17:22:49 +0000133# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
134
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135.PRECIOUS: $(ConfigStatusScript)
Anton Korobeynikovd26284c2009-08-14 18:53:19 +0000136$(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 +0000137 $(Echo) Reconfiguring with $<
138 $(Verb) cd $(PROJ_OBJ_ROOT) && \
139 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
140 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
141 fi ; \
142 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
143 $(ConfigStatusScript)
144
145#------------------------------------------------------------------------
146# Make sure the configuration makefile is up to date
147#------------------------------------------------------------------------
148ifneq ($(MakefileConfigIn),)
149$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
150 $(Echo) Regenerating $@
151 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
152endif
153
154ifneq ($(MakefileCommonIn),)
155$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
156 $(Echo) Regenerating $@
157 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
158endif
159
160#------------------------------------------------------------------------
161# If the Makefile in the source tree has been updated, copy it over into the
162# build tree. But, only do this if the source and object makefiles differ
163#------------------------------------------------------------------------
164ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
165
Gordon Henriksen4290f662008-03-10 15:58:40 +0000166Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 $(Echo) "Updating Makefile"
168 $(Verb) $(MKDIR) $(@D)
169 $(Verb) $(CP) -f $< $@
170
171# Copy the Makefile.* files unless we're in the root directory which avoids
172# the copying of Makefile.config.in or other things that should be explicitly
173# taken care of.
174$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
175 @case '$?' in \
176 *Makefile.rules) ;; \
177 *.in) ;; \
Gordon Henriksen4290f662008-03-10 15:58:40 +0000178 *) $(EchoCmd) "Updating $(@F)" ; \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 $(MKDIR) $(@D) ; \
180 $(CP) -f $< $@ ;; \
181 esac
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000182
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183endif
184
185#------------------------------------------------------------------------
186# Set up the basic dependencies
187#------------------------------------------------------------------------
188$(UserTargets):: $(PreConditions)
189
190all:: all-local
Anton Korobeynikov06565172008-11-10 07:33:13 +0000191clean:: clean-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192clean-all:: clean-local clean-all-local
193install:: install-local
194uninstall:: uninstall-local
Misha Brukman89fe5162009-01-08 02:11:55 +0000195install-local:: all-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196install-bytecode:: install-bytecode-local
197
198###############################################################################
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000199# LLVMC: Provide rules for compiling llvmc plugins
200###############################################################################
201
202ifdef LLVMC_PLUGIN
203
204LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
Mikhail Glushenkovd500a272009-06-23 20:46:48 +0000205CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000206REQUIRES_EH := 1
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000207
208ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
209 LD.Flags += -lCompilerDriver
210endif
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000211
212# Build a dynamic library if the user runs `make` directly from the plugin
213# directory.
214ifndef LLVMC_BUILTIN_PLUGIN
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000215 LOADABLE_MODULE = 1
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000216endif
217
218# TableGen stuff...
219ifneq ($(BUILT_SOURCES),)
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000220 LLVMC_BUILD_AUTOGENERATED_INC=1
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000221endif
222
223endif # LLVMC_PLUGIN
224
Mikhail Glushenkovbe76ef22009-06-25 01:07:00 +0000225ifdef LLVMC_BASED_DRIVER
226
227TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000228
Mikhail Glushenkovbe76ef22009-06-25 01:07:00 +0000229REQUIRES_EH := 1
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000230
231ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
232 LD.Flags += -lCompilerDriver
233else
234 LLVMLIBS = CompilerDriver.a
235 LINK_COMPONENTS = support system
236endif
Mikhail Glushenkovbe76ef22009-06-25 01:07:00 +0000237
238# Preprocessor magic that generates references to static variables in built-in
239# plugins.
240ifneq ($(LLVMC_BUILTIN_PLUGINS),)
241
242USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
243
244LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
245LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
246LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
247LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
248LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
249
250ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
251CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
252endif
253
254ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
255CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
256endif
257
258ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
259CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
260endif
261
262ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
263CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
264endif
265
266ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
267CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
268endif
269
270endif
271
272endif # LLVMC_BASED_DRIVER
273
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000274###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275# VARIABLES: Set up various variables based on configuration data
276###############################################################################
277
Daniel Dunbara89194e2008-10-03 19:11:19 +0000278# Variable for if this make is for a "cleaning" target
279ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
280 IS_CLEANING_TARGET=1
281endif
282
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283#--------------------------------------------------------------------
284# Variables derived from configuration we are building
285#--------------------------------------------------------------------
286
287CPP.Defines :=
288# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
289# this can be overridden on the make command line.
Evan Cheng107dae12009-04-20 22:16:40 +0000290ifndef OPTIMIZE_OPTION
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000291 ifneq ($(HOST_OS),MingW)
Evan Cheng107dae12009-04-20 22:16:40 +0000292 OPTIMIZE_OPTION := -O3
293 else
294 OPTIMIZE_OPTION := -O2
295 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296endif
297
David Greene8cd590c2009-04-17 14:49:22 +0000298ifeq ($(ENABLE_OPTIMIZED),1)
299 BuildMode := Release
300 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000301 ifneq ($(HOST_OS),FreeBSD)
302 ifneq ($(HOST_OS),Darwin)
David Greene8cd590c2009-04-17 14:49:22 +0000303 OmitFramePointer := -fomit-frame-pointer
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000304 endif
David Greene8cd590c2009-04-17 14:49:22 +0000305 endif
306
307 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Cheng95e92ae2009-04-20 22:49:59 +0000308 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
309 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000310 #ifeq ($(HOST_OS),Darwin)
Evan Cheng107dae12009-04-20 22:16:40 +0000311 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
312 #endif
David Greene8cd590c2009-04-17 14:49:22 +0000313 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
314 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
315 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskine2de4712009-09-25 16:46:09 +0000316 ifdef DEBUG_RUNTIME
317 BuildMode := $(BuildMode)+Debug
318 CXX.Flags += -g
319 C.Flags += -g
320 LD.Flags += -g
321 KEEP_SYMBOLS := 1
322 endif
David Greene8cd590c2009-04-17 14:49:22 +0000323else
324 BuildMode := Debug
325 CXX.Flags += -g
326 C.Flags += -g
327 LD.Flags += -g
328 KEEP_SYMBOLS := 1
329endif
330
331ifeq ($(ENABLE_PROFILING),1)
332 BuildMode := $(BuildMode)+Profile
333 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
334 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
335 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
336 KEEP_SYMBOLS := 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337endif
338
Daniel Dunbar886e1832008-09-02 17:35:16 +0000339#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
340# CXX.Flags += -fvisibility-inlines-hidden
341#endif
342
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343# IF REQUIRES_EH=1 is specified then don't disable exceptions
344ifndef REQUIRES_EH
345 CXX.Flags += -fno-exceptions
346endif
347
Nicolas Geoffray0820ccc2009-08-19 22:04:44 +0000348ifdef REQUIRES_FRAME_POINTER
349 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
350 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
351 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
352endif
353
Daniel Dunbard11bf272009-09-11 15:47:24 +0000354# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
355ifeq ($(REQUIRES_RTTI), 1)
Daniel Dunbar79857172009-09-11 15:45:13 +0000356 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
357 CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358endif
359
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000360ifdef ENABLE_COVERAGE
361 BuildMode := $(BuildMode)+Coverage
Chris Lattner20cba1c2009-06-16 23:00:42 +0000362 CXX.Flags += -ftest-coverage -fprofile-arcs
363 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000364endif
365
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
367# then disable assertions by defining the appropriate preprocessor symbols.
368ifdef DISABLE_ASSERTIONS
Duncan Sands86a7a222009-03-27 11:35:00 +0000369 # Indicate that assertions are turned off using a minus sign
370 BuildMode := $(BuildMode)-Asserts
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 CPP.Defines += -DNDEBUG
372else
373 CPP.Defines += -D_DEBUG
374endif
375
Misha Brukman89fe5162009-01-08 02:11:55 +0000376# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
377# configured), then enable expensive checks by defining the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378# appropriate preprocessor symbols.
379ifdef ENABLE_EXPENSIVE_CHECKS
380 BuildMode := $(BuildMode)+Checks
Duncan Sands871e55f2008-12-09 21:33:20 +0000381 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382endif
383
Nick Lewycky8d91e192009-02-26 07:44:16 +0000384# LOADABLE_MODULE implies several other things so we force them to be
385# defined/on.
386ifdef LOADABLE_MODULE
387 SHARED_LIBRARY := 1
Nick Lewycky8d91e192009-02-26 07:44:16 +0000388 LINK_LIBS_IN_SHARED := 1
389endif
390
391ifdef SHARED_LIBRARY
392 ENABLE_PIC := 1
393 PIC_FLAG = "(PIC)"
394endif
395
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396ifeq ($(ENABLE_PIC),1)
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000397 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky5b882f22009-02-21 08:41:09 +0000398 # Nothing. Win32 defaults to PIC and warns when given -fPIC
399 else
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000400 ifeq ($(HOST_OS),Darwin)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000401 # Common symbols not allowed in dylib files
Nick Lewycky5b882f22009-02-21 08:41:09 +0000402 CXX.Flags += -fno-common
403 C.Flags += -fno-common
404 else
405 # Linux and others; pass -fPIC
406 CXX.Flags += -fPIC
407 C.Flags += -fPIC
408 endif
409 endif
Mike Stump8efa3542009-05-08 23:08:58 +0000410else
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000411 ifeq ($(HOST_OS),Darwin)
Mike Stump8efa3542009-05-08 23:08:58 +0000412 CXX.Flags += -mdynamic-no-pic
413 C.Flags += -mdynamic-no-pic
414 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415endif
416
Eric Christopher06bf4822009-08-18 03:23:40 +0000417CXX.Flags += -Woverloaded-virtual
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418CPP.BaseFlags += $(CPP.Defines)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419AR.Flags := cru
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420
421# Make Floating point IEEE compliant on Alpha.
422ifeq ($(ARCH),Alpha)
423 CXX.Flags += -mieee
424 CPP.BaseFlags += -mieee
425ifeq ($(ENABLE_PIC),0)
426 CXX.Flags += -fPIC
427 CPP.BaseFlags += -fPIC
428endif
429endif
430
431ifeq ($(ARCH),Alpha)
432 LD.Flags += -Wl,--no-relax
433endif
434
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000435ifeq ($(HOST_OS),MingW)
Anton Korobeynikov025ddd42009-05-04 10:25:30 +0000436 ifeq ($(LLVM_CROSS_COMPILING),1)
437 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
438 ifdef TOOLNAME
439 LD.Flags += -Wl,--allow-multiple-definition
440 endif
441 endif
442endif
443
Jay Foad188e6472009-05-15 18:13:31 +0000444ifdef ENABLE_EXPENSIVE_CHECKS
445 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
446 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
447 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
Daniel Dunbar3b8513d2009-09-03 08:41:19 +0000448 CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
Jay Foad188e6472009-05-15 18:13:31 +0000449endif
450
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451#--------------------------------------------------------------------
452# Directory locations
453#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000454TargetMode :=
455ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000456 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000457endif
458
459ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000460ObjDir := $(ObjRootDir)
461LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
462ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
463ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
464LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
465LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
466LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467CFERuntimeLibDir := $(LLVMGCCDIR)/lib
468
469#--------------------------------------------------------------------
470# Full Paths To Compiled Tools and Utilities
471#--------------------------------------------------------------------
472EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
473Echo = @$(EchoCmd)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000474ifndef LLVMAS
475LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
476endif
477ifndef TBLGEN
478 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000479 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 else
481 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
482 endif
483endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000484LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000485ifndef LLVMLD
486LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
487endif
488ifndef LLVMDIS
489LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
490endif
491ifndef LLI
492LLI := $(LLVMToolDir)/lli$(EXEEXT)
493endif
494ifndef LLC
495LLC := $(LLVMToolDir)/llc$(EXEEXT)
496endif
497ifndef LOPT
498LOPT := $(LLVMToolDir)/opt$(EXEEXT)
499endif
500ifndef LBUGPOINT
501LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
502endif
503ifndef LUPGRADE
504LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
505endif
506ifeq ($(LLVMGCC_MAJVERS),3)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
508LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
509else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510LLVMGCCWITHPATH := $(LLVMGCC)
511LLVMGXXWITHPATH := $(LLVMGXX)
512endif
513
514#--------------------------------------------------------------------
515# Adjust to user's request
516#--------------------------------------------------------------------
517
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000518ifeq ($(HOST_OS),Darwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000519 DARWIN_VERSION := `sw_vers -productVersion`
520 # Strip a number like 10.4.7 to 10.4
521 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
522 # Get "4" out of 10.4 for later pieces in the makefile.
523 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendling3c0d23b2009-03-22 08:28:45 +0000524
Julien Lerouge64e1db82009-03-27 18:18:00 +0000525 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
Evan Chenge951aca2009-09-08 18:52:20 +0000526 -dynamiclib
527 ifneq ($(ARCH),ARM)
528 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
529 endif
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000530else
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000531 ifeq ($(HOST_OS),Cygwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000532 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
Mikhail Glushenkov928de572009-07-03 03:52:47 +0000533 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000534 else
535 SharedLinkOptions=-shared
536 endif
537endif
538
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000539ifeq ($(TARGET_OS),Darwin)
Evan Chenge951aca2009-09-08 18:52:20 +0000540 ifneq ($(ARCH),ARM)
541 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
542 endif
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000543endif
544
Nick Lewycky8d91e192009-02-26 07:44:16 +0000545# Adjust LD.Flags depending on the kind of library that is to be built. Note
546# that if LOADABLE_MODULE is specified then the resulting shared library can
547# be opened with dlopen.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548ifdef LOADABLE_MODULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549 LD.Flags += -module
550endif
551
552ifdef SHARED_LIBRARY
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000553ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky12015c12009-03-03 04:55:15 +0000554 LD.Flags += $(RPATH) -Wl,$(LibDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555endif
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000556endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557
558ifdef TOOL_VERBOSE
559 C.Flags += -v
560 CXX.Flags += -v
561 LD.Flags += -v
562 VERBOSE := 1
563endif
564
565# Adjust settings for verbose mode
566ifndef VERBOSE
567 Verb := @
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000568 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
570else
Misha Brukman89fe5162009-01-08 02:11:55 +0000571 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572endif
573
574# By default, strip symbol information from executable
575ifndef KEEP_SYMBOLS
576 Strip := $(PLATFORMSTRIPOPTS)
577 StripWarnMsg := "(without symbols)"
578 Install.StripFlag += -s
579endif
580
581# Adjust linker flags for building an executable
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000582ifneq ($(HOST_OS),Darwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000583ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584ifdef TOOLNAME
585ifdef EXAMPLE_TOOL
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000586 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000587else
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000588 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589endif
590endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000591endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000592endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593
594#----------------------------------------------------------
595# Options To Invoke Tools
596#----------------------------------------------------------
597
Daniel Dunbarb47afd52009-05-12 07:26:49 +0000598ifndef NO_PEDANTIC
Duncan Sands7d9ea942009-06-19 12:40:30 +0000599CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbarb47afd52009-05-12 07:26:49 +0000600endif
Duncan Sands7d9ea942009-06-19 12:40:30 +0000601CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
602 $(EXTRA_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000604ifeq ($(HOST_OS),HP-UX)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
606endif
607
608# If we are building a universal binary on Mac OS/X, pass extra options. This
609# is useful to people that want to link the LLVM libraries into their universal
610# apps.
611#
612# The following can be optionally specified:
613# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
614# For Mac OS/X 10.4 Intel machines, the traditional one is:
615# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
616# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
617# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
618# i386/ppc only.
619ifdef UNIVERSAL
620 ifndef UNIVERSAL_ARCH
621 UNIVERSAL_ARCH := i386 ppc
622 endif
623 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
624 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 ifdef UNIVERSAL_SDK_PATH
626 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627 endif
628
629 # Building universal cannot compute dependencies automatically.
630 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000631else
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000632 ifeq ($(TARGET_OS),Darwin)
Bill Wendling025cce52009-03-12 04:10:09 +0000633 ifeq ($(ARCH),x86_64)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000634 TargetCommonOpts = -m64
Bill Wendling025cce52009-03-12 04:10:09 +0000635 else
636 ifeq ($(ARCH),x86)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000637 TargetCommonOpts = -m32
Bill Wendling025cce52009-03-12 04:10:09 +0000638 endif
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000639 endif
640 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641endif
642
Anton Korobeynikov92c51812009-08-18 00:40:33 +0000643ifeq ($(HOST_OS),SunOS)
Chris Lattner35c997c2008-06-24 17:44:42 +0000644CPP.BaseFlags += -include llvm/System/Solaris.h
645endif
646
Misha Brukman89fe5162009-01-08 02:11:55 +0000647LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000648CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000650CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
651 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000652 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
653 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
654 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000656ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher06bf4822009-08-18 03:23:40 +0000657 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000658 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher06bf4822009-08-18 03:23:40 +0000659 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
660 $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000661 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher06bf4822009-08-18 03:23:40 +0000662 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner20cba1c2009-06-16 23:00:42 +0000663 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopherd631dfc2009-08-18 18:07:35 +0000664 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
665 $(LDFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000666 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000667else
Eric Christopher06bf4822009-08-18 03:23:40 +0000668 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000669 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher06bf4822009-08-18 03:23:40 +0000670 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000671 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher06bf4822009-08-18 03:23:40 +0000672 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner20cba1c2009-06-16 23:00:42 +0000673 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopherd631dfc2009-08-18 18:07:35 +0000674 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000675 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000676endif
677
Eric Christopher06bf4822009-08-18 03:23:40 +0000678BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CFLAGS) \
679 $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000680 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher06bf4822009-08-18 03:23:40 +0000681Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000682 $(TargetCommonOpts) $(CompileCommonOpts) -E
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683
Eric Christopher06bf4822009-08-18 03:23:40 +0000684BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
685 $(CPPFLAGS) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000686 $(TargetCommonOpts) $(CompileCommonOpts)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687
Misha Brukman89fe5162009-01-08 02:11:55 +0000688ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
689ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000690DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000691
692# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
693# paths. In this case, the SYSPATH function (defined in
694# Makefile.config) transforms Unix paths into Windows paths.
695TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000696 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000697 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
698 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
699
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000700Archive = $(AR) $(AR.Flags)
701LArchive = $(LLVMToolDir)/llvm-ar rcsf
702ifdef RANLIB
703Ranlib = $(RANLIB)
704else
705Ranlib = ranlib
706endif
707
708#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000709# Get the list of source files and compute object file
710# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711#----------------------------------------------------------
712
713ifndef SOURCES
714 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000715 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716else
717 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000718endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719
720ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000721Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722endif
723
724BaseNameSources := $(sort $(basename $(Sources)))
725
726ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000727ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
728
729###############################################################################
730# DIRECTORIES: Handle recursive descent of directory structure
731###############################################################################
732
733#---------------------------------------------------------
734# Provide rules to make install dirs. This must be early
735# in the file so they get built before dependencies
736#---------------------------------------------------------
737
Mike Stump98f72e02009-02-12 23:45:11 +0000738$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000739 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740
741# To create other directories, as needed, and timestamp their creation
742%/.dir:
743 $(Verb) $(MKDIR) $* > /dev/null
744 $(Verb) $(DATE) > $@
745
746.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
747.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
748
749#---------------------------------------------------------
750# Handle the DIRS options for sequential construction
751#---------------------------------------------------------
752
Misha Brukman89fe5162009-01-08 02:11:55 +0000753SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754ifdef DIRS
755SubDirs += $(DIRS)
756
757ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
758$(RecursiveTargets)::
759 $(Verb) for dir in $(DIRS); do \
760 if [ ! -f $$dir/Makefile ]; then \
761 $(MKDIR) $$dir; \
762 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
763 fi; \
764 ($(MAKE) -C $$dir $@ ) || exit 1; \
765 done
766else
767$(RecursiveTargets)::
768 $(Verb) for dir in $(DIRS); do \
769 ($(MAKE) -C $$dir $@ ) || exit 1; \
770 done
771endif
772
773endif
774
775#---------------------------------------------------------
776# Handle the EXPERIMENTAL_DIRS options ensuring success
777# after each directory is built.
778#---------------------------------------------------------
779ifdef EXPERIMENTAL_DIRS
780$(RecursiveTargets)::
781 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
782 if [ ! -f $$dir/Makefile ]; then \
783 $(MKDIR) $$dir; \
784 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
785 fi; \
786 ($(MAKE) -C $$dir $@ ) || exit 0; \
787 done
788endif
789
790#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000791# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
792#-----------------------------------------------------------
793ifdef OPTIONAL_PARALLEL_DIRS
794 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
795endif
796
797#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000798# Handle the PARALLEL_DIRS options for parallel construction
799#-----------------------------------------------------------
800ifdef PARALLEL_DIRS
801
802SubDirs += $(PARALLEL_DIRS)
803
804# Unfortunately, this list must be maintained if new recursive targets are added
805all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
806clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
807clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
808install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
809uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
810install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar4f1c6552009-09-13 22:39:27 +0000811unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812
813ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
814
815$(ParallelTargets) :
816 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
817 $(MKDIR) $(@D); \
818 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
819 fi; \
820 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
821endif
822
823#---------------------------------------------------------
824# Handle the OPTIONAL_DIRS options for directores that may
825# or may not exist.
826#---------------------------------------------------------
827ifdef OPTIONAL_DIRS
828
829SubDirs += $(OPTIONAL_DIRS)
830
831ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
832$(RecursiveTargets)::
833 $(Verb) for dir in $(OPTIONAL_DIRS); do \
834 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
835 if [ ! -f $$dir/Makefile ]; then \
836 $(MKDIR) $$dir; \
837 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
838 fi; \
839 ($(MAKE) -C$$dir $@ ) || exit 1; \
840 fi \
841 done
842else
843$(RecursiveTargets)::
844 $(Verb) for dir in $(OPTIONAL_DIRS); do \
845 ($(MAKE) -C$$dir $@ ) || exit 1; \
846 done
847endif
848endif
849
850#---------------------------------------------------------
851# Handle the CONFIG_FILES options
852#---------------------------------------------------------
853ifdef CONFIG_FILES
854
855ifdef NO_INSTALL
856install-local::
857 $(Echo) Install circumvented with NO_INSTALL
858uninstall-local::
859 $(Echo) UnInstall circumvented with NO_INSTALL
860else
861install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
862 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
863 $(Verb)for file in $(CONFIG_FILES); do \
864 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
865 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
866 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
867 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
868 else \
869 $(ECHO) Error: cannot find config file $${file}. ; \
870 fi \
871 done
872
873uninstall-local::
874 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
875 $(Verb)for file in $(CONFIG_FILES); do \
876 $(RM) -f $(PROJ_etcdir)/$${file} ; \
877 done
878endif
879
880endif
881
882###############################################################################
883# Set up variables for building libararies
884###############################################################################
885
886#---------------------------------------------------------
887# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000888# libraries needed when linking. There are "Proj" libs
889# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890# by the LLVM project).
891#---------------------------------------------------------
892
893ifdef USEDLIBS
894ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
895ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
896ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
897ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
898endif
899
900ifdef LLVMLIBS
901LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
902LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
903LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
904LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
905endif
906
Daniel Dunbara89194e2008-10-03 19:11:19 +0000907ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000908ifdef LINK_COMPONENTS
909
910# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
911# clean in tools, then do a make in tools (instead of at the top level).
912$(LLVM_CONFIG):
913 @echo "*** llvm-config doesn't exist - rebuilding it."
914 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000915
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
917
Mikhail Glushenkovfc320822009-03-03 10:03:27 +0000918LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
919LLVMLibsPaths += $(LLVM_CONFIG) \
Misha Brukmanfc6ae992009-08-17 15:31:24 +0000920 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000921endif
922endif
923
924###############################################################################
925# Library Build Rules: Four ways to build a library
926###############################################################################
927
928#---------------------------------------------------------
929# Bytecode Module Targets:
930# If the user set MODULE_NAME then they want to build a
931# bytecode module from the sources. We compile all the
932# sources and link it together into a single bytecode
933# module.
934#---------------------------------------------------------
935
936ifdef MODULE_NAME
937ifeq ($(strip $(LLVMGCC)),)
938$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
939else
940
941Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000942LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000943
944
945ifdef EXPORTED_SYMBOL_FILE
946LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
947endif
948
949$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
950 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
951 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
952
953all-local:: $(Module)
954
955clean-local::
956ifneq ($(strip $(Module)),)
957 -$(Verb) $(RM) -f $(Module)
958endif
959
960ifdef BYTECODE_DESTINATION
961ModuleDestDir := $(BYTECODE_DESTINATION)
962else
963ModuleDestDir := $(PROJ_libdir)
964endif
965
966ifdef NO_INSTALL
967install-local::
968 $(Echo) Install circumvented with NO_INSTALL
969uninstall-local::
970 $(Echo) Uninstall circumvented with NO_INSTALL
971else
972DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
973
974install-module:: $(DestModule)
975install-local:: $(DestModule)
976
Misha Brukman89fe5162009-01-08 02:11:55 +0000977$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
979 $(Verb) $(DataInstall) $(Module) $(DestModule)
980
981uninstall-local::
982 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
983 -$(Verb) $(RM) -f $(DestModule)
984endif
985
986endif
987endif
988
989# if we're building a library ...
990ifdef LIBRARYNAME
991
Misha Brukmanfc6ae992009-08-17 15:31:24 +0000992# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000993LIBRARYNAME := $(strip $(LIBRARYNAME))
994ifdef LOADABLE_MODULE
Nick Lewycky8d91e192009-02-26 07:44:16 +0000995LibName.A := $(LibDir)/$(LIBRARYNAME).a
996LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000997else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky8d91e192009-02-26 07:44:16 +0000999LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1000endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001001LibName.O := $(LibDir)/$(LIBRARYNAME).o
1002LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1003
1004#---------------------------------------------------------
1005# Shared Library Targets:
1006# If the user asked for a shared library to be built
1007# with the SHARED_LIBRARY variable, then we provide
1008# targets for building them.
1009#---------------------------------------------------------
1010ifdef SHARED_LIBRARY
1011
Nick Lewycky8d91e192009-02-26 07:44:16 +00001012all-local:: $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001013
1014ifdef LINK_LIBS_IN_SHARED
1015ifdef LOADABLE_MODULE
1016SharedLibKindMessage := "Loadable Module"
1017else
1018SharedLibKindMessage := "Shared Library"
1019endif
Nick Lewycky8d91e192009-02-26 07:44:16 +00001020$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1022 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001023 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Edwin Töröke59edce2009-05-26 19:11:47 +00001024 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001025else
Nick Lewycky8d91e192009-02-26 07:44:16 +00001026$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001028 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001029endif
1030
1031clean-local::
Nick Lewycky8d91e192009-02-26 07:44:16 +00001032ifneq ($(strip $(LibName.SO)),)
1033 -$(Verb) $(RM) -f $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001034endif
1035
1036ifdef NO_INSTALL
1037install-local::
1038 $(Echo) Install circumvented with NO_INSTALL
1039uninstall-local::
1040 $(Echo) Uninstall circumvented with NO_INSTALL
1041else
1042DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1043
1044install-local:: $(DestSharedLib)
1045
Nick Lewycky8d91e192009-02-26 07:44:16 +00001046$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001048 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049
Misha Brukman89fe5162009-01-08 02:11:55 +00001050uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1052 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
1053endif
1054endif
1055
1056#---------------------------------------------------------
1057# Bytecode Library Targets:
1058# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +00001059# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060# targets for building them.
1061#---------------------------------------------------------
1062ifdef BYTECODE_LIBRARY
1063ifeq ($(strip $(LLVMGCC)),)
1064$(warning Bytecode libraries require llvm-gcc which could not be found ****)
1065else
1066
1067all-local:: $(LibName.BCA)
1068
1069ifdef EXPORTED_SYMBOL_FILE
1070BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
1071 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1072
1073$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1074 $(LLVMToolDir)/llvm-ar
1075 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1076 "(internalize)"
Daniel Dunbarc6750c92009-08-28 16:14:46 +00001077 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 $(Verb) $(RM) -f $@
Daniel Dunbarc6750c92009-08-28 16:14:46 +00001079 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080else
1081$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1082 $(LLVMToolDir)/llvm-ar
1083 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1084 $(Verb) $(RM) -f $@
1085 $(Verb) $(LArchive) $@ $(ObjectsBC)
1086
1087endif
1088
1089clean-local::
1090ifneq ($(strip $(LibName.BCA)),)
1091 -$(Verb) $(RM) -f $(LibName.BCA)
1092endif
1093
1094ifdef BYTECODE_DESTINATION
1095BytecodeDestDir := $(BYTECODE_DESTINATION)
1096else
1097BytecodeDestDir := $(PROJ_libdir)
1098endif
1099
Daniel Dunbar659cef82009-05-12 05:35:40 +00001100DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001101
1102install-bytecode-local:: $(DestBytecodeLib)
1103
1104ifdef NO_INSTALL
1105install-local::
1106 $(Echo) Install circumvented with NO_INSTALL
1107uninstall-local::
1108 $(Echo) Uninstall circumvented with NO_INSTALL
1109else
1110install-local:: $(DestBytecodeLib)
1111
Mike Stump98f72e02009-02-12 23:45:11 +00001112$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1114 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1115
1116uninstall-local::
1117 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1118 -$(Verb) $(RM) -f $(DestBytecodeLib)
1119endif
1120endif
1121endif
1122
1123#---------------------------------------------------------
Chris Lattner20cba1c2009-06-16 23:00:42 +00001124# Library Targets:
1125# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1126# building an archive.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127#---------------------------------------------------------
1128ifndef BUILD_ARCHIVE
Chris Lattner20cba1c2009-06-16 23:00:42 +00001129ifndef LOADABLE_MODULE
1130BUILD_ARCHIVE = 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131endif
1132endif
1133
1134#---------------------------------------------------------
1135# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001136# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137# then we provide targets for building them.
1138#---------------------------------------------------------
1139ifdef BUILD_ARCHIVE
1140
1141all-local:: $(LibName.A)
1142
1143$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1144 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1145 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001146 $(Verb) $(Archive) $@ $(ObjectsO)
1147 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001148
1149clean-local::
1150ifneq ($(strip $(LibName.A)),)
1151 -$(Verb) $(RM) -f $(LibName.A)
1152endif
1153
1154ifdef NO_INSTALL
1155install-local::
1156 $(Echo) Install circumvented with NO_INSTALL
1157uninstall-local::
1158 $(Echo) Uninstall circumvented with NO_INSTALL
1159else
1160DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1161
1162install-local:: $(DestArchiveLib)
1163
Mike Stump98f72e02009-02-12 23:45:11 +00001164$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1166 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001167 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168
1169uninstall-local::
1170 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1171 -$(Verb) $(RM) -f $(DestArchiveLib)
1172endif
1173endif
1174
1175# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001176endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001177
1178###############################################################################
1179# Tool Build Rules: Build executable tool based on TOOLNAME option
1180###############################################################################
1181
1182ifdef TOOLNAME
1183
1184#---------------------------------------------------------
1185# Set up variables for building a tool.
1186#---------------------------------------------------------
1187ifdef EXAMPLE_TOOL
1188ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1189else
1190ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1191endif
1192
1193#---------------------------------------------------------
Chris Lattner8b04ea72009-02-26 17:47:49 +00001194# Prune Exports
1195#---------------------------------------------------------
1196
1197# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1198# not exporting all of the weak symbols from the binary. This reduces dyld
1199# startup time by 4x on darwin in some cases.
1200ifdef TOOL_NO_EXPORTS
Anton Korobeynikov92c51812009-08-18 00:40:33 +00001201ifeq ($(HOST_OS),Darwin)
Chris Lattnerc6c51352009-03-10 17:15:56 +00001202
1203# Tiger tools don't support this.
1204ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner8b04ea72009-02-26 17:47:49 +00001205LD.Flags += -Wl,-exported_symbol -Wl,_main
1206endif
Chris Lattnerc6c51352009-03-10 17:15:56 +00001207endif
Chris Lattner8b04ea72009-02-26 17:47:49 +00001208
Anton Korobeynikov92c51812009-08-18 00:40:33 +00001209ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Chris Lattner7c024612009-02-26 18:38:40 +00001210LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner8b04ea72009-02-26 17:47:49 +00001211endif
1212endif
1213
1214
1215#---------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001216# Provide targets for building the tools
1217#---------------------------------------------------------
1218all-local:: $(ToolBuildPath)
1219
1220clean-local::
1221ifneq ($(strip $(ToolBuildPath)),)
1222 -$(Verb) $(RM) -f $(ToolBuildPath)
1223endif
1224
1225ifdef EXAMPLE_TOOL
1226$(ToolBuildPath): $(ExmplDir)/.dir
1227else
1228$(ToolBuildPath): $(ToolDir)/.dir
1229endif
1230
1231$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1232 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001233 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001234 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1235 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001236 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001237
1238ifdef NO_INSTALL
1239install-local::
1240 $(Echo) Install circumvented with NO_INSTALL
1241uninstall-local::
1242 $(Echo) Uninstall circumvented with NO_INSTALL
1243else
Anton Korobeynikovfffdd942009-08-05 09:37:43 +00001244DestTool = $(PROJ_bindir)/$(TOOLNAME)$(EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245
1246install-local:: $(DestTool)
1247
Mike Stump98f72e02009-02-12 23:45:11 +00001248$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249 $(Echo) Installing $(BuildMode) $(DestTool)
1250 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1251
1252uninstall-local::
1253 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1254 -$(Verb) $(RM) -f $(DestTool)
1255endif
1256endif
1257
1258###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001259# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260###############################################################################
1261
1262# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikov92c51812009-08-18 00:40:33 +00001263ifeq ($(HOST_OS),HP-UX)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001264 DISABLE_AUTO_DEPENDENCIES=1
1265endif
1266
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001267# Provide rule sets for when dependency generation is enabled
1268ifndef DISABLE_AUTO_DEPENDENCIES
1269
1270#---------------------------------------------------------
Nick Lewycky8d91e192009-02-26 07:44:16 +00001271# Create .o files in the ObjDir directory from the .cpp and .c files...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001272#---------------------------------------------------------
1273
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001274DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky8d91e192009-02-26 07:44:16 +00001275 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001276
Daniel Dunbar285108f2009-05-12 06:35:50 +00001277# If the build succeeded, move the dependency file over, otherwise
1278# remove it.
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001279DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1280 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1281
Nick Lewycky8d91e192009-02-26 07:44:16 +00001282$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001283 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001284 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001285 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001286
Nick Lewycky8d91e192009-02-26 07:44:16 +00001287$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001288 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001289 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001290 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001291
Nick Lewycky8d91e192009-02-26 07:44:16 +00001292$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001293 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001294 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001295 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296
1297#---------------------------------------------------------
1298# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1299#---------------------------------------------------------
1300
Daniel Dunbar285108f2009-05-12 06:35:50 +00001301BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1302 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1303
1304# If the build succeeded, move the dependency file over, otherwise
1305# remove it.
1306BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1307 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1308
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001309$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1310 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001311 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1312 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1313 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001314
1315$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1316 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001317 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1318 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1319 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001320
1321$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1322 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001323 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1324 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1325 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001326
1327# Provide alternate rule sets if dependencies are disabled
1328else
1329
Nick Lewycky8d91e192009-02-26 07:44:16 +00001330$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001331 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001332 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001333
Nick Lewycky8d91e192009-02-26 07:44:16 +00001334$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001335 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001336 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001337
Nick Lewycky8d91e192009-02-26 07:44:16 +00001338$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001340 $(Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001341
1342$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1343 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1344 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001345
1346$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1347 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1348 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001349
1350$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1351 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1352 $(BCCompile.C) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001353
1354endif
1355
1356
1357## Rules for building preprocessed (.i/.ii) outputs.
1358$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1359 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1360 $(Verb) $(Preprocess.CXX) $< -o $@
1361
1362$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1363 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1364 $(Verb) $(Preprocess.CXX) $< -o $@
1365
1366$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1367 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1368 $(Verb) $(Preprocess.C) $< -o $@
1369
1370
1371$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1372 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001373 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374
1375$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1376 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001377 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001378
1379$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1380 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001381 $(Compile.C) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001382
1383
1384# make the C and C++ compilers strip debug info out of bytecode libraries.
1385ifdef DEBUG_RUNTIME
Dan Gohman25de0de2009-09-08 15:52:56 +00001386$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001387 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman25de0de2009-09-08 15:52:56 +00001388 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001389else
Dan Gohman25de0de2009-09-08 15:52:56 +00001390$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001391 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman25de0de2009-09-08 15:52:56 +00001392 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001393endif
1394
1395
1396#---------------------------------------------------------
1397# Provide rule to build .bc files from .ll sources,
1398# regardless of dependencies
1399#---------------------------------------------------------
1400$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1401 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1402 $(Verb) $(LLVMAS) $< -f -o $@
1403
1404###############################################################################
1405# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1406###############################################################################
1407
1408ifdef TARGET
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001409TABLEGEN_INC_FILES_COMMON = 1
1410endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001411
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001412ifdef LLVMC_BUILD_AUTOGENERATED_INC
1413TABLEGEN_INC_FILES_COMMON = 1
1414endif
1415
1416ifdef TABLEGEN_INC_FILES_COMMON
1417
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001418INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1419INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1420.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1421
Misha Brukman89fe5162009-01-08 02:11:55 +00001422# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001423# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1424# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001425# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001426# dependencies of the .inc files are, unless the contents of the .inc file
1427# changes.
1428$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1429 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1430
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001431endif # TABLEGEN_INC_FILES_COMMON
1432
1433ifdef TARGET
1434
1435TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1436 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1437 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1438 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1439 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1440 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1441 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1442
Rafael Espindola4d8cd532009-03-10 17:58:54 +00001443# All of these files depend on tblgen and the .td files.
1444$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1445
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001446$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1447$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1448 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001449 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001450
1451$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1452$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1453 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001454 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001455
1456$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1457$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1458 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001459 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001460
1461$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1462$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1463 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001464 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001465
1466$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1467$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1468 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001469 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001470
1471$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1472$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1473 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001474 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001475
1476$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1477$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1478 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001479 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001480
Daniel Dunbara9b43082009-07-13 18:35:35 +00001481$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1482$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1483 $(Echo) "Building $(<F) assembly matcher with tblgen"
1484 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1485
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001486$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1487$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1488 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001489 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001490
1491$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1492$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001493 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001494 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001495
Dan Gohmanb75dead2008-08-13 20:19:35 +00001496$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1497$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1498 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1499 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1500
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001501$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1502$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1503 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001504 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001505
1506$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1507$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1508 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001509 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001510
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001511$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1512$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1513 $(Echo) "Building $(<F) calling convention information with tblgen"
1514 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1515
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001516clean-local::
1517 -$(Verb) $(RM) -f $(INCFiles)
1518
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001519endif # TARGET
1520
1521ifdef LLVMC_BUILD_AUTOGENERATED_INC
1522
Mikhail Glushenkov3b335a42009-04-21 19:46:10 +00001523LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1524 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001525
1526TDFiles := $(LLVMCPluginSrc) \
1527 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1528
1529$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1530 $(TBLGEN) $(TD_COMMON)
1531 $(Echo) "Building LLVMC configuration library with tblgen"
1532 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1533
1534endif # LLVMC_BUILD_AUTOGENERATED_INC
1535
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001536###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001537# OTHER RULES: Other rules needed
1538###############################################################################
1539
1540# To create postscript files from dot files...
1541ifneq ($(DOT),false)
1542%.ps: %.dot
1543 $(DOT) -Tps < $< > $@
1544else
1545%.ps: %.dot
1546 $(Echo) "Cannot build $@: The program dot is not installed"
1547endif
1548
1549# This rules ensures that header files that are removed still have a rule for
1550# which they can be "generated." This allows make to ignore them and
1551# reproduce the dependency lists.
1552%.h:: ;
1553%.hpp:: ;
1554
1555# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001556# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001557# errors or disastrous removal.
1558clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001559ifneq ($(strip $(ObjRootDir)),)
1560 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001561endif
1562 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1563ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1564 -$(Verb) $(RM) -f *$(SHLIBEXT)
1565endif
1566
1567clean-all-local::
1568 -$(Verb) $(RM) -rf Debug Release Profile
1569
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001570
1571###############################################################################
1572# DEPENDENCIES: Include the dependency files if we should
1573###############################################################################
1574ifndef DISABLE_AUTO_DEPENDENCIES
1575
1576# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001577ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001578
1579# Get the list of dependency files
Daniel Dunbar285108f2009-05-12 06:35:50 +00001580DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1581DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1582
1583# Include bitcode dependency files if using bitcode libraries
1584ifdef BYTECODE_LIBRARY
1585DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1586endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001587
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001588-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001589
1590endif
1591
Misha Brukman89fe5162009-01-08 02:11:55 +00001592endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001593
1594###############################################################################
1595# CHECK: Running the test suite
1596###############################################################################
1597
Bill Wendlingea4af672009-04-09 18:26:57 +00001598check::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001599 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1600 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1601 $(EchoCmd) Running test suite ; \
1602 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1603 TESTSUITE=$(TESTSUITE) ; \
1604 else \
1605 $(EchoCmd) No Makefile in test directory ; \
1606 fi ; \
1607 else \
1608 $(EchoCmd) No test directory ; \
1609 fi
1610
Daniel Dunbar12ffa4d2009-09-08 05:31:44 +00001611check-lit::
1612 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1613 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1614 $(EchoCmd) Running test suite ; \
1615 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1616 else \
1617 $(EchoCmd) No Makefile in test directory ; \
1618 fi ; \
1619 else \
1620 $(EchoCmd) No test directory ; \
1621 fi
1622
Daniel Dunbar5b6816d2009-09-20 06:17:21 +00001623check-all::
1624 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1625 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1626 $(EchoCmd) Running test suite ; \
1627 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1628 else \
1629 $(EchoCmd) No Makefile in test directory ; \
1630 fi ; \
1631 else \
1632 $(EchoCmd) No test directory ; \
1633 fi
1634
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001635###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001636# UNITTESTS: Running the unittests test suite
1637###############################################################################
1638
Bill Wendlingea4af672009-04-09 18:26:57 +00001639unittests::
Bill Wendling2e3646a2009-01-04 23:12:21 +00001640 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1641 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1642 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar4f1c6552009-09-13 22:39:27 +00001643 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001644 else \
1645 $(EchoCmd) No Makefile in unittests directory ; \
1646 fi ; \
1647 else \
1648 $(EchoCmd) No unittests directory ; \
1649 fi
1650
1651###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001652# DISTRIBUTION: Handle construction of a distribution tarball
1653###############################################################################
1654
1655#------------------------------------------------------------------------
1656# Define distribution related variables
1657#------------------------------------------------------------------------
1658DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1659DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1660TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1661DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1662DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1663DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1664DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1665 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1666 Makefile.config.in configure autoconf
1667DistOther := $(notdir $(wildcard \
1668 $(PROJ_SRC_DIR)/*.h \
1669 $(PROJ_SRC_DIR)/*.td \
1670 $(PROJ_SRC_DIR)/*.def \
1671 $(PROJ_SRC_DIR)/*.ll \
1672 $(PROJ_SRC_DIR)/*.in))
1673DistSubDirs := $(SubDirs)
1674DistSources = $(Sources) $(EXTRA_DIST)
1675DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1676
1677#------------------------------------------------------------------------
1678# We MUST build distribution with OBJ_DIR != SRC_DIR
1679#------------------------------------------------------------------------
1680ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1681dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1682 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1683
1684else
1685
1686#------------------------------------------------------------------------
1687# Prevent attempt to run dist targets from anywhere but the top level
1688#------------------------------------------------------------------------
1689ifneq ($(LEVEL),.)
1690dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1691 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1692else
1693
1694#------------------------------------------------------------------------
1695# Provide the top level targets
1696#------------------------------------------------------------------------
1697
1698dist-gzip:: $(DistTarGZip)
1699
1700$(DistTarGZip) : $(TopDistDir)/.makedistdir
1701 $(Echo) Packing gzipped distribution tar file.
1702 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1703 $(GZIP) -c > "$(DistTarGZip)"
1704
1705dist-bzip2:: $(DistTarBZ2)
1706
1707$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1708 $(Echo) Packing bzipped distribution tar file.
1709 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1710 $(BZIP2) -c >$(DistTarBZ2)
1711
1712dist-zip:: $(DistZip)
1713
1714$(DistZip) : $(TopDistDir)/.makedistdir
1715 $(Echo) Packing zipped distribution file.
1716 $(Verb) rm -f $(DistZip)
1717 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1718
Misha Brukman89fe5162009-01-08 02:11:55 +00001719dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001720 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1721
1722DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1723
1724dist-check:: $(DistTarGZip)
1725 $(Echo) Checking distribution tar file.
1726 $(Verb) if test -d $(DistCheckDir) ; then \
1727 $(RM) -rf $(DistCheckDir) ; \
1728 fi
1729 $(Verb) $(MKDIR) $(DistCheckDir)
1730 $(Verb) cd $(DistCheckDir) && \
1731 $(MKDIR) $(DistCheckDir)/build && \
1732 $(MKDIR) $(DistCheckDir)/install && \
1733 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1734 cd build && \
1735 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1736 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1737 $(MAKE) all && \
1738 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001739 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001740 $(MAKE) install && \
1741 $(MAKE) uninstall && \
1742 $(MAKE) dist-clean && \
1743 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1744
1745dist-clean::
1746 $(Echo) Cleaning distribution files
1747 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1748 $(DistCheckDir)
1749
1750endif
1751
1752#------------------------------------------------------------------------
1753# Provide the recursive distdir target for building the distribution directory
1754#------------------------------------------------------------------------
1755distdir: $(DistDir)/.makedistdir
1756$(DistDir)/.makedistdir: $(DistSources)
1757 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1758 if test -d "$(DistDir)" ; then \
1759 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1760 exit 1 ; \
1761 fi ; \
1762 $(EchoCmd) Removing old $(DistDir) ; \
1763 $(RM) -rf $(DistDir); \
1764 $(EchoCmd) Making 'all' to verify build ; \
1765 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1766 fi
1767 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001768 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001769 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1770 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1771 for file in $(DistFiles) ; do \
1772 case "$$file" in \
1773 $(PROJ_SRC_DIR)/*) \
1774 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1775 ;; \
1776 $(PROJ_SRC_ROOT)/*) \
1777 file=`echo "$$file" | \
1778 sed "s#^$$srcrootstrip/##"` \
1779 ;; \
1780 esac; \
1781 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1782 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1783 from_dir="$(PROJ_SRC_DIR)" ; \
1784 elif test -f "$$file" || test -d "$$file" ; then \
1785 from_dir=. ; \
1786 fi ; \
1787 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1788 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1789 to_dir="$(DistDir)/$$dir"; \
1790 $(MKDIR) "$$to_dir" ; \
1791 else \
1792 to_dir="$(DistDir)"; \
1793 fi; \
1794 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1795 if test -n "$$mid_dir" ; then \
1796 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1797 fi ; \
1798 if test -d "$$from_dir/$$file"; then \
1799 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1800 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1801 cd $(PROJ_SRC_DIR) ; \
1802 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1803 ( cd $$to_dir ; $(TAR) xf - ) ; \
1804 cd $(PROJ_OBJ_DIR) ; \
1805 else \
1806 cd $$from_dir ; \
1807 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1808 ( cd $$to_dir ; $(TAR) xf - ) ; \
1809 cd $(PROJ_OBJ_DIR) ; \
1810 fi; \
1811 elif test -f "$$from_dir/$$file" ; then \
1812 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1813 elif test -L "$$from_dir/$$file" ; then \
1814 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1815 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1816 $(EchoCmd) "===== WARNING: Distribution Source " \
1817 "$$from_dir/$$file Not Found!" ; \
1818 elif test "$(Verb)" != '@' ; then \
1819 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1820 fi; \
1821 done
1822 $(Verb) for subdir in $(DistSubDirs) ; do \
1823 if test "$$subdir" \!= "." ; then \
1824 new_distdir="$(DistDir)/$$subdir" ; \
1825 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1826 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1827 DistDir="$$new_distdir" distdir ) || exit 1; \
1828 fi; \
1829 done
1830 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1831 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1832 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1833 -name .svn \) -print` ;\
1834 $(MAKE) dist-hook ; \
1835 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1836 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1837 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1838 -o ! -type d ! -perm -444 -exec \
1839 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1840 || chmod -R a+r $(DistDir) ; \
1841 fi
1842
1843# This is invoked by distdir target, define it as a no-op to avoid errors if not
1844# defined by user.
1845dist-hook::
1846
1847endif
1848
1849###############################################################################
1850# TOP LEVEL - targets only to apply at the top level directory
1851###############################################################################
1852
1853ifeq ($(LEVEL),.)
1854
1855#------------------------------------------------------------------------
1856# Install support for the project's include files:
1857#------------------------------------------------------------------------
1858ifdef NO_INSTALL
1859install-local::
1860 $(Echo) Install circumvented with NO_INSTALL
1861uninstall-local::
1862 $(Echo) Uninstall circumvented with NO_INSTALL
1863else
1864install-local::
1865 $(Echo) Installing include files
1866 $(Verb) $(MKDIR) $(PROJ_includedir)
1867 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1868 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001869 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001870 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1871 grep -v .svn` ; do \
1872 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1873 if test \! -d "$$instdir" ; then \
1874 $(EchoCmd) Making install directory $$instdir ; \
1875 $(MKDIR) $$instdir ;\
1876 fi ; \
1877 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1878 done ; \
1879 fi
1880ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1881 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1882 cd $(PROJ_OBJ_ROOT)/include && \
1883 for hdr in `find . -type f -print | grep -v CVS` ; do \
1884 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1885 done ; \
1886 fi
1887endif
1888
1889uninstall-local::
1890 $(Echo) Uninstalling include files
1891 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1892 cd $(PROJ_SRC_ROOT)/include && \
1893 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001894 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001895 -o -name '*.in' ')' -print ')' | \
1896 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1897 cd $(PROJ_SRC_ROOT)/include && \
1898 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1899 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1900 fi
1901endif
1902endif
1903
1904check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001905 @echo searching for overlength lines in files: $(Sources)
1906 @echo
1907 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001908 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001909
1910check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001911 @echo searching for tabs in files: $(Sources)
1912 @echo
1913 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001914 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001915
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001916check-footprint:
1917 @ls -l $(LibDir) | awk '\
1918 BEGIN { sum = 0; } \
1919 { sum += $$5; } \
1920 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1921 @ls -l $(ToolDir) | awk '\
1922 BEGIN { sum = 0; } \
1923 { sum += $$5; } \
1924 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1925#------------------------------------------------------------------------
1926# Print out the directories used for building
1927#------------------------------------------------------------------------
1928printvars::
1929 $(Echo) "BuildMode : " '$(BuildMode)'
1930 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1931 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1932 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1933 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1934 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1935 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1936 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1937 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1938 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1939 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1940 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1941 $(Echo) "UserTargets : " '$(UserTargets)'
1942 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1943 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1944 $(Echo) "ObjDir : " '$(ObjDir)'
1945 $(Echo) "LibDir : " '$(LibDir)'
1946 $(Echo) "ToolDir : " '$(ToolDir)'
1947 $(Echo) "ExmplDir : " '$(ExmplDir)'
1948 $(Echo) "Sources : " '$(Sources)'
1949 $(Echo) "TDFiles : " '$(TDFiles)'
1950 $(Echo) "INCFiles : " '$(INCFiles)'
1951 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1952 $(Echo) "PreConditions: " '$(PreConditions)'
1953 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1954 $(Echo) "Compile.C : " '$(Compile.C)'
1955 $(Echo) "Archive : " '$(Archive)'
1956 $(Echo) "YaccFiles : " '$(YaccFiles)'
1957 $(Echo) "LexFiles : " '$(LexFiles)'
1958 $(Echo) "Module : " '$(Module)'
1959 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1960 $(Echo) "SubDirs : " '$(SubDirs)'
1961 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1962 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001963
1964###
1965# Debugging
1966
Daniel Dunbara6b02752009-03-06 22:23:25 +00001967# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001968# definition, value and origin of XXX.
Daniel Dunbara6b02752009-03-06 22:23:25 +00001969make-print-%:
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001970 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))