blob: 06ffe005da717e9393f9fb08cfdf5bf3562ba15a [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:
Chris Lattnerbfaed4c2009-01-02 07:16:45 +000044.SUFFIXES: .c .cpp .cc .h .hpp .lo .o .a .bc .td .ps .dot .ll
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
46
47#--------------------------------------------------------------------
48# Mark all of these targets as phony to avoid implicit rule search
49#--------------------------------------------------------------------
50.PHONY: $(UserTargets) $(InternalTargets)
51
52#--------------------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +000053# Make sure all the user-target rules are double colon rules and
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054# they are defined first.
55#--------------------------------------------------------------------
56
57$(UserTargets)::
58
59################################################################################
60# PRECONDITIONS: that which must be built/checked first
61################################################################################
62
63SrcMakefiles := $(filter %Makefile %Makefile.tests,\
64 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66ConfigureScript := $(PROJ_SRC_ROOT)/configure
67ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
71MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
72PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
73ifneq ($(MakefileCommonIn),)
74PreConditions += $(MakefileCommon)
75endif
76
77ifneq ($(MakefileConfigIn),)
78PreConditions += $(MakefileConfig)
79endif
80
81preconditions: $(PreConditions)
82
83#------------------------------------------------------------------------
84# Make sure the BUILT_SOURCES are built first
85#------------------------------------------------------------------------
86$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
87
88clean-all-local::
89ifneq ($(strip $(BUILT_SOURCES)),)
90 -$(Verb) $(RM) -f $(BUILT_SOURCES)
91endif
92
93ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
94spotless:
95 $(Verb) if test -x config.status ; then \
96 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
101 $(RM) -rf * ; \
102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
109 else \
110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
111 fi
112else
113spotless:
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
115endif
116
117$(BUILT_SOURCES) : $(ObjMakefiles)
118
119#------------------------------------------------------------------------
120# Make sure we're not using a stale configuration
121#------------------------------------------------------------------------
122reconfigure:
123 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124 $(Verb) cd $(PROJ_OBJ_ROOT) && \
125 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
127 fi ; \
128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
130
131.PRECIOUS: $(ConfigStatusScript)
132$(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
137 fi ; \
138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
140
141#------------------------------------------------------------------------
142# Make sure the configuration makefile is up to date
143#------------------------------------------------------------------------
144ifneq ($(MakefileConfigIn),)
145$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146 $(Echo) Regenerating $@
147 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
148endif
149
150ifneq ($(MakefileCommonIn),)
151$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152 $(Echo) Regenerating $@
153 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
154endif
155
156#------------------------------------------------------------------------
157# If the Makefile in the source tree has been updated, copy it over into the
158# build tree. But, only do this if the source and object makefiles differ
159#------------------------------------------------------------------------
160ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
161
Gordon Henriksen4290f662008-03-10 15:58:40 +0000162Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 $(Echo) "Updating Makefile"
164 $(Verb) $(MKDIR) $(@D)
165 $(Verb) $(CP) -f $< $@
166
167# Copy the Makefile.* files unless we're in the root directory which avoids
168# the copying of Makefile.config.in or other things that should be explicitly
169# taken care of.
170$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
171 @case '$?' in \
172 *Makefile.rules) ;; \
173 *.in) ;; \
Gordon Henriksen4290f662008-03-10 15:58:40 +0000174 *) $(EchoCmd) "Updating $(@F)" ; \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 $(MKDIR) $(@D) ; \
176 $(CP) -f $< $@ ;; \
177 esac
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000178
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179endif
180
181#------------------------------------------------------------------------
182# Set up the basic dependencies
183#------------------------------------------------------------------------
184$(UserTargets):: $(PreConditions)
185
186all:: all-local
Anton Korobeynikov06565172008-11-10 07:33:13 +0000187clean:: clean-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188clean-all:: clean-local clean-all-local
189install:: install-local
190uninstall:: uninstall-local
Misha Brukman89fe5162009-01-08 02:11:55 +0000191install-local:: all-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192install-bytecode:: install-bytecode-local
193
194###############################################################################
195# VARIABLES: Set up various variables based on configuration data
196###############################################################################
197
Daniel Dunbara89194e2008-10-03 19:11:19 +0000198# Variable for if this make is for a "cleaning" target
199ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
200 IS_CLEANING_TARGET=1
201endif
202
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203#--------------------------------------------------------------------
204# Variables derived from configuration we are building
205#--------------------------------------------------------------------
206
207CPP.Defines :=
208# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
209# this can be overridden on the make command line.
210ifneq ($(OS),MingW)
211 OPTIMIZE_OPTION := -O3
212else
213 OPTIMIZE_OPTION := -O2
214endif
215
216ifdef ENABLE_PROFILING
217 BuildMode := Profile
Gordon Henriksen09968862008-01-06 21:54:35 +0000218 CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
219 C.Flags += $(OPTIMIZE_OPTION) -pg -g
220 LD.Flags += $(OPTIMIZE_OPTION) -pg -g
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 KEEP_SYMBOLS := 1
222else
223 ifeq ($(ENABLE_OPTIMIZED),1)
224 BuildMode := Release
225 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
226 ifneq ($(OS),FreeBSD)
227 ifneq ($(OS),Darwin)
228 OmitFramePointer := -fomit-frame-pointer
229 endif
230 endif
231
232 # Darwin requires -fstrict-aliasing to be explicitly enabled.
233 ifeq ($(OS),Darwin)
Evan Cheng1bde8892008-06-05 23:00:08 +0000234 EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 endif
236
Gordon Henriksen09968862008-01-06 21:54:35 +0000237 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
238 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
239 LD.Flags += $(OPTIMIZE_OPTION)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 else
241 BuildMode := Debug
Gordon Henriksen09968862008-01-06 21:54:35 +0000242 CXX.Flags += -g
243 C.Flags += -g
244 LD.Flags += -g
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 KEEP_SYMBOLS := 1
246 endif
247endif
248
Daniel Dunbar886e1832008-09-02 17:35:16 +0000249#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
250# CXX.Flags += -fvisibility-inlines-hidden
251#endif
252
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253# IF REQUIRES_EH=1 is specified then don't disable exceptions
254ifndef REQUIRES_EH
255 CXX.Flags += -fno-exceptions
256endif
257
258# IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
259ifndef REQUIRES_RTTI
260# CXX.Flags += -fno-rtti
261endif
262
263# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
264# then disable assertions by defining the appropriate preprocessor symbols.
265ifdef DISABLE_ASSERTIONS
266 BuildMode := $(BuildMode)-Asserts
267 CPP.Defines += -DNDEBUG
268else
269 CPP.Defines += -D_DEBUG
270endif
271
Misha Brukman89fe5162009-01-08 02:11:55 +0000272# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
273# configured), then enable expensive checks by defining the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274# appropriate preprocessor symbols.
275ifdef ENABLE_EXPENSIVE_CHECKS
276 BuildMode := $(BuildMode)+Checks
Duncan Sands871e55f2008-12-09 21:33:20 +0000277 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278endif
279
280ifeq ($(ENABLE_PIC),1)
Nick Lewycky5b882f22009-02-21 08:41:09 +0000281 ifeq ($(LLVM_ON_WIN32),1)
282 # Nothing. Win32 defaults to PIC and warns when given -fPIC
283 else
284 ifeq ($(OS),Darwin)
285 # common is forbidden in dylib files
286 CXX.Flags += -fno-common
287 C.Flags += -fno-common
288 else
289 # Linux and others; pass -fPIC
290 CXX.Flags += -fPIC
291 C.Flags += -fPIC
292 endif
293 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294endif
295
296CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
297C.Flags += $(CFLAGS)
298CPP.Defines += $(CPPFLAGS)
299CPP.BaseFlags += $(CPP.Defines)
300LD.Flags += $(LDFLAGS)
301AR.Flags := cru
302LibTool.Flags := --tag=CXX
303
304# Make Floating point IEEE compliant on Alpha.
305ifeq ($(ARCH),Alpha)
306 CXX.Flags += -mieee
307 CPP.BaseFlags += -mieee
308ifeq ($(ENABLE_PIC),0)
309 CXX.Flags += -fPIC
310 CPP.BaseFlags += -fPIC
311endif
312endif
313
314ifeq ($(ARCH),Alpha)
315 LD.Flags += -Wl,--no-relax
316endif
317
318#--------------------------------------------------------------------
319# Directory locations
320#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000321TargetMode :=
322ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000323 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000324endif
325
326ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000327ObjDir := $(ObjRootDir)
328LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
329ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
330ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
331LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
332LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
333LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334CFERuntimeLibDir := $(LLVMGCCDIR)/lib
335
336#--------------------------------------------------------------------
337# Full Paths To Compiled Tools and Utilities
338#--------------------------------------------------------------------
339EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
340Echo = @$(EchoCmd)
341ifndef LIBTOOL
342LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
343endif
344ifndef LLVMAS
345LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
346endif
347ifndef TBLGEN
348 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000349 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350 else
351 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
352 endif
353endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000354LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355ifndef LLVMLD
356LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
357endif
358ifndef LLVMDIS
359LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
360endif
361ifndef LLI
362LLI := $(LLVMToolDir)/lli$(EXEEXT)
363endif
364ifndef LLC
365LLC := $(LLVMToolDir)/llc$(EXEEXT)
366endif
367ifndef LOPT
368LOPT := $(LLVMToolDir)/opt$(EXEEXT)
369endif
370ifndef LBUGPOINT
371LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
372endif
373ifndef LUPGRADE
374LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
375endif
376ifeq ($(LLVMGCC_MAJVERS),3)
377UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
378UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
379LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
380LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
381else
382UPGRADE_MSG =
383UPGRADE_LL =
384LLVMGCCWITHPATH := $(LLVMGCC)
385LLVMGXXWITHPATH := $(LLVMGXX)
386endif
387
388#--------------------------------------------------------------------
389# Adjust to user's request
390#--------------------------------------------------------------------
391
392# Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
393# to be built. Note that if LOADABLE_MODULE is specified then the resulting
Misha Brukman89fe5162009-01-08 02:11:55 +0000394# shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395# several other things so we force them to be defined/on.
396ifdef LOADABLE_MODULE
397 SHARED_LIBRARY := 1
398 DONT_BUILD_RELINKED := 1
399 LINK_LIBS_IN_SHARED := 1
400 LD.Flags += -module
401endif
402
403ifdef SHARED_LIBRARY
404 LD.Flags += -rpath $(LibDir)
405else
406 LibTool.Flags += --tag=disable-shared
407endif
408
409ifdef TOOL_VERBOSE
410 C.Flags += -v
411 CXX.Flags += -v
412 LD.Flags += -v
413 VERBOSE := 1
414endif
415
416# Adjust settings for verbose mode
417ifndef VERBOSE
418 Verb := @
419 LibTool.Flags += --silent
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000420 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000421 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
422else
Misha Brukman89fe5162009-01-08 02:11:55 +0000423 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424endif
425
426# By default, strip symbol information from executable
427ifndef KEEP_SYMBOLS
428 Strip := $(PLATFORMSTRIPOPTS)
429 StripWarnMsg := "(without symbols)"
430 Install.StripFlag += -s
431endif
432
433# Adjust linker flags for building an executable
434ifdef TOOLNAME
435ifdef EXAMPLE_TOOL
436 LD.Flags += -rpath $(ExmplDir) -export-dynamic
437else
438 LD.Flags += -rpath $(ToolDir) -export-dynamic
439endif
440endif
441
442#----------------------------------------------------------
443# Options To Invoke Tools
444#----------------------------------------------------------
445
446CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
447 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
448
449ifeq ($(OS),HP-UX)
450 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
451endif
452
453# If we are building a universal binary on Mac OS/X, pass extra options. This
454# is useful to people that want to link the LLVM libraries into their universal
455# apps.
456#
457# The following can be optionally specified:
458# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
459# For Mac OS/X 10.4 Intel machines, the traditional one is:
460# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
461# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
462# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
463# i386/ppc only.
464ifdef UNIVERSAL
465 ifndef UNIVERSAL_ARCH
466 UNIVERSAL_ARCH := i386 ppc
467 endif
468 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
469 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
470 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
471 ifdef UNIVERSAL_SDK_PATH
472 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
473 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
474 endif
475
476 # Building universal cannot compute dependencies automatically.
477 DISABLE_AUTO_DEPENDENCIES=1
478endif
479
Chris Lattner35c997c2008-06-24 17:44:42 +0000480ifeq ($(OS),SunOS)
481CPP.BaseFlags += -include llvm/System/Solaris.h
482endif
483
Misha Brukman89fe5162009-01-08 02:11:55 +0000484LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000485CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000487CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
488 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000489 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
490 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
491 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492
Jim Grosbache4c032e2008-10-02 22:56:44 +0000493 ifeq ($(BUILD_COMPONENT), 1)
494 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
495 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
496 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
497 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
498 $(LD.Flags) $(Strip)
499 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
500 $(Relink.Flags)
501else
502 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
503 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
504 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
505 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
506 $(LD.Flags) $(Strip)
507 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
508 $(Relink.Flags)
509endif
510
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
512BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
513Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
514
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
516BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
517 $(CompileCommonOpts)
518
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
521LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
522 $(Install.Flags)
Misha Brukman89fe5162009-01-08 02:11:55 +0000523ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
524ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000526
527# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
528# paths. In this case, the SYSPATH function (defined in
529# Makefile.config) transforms Unix paths into Windows paths.
530TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000531 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000532 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
533 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
534
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535Archive = $(AR) $(AR.Flags)
536LArchive = $(LLVMToolDir)/llvm-ar rcsf
537ifdef RANLIB
538Ranlib = $(RANLIB)
539else
540Ranlib = ranlib
541endif
542
543#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000544# Get the list of source files and compute object file
545# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546#----------------------------------------------------------
547
548ifndef SOURCES
549 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000550 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551else
552 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000553endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554
555ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000556Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557endif
558
559BaseNameSources := $(sort $(basename $(Sources)))
560
561ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
562ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
563ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
564
565###############################################################################
566# DIRECTORIES: Handle recursive descent of directory structure
567###############################################################################
568
569#---------------------------------------------------------
570# Provide rules to make install dirs. This must be early
571# in the file so they get built before dependencies
572#---------------------------------------------------------
573
Mike Stump98f72e02009-02-12 23:45:11 +0000574$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000575 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576
577# To create other directories, as needed, and timestamp their creation
578%/.dir:
579 $(Verb) $(MKDIR) $* > /dev/null
580 $(Verb) $(DATE) > $@
581
582.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
583.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
584
585#---------------------------------------------------------
586# Handle the DIRS options for sequential construction
587#---------------------------------------------------------
588
Misha Brukman89fe5162009-01-08 02:11:55 +0000589SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590ifdef DIRS
591SubDirs += $(DIRS)
592
593ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
594$(RecursiveTargets)::
595 $(Verb) for dir in $(DIRS); do \
596 if [ ! -f $$dir/Makefile ]; then \
597 $(MKDIR) $$dir; \
598 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
599 fi; \
600 ($(MAKE) -C $$dir $@ ) || exit 1; \
601 done
602else
603$(RecursiveTargets)::
604 $(Verb) for dir in $(DIRS); do \
605 ($(MAKE) -C $$dir $@ ) || exit 1; \
606 done
607endif
608
609endif
610
611#---------------------------------------------------------
612# Handle the EXPERIMENTAL_DIRS options ensuring success
613# after each directory is built.
614#---------------------------------------------------------
615ifdef EXPERIMENTAL_DIRS
616$(RecursiveTargets)::
617 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
618 if [ ! -f $$dir/Makefile ]; then \
619 $(MKDIR) $$dir; \
620 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
621 fi; \
622 ($(MAKE) -C $$dir $@ ) || exit 0; \
623 done
624endif
625
626#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000627# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
628#-----------------------------------------------------------
629ifdef OPTIONAL_PARALLEL_DIRS
630 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
631endif
632
633#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634# Handle the PARALLEL_DIRS options for parallel construction
635#-----------------------------------------------------------
636ifdef PARALLEL_DIRS
637
638SubDirs += $(PARALLEL_DIRS)
639
640# Unfortunately, this list must be maintained if new recursive targets are added
641all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
642clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
643clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
644install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
645uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
646install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
647
648ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
649
650$(ParallelTargets) :
651 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
652 $(MKDIR) $(@D); \
653 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
654 fi; \
655 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
656endif
657
658#---------------------------------------------------------
659# Handle the OPTIONAL_DIRS options for directores that may
660# or may not exist.
661#---------------------------------------------------------
662ifdef OPTIONAL_DIRS
663
664SubDirs += $(OPTIONAL_DIRS)
665
666ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
667$(RecursiveTargets)::
668 $(Verb) for dir in $(OPTIONAL_DIRS); do \
669 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
670 if [ ! -f $$dir/Makefile ]; then \
671 $(MKDIR) $$dir; \
672 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
673 fi; \
674 ($(MAKE) -C$$dir $@ ) || exit 1; \
675 fi \
676 done
677else
678$(RecursiveTargets)::
679 $(Verb) for dir in $(OPTIONAL_DIRS); do \
680 ($(MAKE) -C$$dir $@ ) || exit 1; \
681 done
682endif
683endif
684
685#---------------------------------------------------------
686# Handle the CONFIG_FILES options
687#---------------------------------------------------------
688ifdef CONFIG_FILES
689
690ifdef NO_INSTALL
691install-local::
692 $(Echo) Install circumvented with NO_INSTALL
693uninstall-local::
694 $(Echo) UnInstall circumvented with NO_INSTALL
695else
696install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
697 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
698 $(Verb)for file in $(CONFIG_FILES); do \
699 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
700 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
701 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
702 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
703 else \
704 $(ECHO) Error: cannot find config file $${file}. ; \
705 fi \
706 done
707
708uninstall-local::
709 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
710 $(Verb)for file in $(CONFIG_FILES); do \
711 $(RM) -f $(PROJ_etcdir)/$${file} ; \
712 done
713endif
714
715endif
716
717###############################################################################
718# Set up variables for building libararies
719###############################################################################
720
721#---------------------------------------------------------
722# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000723# libraries needed when linking. There are "Proj" libs
724# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000725# by the LLVM project).
726#---------------------------------------------------------
727
728ifdef USEDLIBS
729ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
730ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
731ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
732ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
733endif
734
735ifdef LLVMLIBS
736LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
737LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
738LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
739LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
740endif
741
Daniel Dunbara89194e2008-10-03 19:11:19 +0000742ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000743ifdef LINK_COMPONENTS
744
745# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
746# clean in tools, then do a make in tools (instead of at the top level).
747$(LLVM_CONFIG):
748 @echo "*** llvm-config doesn't exist - rebuilding it."
749 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000750
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
752
753ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
754ProjLibsPaths += $(LLVM_CONFIG) \
755 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
756endif
757endif
758
759###############################################################################
760# Library Build Rules: Four ways to build a library
761###############################################################################
762
763#---------------------------------------------------------
764# Bytecode Module Targets:
765# If the user set MODULE_NAME then they want to build a
766# bytecode module from the sources. We compile all the
767# sources and link it together into a single bytecode
768# module.
769#---------------------------------------------------------
770
771ifdef MODULE_NAME
772ifeq ($(strip $(LLVMGCC)),)
773$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
774else
775
776Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000777LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778
779
780ifdef EXPORTED_SYMBOL_FILE
781LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
782endif
783
784$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
785 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
786 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
787
788all-local:: $(Module)
789
790clean-local::
791ifneq ($(strip $(Module)),)
792 -$(Verb) $(RM) -f $(Module)
793endif
794
795ifdef BYTECODE_DESTINATION
796ModuleDestDir := $(BYTECODE_DESTINATION)
797else
798ModuleDestDir := $(PROJ_libdir)
799endif
800
801ifdef NO_INSTALL
802install-local::
803 $(Echo) Install circumvented with NO_INSTALL
804uninstall-local::
805 $(Echo) Uninstall circumvented with NO_INSTALL
806else
807DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
808
809install-module:: $(DestModule)
810install-local:: $(DestModule)
811
Misha Brukman89fe5162009-01-08 02:11:55 +0000812$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000813 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
814 $(Verb) $(DataInstall) $(Module) $(DestModule)
815
816uninstall-local::
817 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
818 -$(Verb) $(RM) -f $(DestModule)
819endif
820
821endif
822endif
823
824# if we're building a library ...
825ifdef LIBRARYNAME
826
827# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
828LIBRARYNAME := $(strip $(LIBRARYNAME))
829ifdef LOADABLE_MODULE
830LibName.LA := $(LibDir)/$(LIBRARYNAME).la
831else
832LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
833endif
834LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
835LibName.O := $(LibDir)/$(LIBRARYNAME).o
836LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
837
838#---------------------------------------------------------
839# Shared Library Targets:
840# If the user asked for a shared library to be built
841# with the SHARED_LIBRARY variable, then we provide
842# targets for building them.
843#---------------------------------------------------------
844ifdef SHARED_LIBRARY
845
846all-local:: $(LibName.LA)
847
848ifdef LINK_LIBS_IN_SHARED
849ifdef LOADABLE_MODULE
850SharedLibKindMessage := "Loadable Module"
851else
852SharedLibKindMessage := "Shared Library"
853endif
Chris Lattner94adbf92008-02-05 19:43:40 +0000854$(LibName.LA): $(ObjectsLO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000855 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
856 $(LIBRARYNAME)$(SHLIBEXT)
857 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
858 $(LLVMLibsOptions)
859 $(Verb) $(LTInstall) $@ $(LibDir)
860else
861$(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
862 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
863 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
864 $(Verb) $(LTInstall) $@ $(LibDir)
865endif
866
867clean-local::
868ifneq ($(strip $(LibName.LA)),)
869 -$(Verb) $(RM) -f $(LibName.LA)
870endif
871
872ifdef NO_INSTALL
873install-local::
874 $(Echo) Install circumvented with NO_INSTALL
875uninstall-local::
876 $(Echo) Uninstall circumvented with NO_INSTALL
877else
878DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
879
880install-local:: $(DestSharedLib)
881
Mike Stump98f72e02009-02-12 23:45:11 +0000882$(DestSharedLib): $(LibName.LA) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000883 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
884 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
885 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
886
Misha Brukman89fe5162009-01-08 02:11:55 +0000887uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
889 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
890endif
891endif
892
893#---------------------------------------------------------
894# Bytecode Library Targets:
895# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +0000896# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897# targets for building them.
898#---------------------------------------------------------
899ifdef BYTECODE_LIBRARY
900ifeq ($(strip $(LLVMGCC)),)
901$(warning Bytecode libraries require llvm-gcc which could not be found ****)
902else
903
904all-local:: $(LibName.BCA)
905
906ifdef EXPORTED_SYMBOL_FILE
907BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
908 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
909
910$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
911 $(LLVMToolDir)/llvm-ar
912 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
913 "(internalize)"
914 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
915 $(Verb) $(RM) -f $@
916 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
917else
918$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
919 $(LLVMToolDir)/llvm-ar
920 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
921 $(Verb) $(RM) -f $@
922 $(Verb) $(LArchive) $@ $(ObjectsBC)
923
924endif
925
926clean-local::
927ifneq ($(strip $(LibName.BCA)),)
928 -$(Verb) $(RM) -f $(LibName.BCA)
929endif
930
931ifdef BYTECODE_DESTINATION
932BytecodeDestDir := $(BYTECODE_DESTINATION)
933else
934BytecodeDestDir := $(PROJ_libdir)
935endif
936
937DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
938
939install-bytecode-local:: $(DestBytecodeLib)
940
941ifdef NO_INSTALL
942install-local::
943 $(Echo) Install circumvented with NO_INSTALL
944uninstall-local::
945 $(Echo) Uninstall circumvented with NO_INSTALL
946else
947install-local:: $(DestBytecodeLib)
948
Mike Stump98f72e02009-02-12 23:45:11 +0000949$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000950 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
951 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
952
953uninstall-local::
954 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
955 -$(Verb) $(RM) -f $(DestBytecodeLib)
956endif
957endif
958endif
959
960#---------------------------------------------------------
961# ReLinked Library Targets:
962# If the user explicitly requests a relinked library with
963# BUILD_RELINKED, provide it. Otherwise, if they specify
964# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
965# them one.
966#---------------------------------------------------------
967ifndef BUILD_ARCHIVE
968ifndef DONT_BUILD_RELINKED
969BUILD_RELINKED = 1
970endif
971endif
972
973ifdef BUILD_RELINKED
974
975all-local:: $(LibName.O)
976
977$(LibName.O): $(ObjectsO) $(LibDir)/.dir
978 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
979 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
980
981clean-local::
982ifneq ($(strip $(LibName.O)),)
983 -$(Verb) $(RM) -f $(LibName.O)
984endif
985
986ifdef NO_INSTALL
987install-local::
988 $(Echo) Install circumvented with NO_INSTALL
989uninstall-local::
990 $(Echo) Uninstall circumvented with NO_INSTALL
991else
992DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
993
994install-local:: $(DestRelinkedLib)
995
Mike Stump98f72e02009-02-12 23:45:11 +0000996$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000997 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
998 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
999
1000uninstall-local::
1001 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1002 -$(Verb) $(RM) -f $(DestRelinkedLib)
1003endif
1004endif
1005
1006#---------------------------------------------------------
1007# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001008# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001009# then we provide targets for building them.
1010#---------------------------------------------------------
1011ifdef BUILD_ARCHIVE
1012
1013all-local:: $(LibName.A)
1014
1015$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1016 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1017 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001018 $(Verb) $(Archive) $@ $(ObjectsO)
1019 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020
1021clean-local::
1022ifneq ($(strip $(LibName.A)),)
1023 -$(Verb) $(RM) -f $(LibName.A)
1024endif
1025
1026ifdef NO_INSTALL
1027install-local::
1028 $(Echo) Install circumvented with NO_INSTALL
1029uninstall-local::
1030 $(Echo) Uninstall circumvented with NO_INSTALL
1031else
1032DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1033
1034install-local:: $(DestArchiveLib)
1035
Mike Stump98f72e02009-02-12 23:45:11 +00001036$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1038 $(Verb) $(MKDIR) $(PROJ_libdir)
1039 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
1040
1041uninstall-local::
1042 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1043 -$(Verb) $(RM) -f $(DestArchiveLib)
1044endif
1045endif
1046
1047# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001048endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049
1050###############################################################################
1051# Tool Build Rules: Build executable tool based on TOOLNAME option
1052###############################################################################
1053
1054ifdef TOOLNAME
1055
1056#---------------------------------------------------------
1057# Set up variables for building a tool.
1058#---------------------------------------------------------
1059ifdef EXAMPLE_TOOL
1060ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1061else
1062ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1063endif
1064
1065#---------------------------------------------------------
1066# Provide targets for building the tools
1067#---------------------------------------------------------
1068all-local:: $(ToolBuildPath)
1069
1070clean-local::
1071ifneq ($(strip $(ToolBuildPath)),)
1072 -$(Verb) $(RM) -f $(ToolBuildPath)
1073endif
1074
1075ifdef EXAMPLE_TOOL
1076$(ToolBuildPath): $(ExmplDir)/.dir
1077else
1078$(ToolBuildPath): $(ToolDir)/.dir
1079endif
1080
1081$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1082 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1083 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1084 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1085 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001086 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087
1088ifdef NO_INSTALL
1089install-local::
1090 $(Echo) Install circumvented with NO_INSTALL
1091uninstall-local::
1092 $(Echo) Uninstall circumvented with NO_INSTALL
1093else
1094DestTool = $(PROJ_bindir)/$(TOOLNAME)
1095
1096install-local:: $(DestTool)
1097
Mike Stump98f72e02009-02-12 23:45:11 +00001098$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001099 $(Echo) Installing $(BuildMode) $(DestTool)
1100 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1101
1102uninstall-local::
1103 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1104 -$(Verb) $(RM) -f $(DestTool)
1105endif
1106endif
1107
1108###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001109# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110###############################################################################
1111
1112# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1113ifeq ($(OS),HP-UX)
1114 DISABLE_AUTO_DEPENDENCIES=1
1115endif
1116
1117ifdef SHARED_LIBRARY
1118PIC_FLAG = "(PIC)"
1119MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1120MAYBE_PIC_Compile.C = $(LTCompile.C)
1121else
1122MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1123MAYBE_PIC_Compile.C = $(Compile.C)
1124endif
1125
1126# Provide rule sets for when dependency generation is enabled
1127ifndef DISABLE_AUTO_DEPENDENCIES
1128
1129#---------------------------------------------------------
1130# Create .lo files in the ObjDir directory from the .cpp and .c files...
1131#---------------------------------------------------------
1132
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001133DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1134 -MT "$(ObjDir)/$*.lo" -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001135
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001136# If the build succeeded, move the dependency file over. If it failed, put an
1137# empty file there.
1138DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1139 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1140
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001141$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1142 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001143 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1144 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001145
1146$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1147 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001148 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1149 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001150
1151$(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1152 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001153 $(Verb) if $(MAYBE_PIC_Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1154 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155
1156#---------------------------------------------------------
1157# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1158#---------------------------------------------------------
1159
1160$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1161 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1162 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1163 $< -o $@ -S -emit-llvm ; \
1164 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1165 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001166 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001167 $(call UPGRADE_LL,$@)
1168
1169$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1170 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1171 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1172 $< -o $@ -S -emit-llvm ; \
1173 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1174 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001175 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001176 $(call UPGRADE_LL,$@)
1177
1178$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1179 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1180 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1181 $< -o $@ -S -emit-llvm ; \
1182 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1183 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001184 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001185 $(call UPGRADE_LL,$@)
1186
1187# Provide alternate rule sets if dependencies are disabled
1188else
1189
1190$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1191 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Misha Brukman89fe5162009-01-08 02:11:55 +00001192 $(MAYBE_PIC_Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001193
1194$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1195 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Misha Brukman89fe5162009-01-08 02:11:55 +00001196 $(MAYBE_PIC_Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001197
1198$(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1199 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Misha Brukman89fe5162009-01-08 02:11:55 +00001200 $(MAYBE_PIC_Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001201
1202$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1203 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1204 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001205 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001206 $(call UPGRADE_LL,$@)
1207
1208$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1209 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1210 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001211 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001212 $(call UPGRADE_LL,$@)
1213
1214$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1215 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1216 $(BCCompile.C) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001217 $(call UPGRADE_MSG,@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001218 $(call UPGRADE_LL,@)
1219
1220endif
1221
1222
1223## Rules for building preprocessed (.i/.ii) outputs.
1224$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1225 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1226 $(Verb) $(Preprocess.CXX) $< -o $@
1227
1228$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1229 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1230 $(Verb) $(Preprocess.CXX) $< -o $@
1231
1232$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1233 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1234 $(Verb) $(Preprocess.C) $< -o $@
1235
1236
1237$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1238 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1239 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1240
1241$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1242 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1243 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1244
1245$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1246 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1247 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1248
1249
1250# make the C and C++ compilers strip debug info out of bytecode libraries.
1251ifdef DEBUG_RUNTIME
1252$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1253 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1254 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1255else
1256$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1257 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1258 $(Verb) $(LLVMAS) $< -o - | \
1259 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1260endif
1261
1262
1263#---------------------------------------------------------
1264# Provide rule to build .bc files from .ll sources,
1265# regardless of dependencies
1266#---------------------------------------------------------
1267$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1268 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1269 $(Verb) $(LLVMAS) $< -f -o $@
1270
1271###############################################################################
1272# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1273###############################################################################
1274
1275ifdef TARGET
1276
1277TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
Evan Cheng301aaf52008-11-24 07:34:46 +00001278 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1279 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1280 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1281 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001282 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1283 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1284INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1285INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1286.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1287
1288# All of these files depend on tblgen and the .td files.
1289$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1290
Misha Brukman89fe5162009-01-08 02:11:55 +00001291# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001292# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1293# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001294# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001295# dependencies of the .inc files are, unless the contents of the .inc file
1296# changes.
1297$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1298 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1299
1300$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1301$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1302 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001303 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001304
1305$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1306$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1307 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001308 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001309
1310$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1311$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1312 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001313 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001314
1315$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1316$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1317 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001318 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001319
1320$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1321$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1322 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001323 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001324
1325$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1326$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1327 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001328 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001329
1330$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1331$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1332 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001333 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001334
1335$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1336$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1337 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001338 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339
1340$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1341$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001342 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001343 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001344
Dan Gohmanb75dead2008-08-13 20:19:35 +00001345$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1346$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1347 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1348 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1349
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001350$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1351$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1352 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001353 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001354
1355$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1356$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1357 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001358 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001359
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001360$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1361$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1362 $(Echo) "Building $(<F) calling convention information with tblgen"
1363 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1364
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001365clean-local::
1366 -$(Verb) $(RM) -f $(INCFiles)
1367
1368endif
1369
1370###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001371# OTHER RULES: Other rules needed
1372###############################################################################
1373
1374# To create postscript files from dot files...
1375ifneq ($(DOT),false)
1376%.ps: %.dot
1377 $(DOT) -Tps < $< > $@
1378else
1379%.ps: %.dot
1380 $(Echo) "Cannot build $@: The program dot is not installed"
1381endif
1382
1383# This rules ensures that header files that are removed still have a rule for
1384# which they can be "generated." This allows make to ignore them and
1385# reproduce the dependency lists.
1386%.h:: ;
1387%.hpp:: ;
1388
1389# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001390# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001391# errors or disastrous removal.
1392clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001393ifneq ($(strip $(ObjRootDir)),)
1394 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001395endif
1396 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1397ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1398 -$(Verb) $(RM) -f *$(SHLIBEXT)
1399endif
1400
1401clean-all-local::
1402 -$(Verb) $(RM) -rf Debug Release Profile
1403
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001404
1405###############################################################################
1406# DEPENDENCIES: Include the dependency files if we should
1407###############################################################################
1408ifndef DISABLE_AUTO_DEPENDENCIES
1409
1410# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001411ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001412
1413# Get the list of dependency files
1414DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1415DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1416
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001417-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001418
1419endif
1420
Misha Brukman89fe5162009-01-08 02:11:55 +00001421endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001422
1423###############################################################################
1424# CHECK: Running the test suite
1425###############################################################################
1426
1427check::
1428 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1429 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1430 $(EchoCmd) Running test suite ; \
1431 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1432 TESTSUITE=$(TESTSUITE) ; \
1433 else \
1434 $(EchoCmd) No Makefile in test directory ; \
1435 fi ; \
1436 else \
1437 $(EchoCmd) No test directory ; \
1438 fi
1439
1440###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001441# UNITTESTS: Running the unittests test suite
1442###############################################################################
1443
1444unittests::
1445 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1446 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1447 $(EchoCmd) Running unittests test suite ; \
1448 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1449 else \
1450 $(EchoCmd) No Makefile in unittests directory ; \
1451 fi ; \
1452 else \
1453 $(EchoCmd) No unittests directory ; \
1454 fi
1455
1456###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001457# DISTRIBUTION: Handle construction of a distribution tarball
1458###############################################################################
1459
1460#------------------------------------------------------------------------
1461# Define distribution related variables
1462#------------------------------------------------------------------------
1463DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1464DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1465TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1466DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1467DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1468DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1469DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1470 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1471 Makefile.config.in configure autoconf
1472DistOther := $(notdir $(wildcard \
1473 $(PROJ_SRC_DIR)/*.h \
1474 $(PROJ_SRC_DIR)/*.td \
1475 $(PROJ_SRC_DIR)/*.def \
1476 $(PROJ_SRC_DIR)/*.ll \
1477 $(PROJ_SRC_DIR)/*.in))
1478DistSubDirs := $(SubDirs)
1479DistSources = $(Sources) $(EXTRA_DIST)
1480DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1481
1482#------------------------------------------------------------------------
1483# We MUST build distribution with OBJ_DIR != SRC_DIR
1484#------------------------------------------------------------------------
1485ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1486dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1487 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1488
1489else
1490
1491#------------------------------------------------------------------------
1492# Prevent attempt to run dist targets from anywhere but the top level
1493#------------------------------------------------------------------------
1494ifneq ($(LEVEL),.)
1495dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1496 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1497else
1498
1499#------------------------------------------------------------------------
1500# Provide the top level targets
1501#------------------------------------------------------------------------
1502
1503dist-gzip:: $(DistTarGZip)
1504
1505$(DistTarGZip) : $(TopDistDir)/.makedistdir
1506 $(Echo) Packing gzipped distribution tar file.
1507 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1508 $(GZIP) -c > "$(DistTarGZip)"
1509
1510dist-bzip2:: $(DistTarBZ2)
1511
1512$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1513 $(Echo) Packing bzipped distribution tar file.
1514 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1515 $(BZIP2) -c >$(DistTarBZ2)
1516
1517dist-zip:: $(DistZip)
1518
1519$(DistZip) : $(TopDistDir)/.makedistdir
1520 $(Echo) Packing zipped distribution file.
1521 $(Verb) rm -f $(DistZip)
1522 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1523
Misha Brukman89fe5162009-01-08 02:11:55 +00001524dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001525 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1526
1527DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1528
1529dist-check:: $(DistTarGZip)
1530 $(Echo) Checking distribution tar file.
1531 $(Verb) if test -d $(DistCheckDir) ; then \
1532 $(RM) -rf $(DistCheckDir) ; \
1533 fi
1534 $(Verb) $(MKDIR) $(DistCheckDir)
1535 $(Verb) cd $(DistCheckDir) && \
1536 $(MKDIR) $(DistCheckDir)/build && \
1537 $(MKDIR) $(DistCheckDir)/install && \
1538 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1539 cd build && \
1540 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1541 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1542 $(MAKE) all && \
1543 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001544 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001545 $(MAKE) install && \
1546 $(MAKE) uninstall && \
1547 $(MAKE) dist-clean && \
1548 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1549
1550dist-clean::
1551 $(Echo) Cleaning distribution files
1552 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1553 $(DistCheckDir)
1554
1555endif
1556
1557#------------------------------------------------------------------------
1558# Provide the recursive distdir target for building the distribution directory
1559#------------------------------------------------------------------------
1560distdir: $(DistDir)/.makedistdir
1561$(DistDir)/.makedistdir: $(DistSources)
1562 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1563 if test -d "$(DistDir)" ; then \
1564 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1565 exit 1 ; \
1566 fi ; \
1567 $(EchoCmd) Removing old $(DistDir) ; \
1568 $(RM) -rf $(DistDir); \
1569 $(EchoCmd) Making 'all' to verify build ; \
1570 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1571 fi
1572 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001573 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001574 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1575 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1576 for file in $(DistFiles) ; do \
1577 case "$$file" in \
1578 $(PROJ_SRC_DIR)/*) \
1579 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1580 ;; \
1581 $(PROJ_SRC_ROOT)/*) \
1582 file=`echo "$$file" | \
1583 sed "s#^$$srcrootstrip/##"` \
1584 ;; \
1585 esac; \
1586 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1587 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1588 from_dir="$(PROJ_SRC_DIR)" ; \
1589 elif test -f "$$file" || test -d "$$file" ; then \
1590 from_dir=. ; \
1591 fi ; \
1592 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1593 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1594 to_dir="$(DistDir)/$$dir"; \
1595 $(MKDIR) "$$to_dir" ; \
1596 else \
1597 to_dir="$(DistDir)"; \
1598 fi; \
1599 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1600 if test -n "$$mid_dir" ; then \
1601 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1602 fi ; \
1603 if test -d "$$from_dir/$$file"; then \
1604 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1605 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1606 cd $(PROJ_SRC_DIR) ; \
1607 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1608 ( cd $$to_dir ; $(TAR) xf - ) ; \
1609 cd $(PROJ_OBJ_DIR) ; \
1610 else \
1611 cd $$from_dir ; \
1612 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1613 ( cd $$to_dir ; $(TAR) xf - ) ; \
1614 cd $(PROJ_OBJ_DIR) ; \
1615 fi; \
1616 elif test -f "$$from_dir/$$file" ; then \
1617 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1618 elif test -L "$$from_dir/$$file" ; then \
1619 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1620 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1621 $(EchoCmd) "===== WARNING: Distribution Source " \
1622 "$$from_dir/$$file Not Found!" ; \
1623 elif test "$(Verb)" != '@' ; then \
1624 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1625 fi; \
1626 done
1627 $(Verb) for subdir in $(DistSubDirs) ; do \
1628 if test "$$subdir" \!= "." ; then \
1629 new_distdir="$(DistDir)/$$subdir" ; \
1630 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1631 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1632 DistDir="$$new_distdir" distdir ) || exit 1; \
1633 fi; \
1634 done
1635 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1636 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1637 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1638 -name .svn \) -print` ;\
1639 $(MAKE) dist-hook ; \
1640 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1641 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1642 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1643 -o ! -type d ! -perm -444 -exec \
1644 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1645 || chmod -R a+r $(DistDir) ; \
1646 fi
1647
1648# This is invoked by distdir target, define it as a no-op to avoid errors if not
1649# defined by user.
1650dist-hook::
1651
1652endif
1653
1654###############################################################################
1655# TOP LEVEL - targets only to apply at the top level directory
1656###############################################################################
1657
1658ifeq ($(LEVEL),.)
1659
1660#------------------------------------------------------------------------
1661# Install support for the project's include files:
1662#------------------------------------------------------------------------
1663ifdef NO_INSTALL
1664install-local::
1665 $(Echo) Install circumvented with NO_INSTALL
1666uninstall-local::
1667 $(Echo) Uninstall circumvented with NO_INSTALL
1668else
1669install-local::
1670 $(Echo) Installing include files
1671 $(Verb) $(MKDIR) $(PROJ_includedir)
1672 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1673 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001674 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001675 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1676 grep -v .svn` ; do \
1677 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1678 if test \! -d "$$instdir" ; then \
1679 $(EchoCmd) Making install directory $$instdir ; \
1680 $(MKDIR) $$instdir ;\
1681 fi ; \
1682 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1683 done ; \
1684 fi
1685ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1686 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1687 cd $(PROJ_OBJ_ROOT)/include && \
1688 for hdr in `find . -type f -print | grep -v CVS` ; do \
1689 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1690 done ; \
1691 fi
1692endif
1693
1694uninstall-local::
1695 $(Echo) Uninstalling include files
1696 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1697 cd $(PROJ_SRC_ROOT)/include && \
1698 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001699 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001700 -o -name '*.in' ')' -print ')' | \
1701 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1702 cd $(PROJ_SRC_ROOT)/include && \
1703 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1704 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1705 fi
1706endif
1707endif
1708
1709check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001710 @echo searching for overlength lines in files: $(Sources)
1711 @echo
1712 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001713 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001714
1715check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001716 @echo searching for tabs in files: $(Sources)
1717 @echo
1718 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001719 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001720
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001721check-footprint:
1722 @ls -l $(LibDir) | awk '\
1723 BEGIN { sum = 0; } \
1724 { sum += $$5; } \
1725 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1726 @ls -l $(ToolDir) | awk '\
1727 BEGIN { sum = 0; } \
1728 { sum += $$5; } \
1729 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1730#------------------------------------------------------------------------
1731# Print out the directories used for building
1732#------------------------------------------------------------------------
1733printvars::
1734 $(Echo) "BuildMode : " '$(BuildMode)'
1735 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1736 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1737 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1738 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1739 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1740 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1741 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1742 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1743 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1744 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1745 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1746 $(Echo) "UserTargets : " '$(UserTargets)'
1747 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1748 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1749 $(Echo) "ObjDir : " '$(ObjDir)'
1750 $(Echo) "LibDir : " '$(LibDir)'
1751 $(Echo) "ToolDir : " '$(ToolDir)'
1752 $(Echo) "ExmplDir : " '$(ExmplDir)'
1753 $(Echo) "Sources : " '$(Sources)'
1754 $(Echo) "TDFiles : " '$(TDFiles)'
1755 $(Echo) "INCFiles : " '$(INCFiles)'
1756 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1757 $(Echo) "PreConditions: " '$(PreConditions)'
1758 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1759 $(Echo) "Compile.C : " '$(Compile.C)'
1760 $(Echo) "Archive : " '$(Archive)'
1761 $(Echo) "YaccFiles : " '$(YaccFiles)'
1762 $(Echo) "LexFiles : " '$(LexFiles)'
1763 $(Echo) "Module : " '$(Module)'
1764 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1765 $(Echo) "SubDirs : " '$(SubDirs)'
1766 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1767 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001768
1769###
1770# Debugging
1771
1772# General debugging rule, use 'make print-XXX' to print the
1773# definition, value and origin of XXX.
1774print-%:
1775 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))