blob: af2b459bc054278cd81b839401221eb704edfab0 [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)
281 CXX.Flags += -fPIC
282 C.Flags += -fPIC
283endif
284
285CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
286C.Flags += $(CFLAGS)
287CPP.Defines += $(CPPFLAGS)
288CPP.BaseFlags += $(CPP.Defines)
289LD.Flags += $(LDFLAGS)
290AR.Flags := cru
291LibTool.Flags := --tag=CXX
292
293# Make Floating point IEEE compliant on Alpha.
294ifeq ($(ARCH),Alpha)
295 CXX.Flags += -mieee
296 CPP.BaseFlags += -mieee
297ifeq ($(ENABLE_PIC),0)
298 CXX.Flags += -fPIC
299 CPP.BaseFlags += -fPIC
300endif
301endif
302
303ifeq ($(ARCH),Alpha)
304 LD.Flags += -Wl,--no-relax
305endif
306
307#--------------------------------------------------------------------
308# Directory locations
309#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000310TargetMode :=
311ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000312 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000313endif
314
315ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000316ObjDir := $(ObjRootDir)
317LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
318ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
319ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
320LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
321LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
322LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323CFERuntimeLibDir := $(LLVMGCCDIR)/lib
324
325#--------------------------------------------------------------------
326# Full Paths To Compiled Tools and Utilities
327#--------------------------------------------------------------------
328EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
329Echo = @$(EchoCmd)
330ifndef LIBTOOL
331LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
332endif
333ifndef LLVMAS
334LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
335endif
336ifndef TBLGEN
337 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000338 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339 else
340 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
341 endif
342endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000343LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344ifndef LLVMLD
345LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
346endif
347ifndef LLVMDIS
348LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
349endif
350ifndef LLI
351LLI := $(LLVMToolDir)/lli$(EXEEXT)
352endif
353ifndef LLC
354LLC := $(LLVMToolDir)/llc$(EXEEXT)
355endif
356ifndef LOPT
357LOPT := $(LLVMToolDir)/opt$(EXEEXT)
358endif
359ifndef LBUGPOINT
360LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
361endif
362ifndef LUPGRADE
363LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
364endif
365ifeq ($(LLVMGCC_MAJVERS),3)
366UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
367UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
368LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
369LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
370else
371UPGRADE_MSG =
372UPGRADE_LL =
373LLVMGCCWITHPATH := $(LLVMGCC)
374LLVMGXXWITHPATH := $(LLVMGXX)
375endif
376
377#--------------------------------------------------------------------
378# Adjust to user's request
379#--------------------------------------------------------------------
380
381# Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
382# to be built. Note that if LOADABLE_MODULE is specified then the resulting
Misha Brukman89fe5162009-01-08 02:11:55 +0000383# shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384# several other things so we force them to be defined/on.
385ifdef LOADABLE_MODULE
386 SHARED_LIBRARY := 1
387 DONT_BUILD_RELINKED := 1
388 LINK_LIBS_IN_SHARED := 1
389 LD.Flags += -module
390endif
391
392ifdef SHARED_LIBRARY
393 LD.Flags += -rpath $(LibDir)
394else
395 LibTool.Flags += --tag=disable-shared
396endif
397
398ifdef TOOL_VERBOSE
399 C.Flags += -v
400 CXX.Flags += -v
401 LD.Flags += -v
402 VERBOSE := 1
403endif
404
405# Adjust settings for verbose mode
406ifndef VERBOSE
407 Verb := @
408 LibTool.Flags += --silent
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000409 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
411else
Misha Brukman89fe5162009-01-08 02:11:55 +0000412 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413endif
414
415# By default, strip symbol information from executable
416ifndef KEEP_SYMBOLS
417 Strip := $(PLATFORMSTRIPOPTS)
418 StripWarnMsg := "(without symbols)"
419 Install.StripFlag += -s
420endif
421
422# Adjust linker flags for building an executable
423ifdef TOOLNAME
424ifdef EXAMPLE_TOOL
425 LD.Flags += -rpath $(ExmplDir) -export-dynamic
426else
427 LD.Flags += -rpath $(ToolDir) -export-dynamic
428endif
429endif
430
431#----------------------------------------------------------
432# Options To Invoke Tools
433#----------------------------------------------------------
434
435CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
436 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
437
438ifeq ($(OS),HP-UX)
439 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
440endif
441
442# If we are building a universal binary on Mac OS/X, pass extra options. This
443# is useful to people that want to link the LLVM libraries into their universal
444# apps.
445#
446# The following can be optionally specified:
447# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
448# For Mac OS/X 10.4 Intel machines, the traditional one is:
449# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
450# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
451# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
452# i386/ppc only.
453ifdef UNIVERSAL
454 ifndef UNIVERSAL_ARCH
455 UNIVERSAL_ARCH := i386 ppc
456 endif
457 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
458 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
459 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
460 ifdef UNIVERSAL_SDK_PATH
461 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
462 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
463 endif
464
465 # Building universal cannot compute dependencies automatically.
466 DISABLE_AUTO_DEPENDENCIES=1
467endif
468
Chris Lattner35c997c2008-06-24 17:44:42 +0000469ifeq ($(OS),SunOS)
470CPP.BaseFlags += -include llvm/System/Solaris.h
471endif
472
Misha Brukman89fe5162009-01-08 02:11:55 +0000473LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000474CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000476CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
477 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000478 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
479 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
480 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481
Jim Grosbache4c032e2008-10-02 22:56:44 +0000482 ifeq ($(BUILD_COMPONENT), 1)
483 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
484 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
485 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
486 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
487 $(LD.Flags) $(Strip)
488 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
489 $(Relink.Flags)
490else
491 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
492 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
493 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
494 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
495 $(LD.Flags) $(Strip)
496 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
497 $(Relink.Flags)
498endif
499
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
501BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
502Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
503
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
505BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
506 $(CompileCommonOpts)
507
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
510LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
511 $(Install.Flags)
Misha Brukman89fe5162009-01-08 02:11:55 +0000512ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
513ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000515
516# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
517# paths. In this case, the SYSPATH function (defined in
518# Makefile.config) transforms Unix paths into Windows paths.
519TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000520 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000521 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
522 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
523
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524Archive = $(AR) $(AR.Flags)
525LArchive = $(LLVMToolDir)/llvm-ar rcsf
526ifdef RANLIB
527Ranlib = $(RANLIB)
528else
529Ranlib = ranlib
530endif
531
532#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000533# Get the list of source files and compute object file
534# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535#----------------------------------------------------------
536
537ifndef SOURCES
538 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000539 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540else
541 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000542endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543
544ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000545Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546endif
547
548BaseNameSources := $(sort $(basename $(Sources)))
549
550ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
551ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
552ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
553
554###############################################################################
555# DIRECTORIES: Handle recursive descent of directory structure
556###############################################################################
557
558#---------------------------------------------------------
559# Provide rules to make install dirs. This must be early
560# in the file so they get built before dependencies
561#---------------------------------------------------------
562
Mike Stump98f72e02009-02-12 23:45:11 +0000563$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000564 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000565
566# To create other directories, as needed, and timestamp their creation
567%/.dir:
568 $(Verb) $(MKDIR) $* > /dev/null
569 $(Verb) $(DATE) > $@
570
571.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
572.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
573
574#---------------------------------------------------------
575# Handle the DIRS options for sequential construction
576#---------------------------------------------------------
577
Misha Brukman89fe5162009-01-08 02:11:55 +0000578SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579ifdef DIRS
580SubDirs += $(DIRS)
581
582ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
583$(RecursiveTargets)::
584 $(Verb) for dir in $(DIRS); do \
585 if [ ! -f $$dir/Makefile ]; then \
586 $(MKDIR) $$dir; \
587 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
588 fi; \
589 ($(MAKE) -C $$dir $@ ) || exit 1; \
590 done
591else
592$(RecursiveTargets)::
593 $(Verb) for dir in $(DIRS); do \
594 ($(MAKE) -C $$dir $@ ) || exit 1; \
595 done
596endif
597
598endif
599
600#---------------------------------------------------------
601# Handle the EXPERIMENTAL_DIRS options ensuring success
602# after each directory is built.
603#---------------------------------------------------------
604ifdef EXPERIMENTAL_DIRS
605$(RecursiveTargets)::
606 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
607 if [ ! -f $$dir/Makefile ]; then \
608 $(MKDIR) $$dir; \
609 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
610 fi; \
611 ($(MAKE) -C $$dir $@ ) || exit 0; \
612 done
613endif
614
615#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000616# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
617#-----------------------------------------------------------
618ifdef OPTIONAL_PARALLEL_DIRS
619 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
620endif
621
622#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623# Handle the PARALLEL_DIRS options for parallel construction
624#-----------------------------------------------------------
625ifdef PARALLEL_DIRS
626
627SubDirs += $(PARALLEL_DIRS)
628
629# Unfortunately, this list must be maintained if new recursive targets are added
630all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
631clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
632clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
633install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
634uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
635install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
636
637ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
638
639$(ParallelTargets) :
640 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
641 $(MKDIR) $(@D); \
642 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
643 fi; \
644 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
645endif
646
647#---------------------------------------------------------
648# Handle the OPTIONAL_DIRS options for directores that may
649# or may not exist.
650#---------------------------------------------------------
651ifdef OPTIONAL_DIRS
652
653SubDirs += $(OPTIONAL_DIRS)
654
655ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
656$(RecursiveTargets)::
657 $(Verb) for dir in $(OPTIONAL_DIRS); do \
658 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
659 if [ ! -f $$dir/Makefile ]; then \
660 $(MKDIR) $$dir; \
661 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
662 fi; \
663 ($(MAKE) -C$$dir $@ ) || exit 1; \
664 fi \
665 done
666else
667$(RecursiveTargets)::
668 $(Verb) for dir in $(OPTIONAL_DIRS); do \
669 ($(MAKE) -C$$dir $@ ) || exit 1; \
670 done
671endif
672endif
673
674#---------------------------------------------------------
675# Handle the CONFIG_FILES options
676#---------------------------------------------------------
677ifdef CONFIG_FILES
678
679ifdef NO_INSTALL
680install-local::
681 $(Echo) Install circumvented with NO_INSTALL
682uninstall-local::
683 $(Echo) UnInstall circumvented with NO_INSTALL
684else
685install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
686 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
687 $(Verb)for file in $(CONFIG_FILES); do \
688 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
689 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
690 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
691 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
692 else \
693 $(ECHO) Error: cannot find config file $${file}. ; \
694 fi \
695 done
696
697uninstall-local::
698 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
699 $(Verb)for file in $(CONFIG_FILES); do \
700 $(RM) -f $(PROJ_etcdir)/$${file} ; \
701 done
702endif
703
704endif
705
706###############################################################################
707# Set up variables for building libararies
708###############################################################################
709
710#---------------------------------------------------------
711# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000712# libraries needed when linking. There are "Proj" libs
713# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714# by the LLVM project).
715#---------------------------------------------------------
716
717ifdef USEDLIBS
718ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
719ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
720ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
721ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
722endif
723
724ifdef LLVMLIBS
725LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
726LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
727LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
728LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
729endif
730
Daniel Dunbara89194e2008-10-03 19:11:19 +0000731ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732ifdef LINK_COMPONENTS
733
734# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
735# clean in tools, then do a make in tools (instead of at the top level).
736$(LLVM_CONFIG):
737 @echo "*** llvm-config doesn't exist - rebuilding it."
738 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000739
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
741
742ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
743ProjLibsPaths += $(LLVM_CONFIG) \
744 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
745endif
746endif
747
748###############################################################################
749# Library Build Rules: Four ways to build a library
750###############################################################################
751
752#---------------------------------------------------------
753# Bytecode Module Targets:
754# If the user set MODULE_NAME then they want to build a
755# bytecode module from the sources. We compile all the
756# sources and link it together into a single bytecode
757# module.
758#---------------------------------------------------------
759
760ifdef MODULE_NAME
761ifeq ($(strip $(LLVMGCC)),)
762$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
763else
764
765Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000766LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767
768
769ifdef EXPORTED_SYMBOL_FILE
770LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
771endif
772
773$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
774 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
775 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
776
777all-local:: $(Module)
778
779clean-local::
780ifneq ($(strip $(Module)),)
781 -$(Verb) $(RM) -f $(Module)
782endif
783
784ifdef BYTECODE_DESTINATION
785ModuleDestDir := $(BYTECODE_DESTINATION)
786else
787ModuleDestDir := $(PROJ_libdir)
788endif
789
790ifdef NO_INSTALL
791install-local::
792 $(Echo) Install circumvented with NO_INSTALL
793uninstall-local::
794 $(Echo) Uninstall circumvented with NO_INSTALL
795else
796DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
797
798install-module:: $(DestModule)
799install-local:: $(DestModule)
800
Misha Brukman89fe5162009-01-08 02:11:55 +0000801$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
803 $(Verb) $(DataInstall) $(Module) $(DestModule)
804
805uninstall-local::
806 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
807 -$(Verb) $(RM) -f $(DestModule)
808endif
809
810endif
811endif
812
813# if we're building a library ...
814ifdef LIBRARYNAME
815
816# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
817LIBRARYNAME := $(strip $(LIBRARYNAME))
818ifdef LOADABLE_MODULE
819LibName.LA := $(LibDir)/$(LIBRARYNAME).la
820else
821LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
822endif
823LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
824LibName.O := $(LibDir)/$(LIBRARYNAME).o
825LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
826
827#---------------------------------------------------------
828# Shared Library Targets:
829# If the user asked for a shared library to be built
830# with the SHARED_LIBRARY variable, then we provide
831# targets for building them.
832#---------------------------------------------------------
833ifdef SHARED_LIBRARY
834
835all-local:: $(LibName.LA)
836
837ifdef LINK_LIBS_IN_SHARED
838ifdef LOADABLE_MODULE
839SharedLibKindMessage := "Loadable Module"
840else
841SharedLibKindMessage := "Shared Library"
842endif
Chris Lattner94adbf92008-02-05 19:43:40 +0000843$(LibName.LA): $(ObjectsLO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000844 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
845 $(LIBRARYNAME)$(SHLIBEXT)
846 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
847 $(LLVMLibsOptions)
848 $(Verb) $(LTInstall) $@ $(LibDir)
849else
850$(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
851 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
852 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
853 $(Verb) $(LTInstall) $@ $(LibDir)
854endif
855
856clean-local::
857ifneq ($(strip $(LibName.LA)),)
858 -$(Verb) $(RM) -f $(LibName.LA)
859endif
860
861ifdef NO_INSTALL
862install-local::
863 $(Echo) Install circumvented with NO_INSTALL
864uninstall-local::
865 $(Echo) Uninstall circumvented with NO_INSTALL
866else
867DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
868
869install-local:: $(DestSharedLib)
870
Mike Stump98f72e02009-02-12 23:45:11 +0000871$(DestSharedLib): $(LibName.LA) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
873 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
874 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
875
Misha Brukman89fe5162009-01-08 02:11:55 +0000876uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
878 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
879endif
880endif
881
882#---------------------------------------------------------
883# Bytecode Library Targets:
884# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +0000885# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886# targets for building them.
887#---------------------------------------------------------
888ifdef BYTECODE_LIBRARY
889ifeq ($(strip $(LLVMGCC)),)
890$(warning Bytecode libraries require llvm-gcc which could not be found ****)
891else
892
893all-local:: $(LibName.BCA)
894
895ifdef EXPORTED_SYMBOL_FILE
896BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
897 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
898
899$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
900 $(LLVMToolDir)/llvm-ar
901 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
902 "(internalize)"
903 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
904 $(Verb) $(RM) -f $@
905 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
906else
907$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
908 $(LLVMToolDir)/llvm-ar
909 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
910 $(Verb) $(RM) -f $@
911 $(Verb) $(LArchive) $@ $(ObjectsBC)
912
913endif
914
915clean-local::
916ifneq ($(strip $(LibName.BCA)),)
917 -$(Verb) $(RM) -f $(LibName.BCA)
918endif
919
920ifdef BYTECODE_DESTINATION
921BytecodeDestDir := $(BYTECODE_DESTINATION)
922else
923BytecodeDestDir := $(PROJ_libdir)
924endif
925
926DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
927
928install-bytecode-local:: $(DestBytecodeLib)
929
930ifdef NO_INSTALL
931install-local::
932 $(Echo) Install circumvented with NO_INSTALL
933uninstall-local::
934 $(Echo) Uninstall circumvented with NO_INSTALL
935else
936install-local:: $(DestBytecodeLib)
937
Mike Stump98f72e02009-02-12 23:45:11 +0000938$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
940 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
941
942uninstall-local::
943 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
944 -$(Verb) $(RM) -f $(DestBytecodeLib)
945endif
946endif
947endif
948
949#---------------------------------------------------------
950# ReLinked Library Targets:
951# If the user explicitly requests a relinked library with
952# BUILD_RELINKED, provide it. Otherwise, if they specify
953# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
954# them one.
955#---------------------------------------------------------
956ifndef BUILD_ARCHIVE
957ifndef DONT_BUILD_RELINKED
958BUILD_RELINKED = 1
959endif
960endif
961
962ifdef BUILD_RELINKED
963
964all-local:: $(LibName.O)
965
966$(LibName.O): $(ObjectsO) $(LibDir)/.dir
967 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
968 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
969
970clean-local::
971ifneq ($(strip $(LibName.O)),)
972 -$(Verb) $(RM) -f $(LibName.O)
973endif
974
975ifdef NO_INSTALL
976install-local::
977 $(Echo) Install circumvented with NO_INSTALL
978uninstall-local::
979 $(Echo) Uninstall circumvented with NO_INSTALL
980else
981DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
982
983install-local:: $(DestRelinkedLib)
984
Mike Stump98f72e02009-02-12 23:45:11 +0000985$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000986 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
987 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
988
989uninstall-local::
990 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
991 -$(Verb) $(RM) -f $(DestRelinkedLib)
992endif
993endif
994
995#---------------------------------------------------------
996# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +0000997# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998# then we provide targets for building them.
999#---------------------------------------------------------
1000ifdef BUILD_ARCHIVE
1001
1002all-local:: $(LibName.A)
1003
1004$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1005 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1006 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001007 $(Verb) $(Archive) $@ $(ObjectsO)
1008 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001009
1010clean-local::
1011ifneq ($(strip $(LibName.A)),)
1012 -$(Verb) $(RM) -f $(LibName.A)
1013endif
1014
1015ifdef NO_INSTALL
1016install-local::
1017 $(Echo) Install circumvented with NO_INSTALL
1018uninstall-local::
1019 $(Echo) Uninstall circumvented with NO_INSTALL
1020else
1021DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1022
1023install-local:: $(DestArchiveLib)
1024
Mike Stump98f72e02009-02-12 23:45:11 +00001025$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1027 $(Verb) $(MKDIR) $(PROJ_libdir)
1028 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
1029
1030uninstall-local::
1031 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1032 -$(Verb) $(RM) -f $(DestArchiveLib)
1033endif
1034endif
1035
1036# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001037endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038
1039###############################################################################
1040# Tool Build Rules: Build executable tool based on TOOLNAME option
1041###############################################################################
1042
1043ifdef TOOLNAME
1044
1045#---------------------------------------------------------
1046# Set up variables for building a tool.
1047#---------------------------------------------------------
1048ifdef EXAMPLE_TOOL
1049ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1050else
1051ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1052endif
1053
1054#---------------------------------------------------------
1055# Provide targets for building the tools
1056#---------------------------------------------------------
1057all-local:: $(ToolBuildPath)
1058
1059clean-local::
1060ifneq ($(strip $(ToolBuildPath)),)
1061 -$(Verb) $(RM) -f $(ToolBuildPath)
1062endif
1063
1064ifdef EXAMPLE_TOOL
1065$(ToolBuildPath): $(ExmplDir)/.dir
1066else
1067$(ToolBuildPath): $(ToolDir)/.dir
1068endif
1069
1070$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1071 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1072 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1073 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1074 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001075 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001076
1077ifdef NO_INSTALL
1078install-local::
1079 $(Echo) Install circumvented with NO_INSTALL
1080uninstall-local::
1081 $(Echo) Uninstall circumvented with NO_INSTALL
1082else
1083DestTool = $(PROJ_bindir)/$(TOOLNAME)
1084
1085install-local:: $(DestTool)
1086
Mike Stump98f72e02009-02-12 23:45:11 +00001087$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088 $(Echo) Installing $(BuildMode) $(DestTool)
1089 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1090
1091uninstall-local::
1092 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1093 -$(Verb) $(RM) -f $(DestTool)
1094endif
1095endif
1096
1097###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001098# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001099###############################################################################
1100
1101# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1102ifeq ($(OS),HP-UX)
1103 DISABLE_AUTO_DEPENDENCIES=1
1104endif
1105
1106ifdef SHARED_LIBRARY
1107PIC_FLAG = "(PIC)"
1108MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1109MAYBE_PIC_Compile.C = $(LTCompile.C)
1110else
1111MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1112MAYBE_PIC_Compile.C = $(Compile.C)
1113endif
1114
1115# Provide rule sets for when dependency generation is enabled
1116ifndef DISABLE_AUTO_DEPENDENCIES
1117
1118#---------------------------------------------------------
1119# Create .lo files in the ObjDir directory from the .cpp and .c files...
1120#---------------------------------------------------------
1121
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001122DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1123 -MT "$(ObjDir)/$*.lo" -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001124
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001125# If the build succeeded, move the dependency file over. If it failed, put an
1126# empty file there.
1127DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1128 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1129
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001130$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1131 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001132 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1133 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001134
1135$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1136 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001137 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1138 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139
1140$(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1141 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001142 $(Verb) if $(MAYBE_PIC_Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1143 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144
1145#---------------------------------------------------------
1146# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1147#---------------------------------------------------------
1148
1149$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1150 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1151 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1152 $< -o $@ -S -emit-llvm ; \
1153 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1154 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001155 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 $(call UPGRADE_LL,$@)
1157
1158$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1159 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1160 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1161 $< -o $@ -S -emit-llvm ; \
1162 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1163 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001164 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 $(call UPGRADE_LL,$@)
1166
1167$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1168 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1169 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1170 $< -o $@ -S -emit-llvm ; \
1171 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1172 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001173 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001174 $(call UPGRADE_LL,$@)
1175
1176# Provide alternate rule sets if dependencies are disabled
1177else
1178
1179$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1180 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Misha Brukman89fe5162009-01-08 02:11:55 +00001181 $(MAYBE_PIC_Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001182
1183$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1184 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Misha Brukman89fe5162009-01-08 02:11:55 +00001185 $(MAYBE_PIC_Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001186
1187$(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1188 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Misha Brukman89fe5162009-01-08 02:11:55 +00001189 $(MAYBE_PIC_Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001190
1191$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1192 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1193 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001194 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001195 $(call UPGRADE_LL,$@)
1196
1197$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1198 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1199 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001200 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001201 $(call UPGRADE_LL,$@)
1202
1203$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1204 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1205 $(BCCompile.C) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001206 $(call UPGRADE_MSG,@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001207 $(call UPGRADE_LL,@)
1208
1209endif
1210
1211
1212## Rules for building preprocessed (.i/.ii) outputs.
1213$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1214 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1215 $(Verb) $(Preprocess.CXX) $< -o $@
1216
1217$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1218 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1219 $(Verb) $(Preprocess.CXX) $< -o $@
1220
1221$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1222 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1223 $(Verb) $(Preprocess.C) $< -o $@
1224
1225
1226$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1227 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1228 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1229
1230$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1231 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1232 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1233
1234$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1235 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1236 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1237
1238
1239# make the C and C++ compilers strip debug info out of bytecode libraries.
1240ifdef DEBUG_RUNTIME
1241$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1242 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1243 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1244else
1245$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1246 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1247 $(Verb) $(LLVMAS) $< -o - | \
1248 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1249endif
1250
1251
1252#---------------------------------------------------------
1253# Provide rule to build .bc files from .ll sources,
1254# regardless of dependencies
1255#---------------------------------------------------------
1256$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1257 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1258 $(Verb) $(LLVMAS) $< -f -o $@
1259
1260###############################################################################
1261# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1262###############################################################################
1263
1264ifdef TARGET
1265
1266TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
Evan Cheng301aaf52008-11-24 07:34:46 +00001267 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1268 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1269 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1270 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001271 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1272 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1273INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1274INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1275.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1276
1277# All of these files depend on tblgen and the .td files.
1278$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1279
Misha Brukman89fe5162009-01-08 02:11:55 +00001280# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001281# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1282# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001283# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001284# dependencies of the .inc files are, unless the contents of the .inc file
1285# changes.
1286$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1287 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1288
1289$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1290$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1291 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001292 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001293
1294$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1295$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1296 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001297 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001298
1299$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1300$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1301 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001302 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001303
1304$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1305$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1306 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001307 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001308
1309$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1310$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1311 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001312 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001313
1314$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1315$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1316 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001317 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001318
1319$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1320$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1321 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001322 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001323
1324$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1325$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1326 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001327 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001328
1329$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1330$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001331 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001332 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001333
Dan Gohmanb75dead2008-08-13 20:19:35 +00001334$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1335$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1336 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1337 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1338
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1340$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1341 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001342 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001343
1344$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1345$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1346 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001347 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001348
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001349$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1350$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1351 $(Echo) "Building $(<F) calling convention information with tblgen"
1352 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1353
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001354clean-local::
1355 -$(Verb) $(RM) -f $(INCFiles)
1356
1357endif
1358
1359###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360# OTHER RULES: Other rules needed
1361###############################################################################
1362
1363# To create postscript files from dot files...
1364ifneq ($(DOT),false)
1365%.ps: %.dot
1366 $(DOT) -Tps < $< > $@
1367else
1368%.ps: %.dot
1369 $(Echo) "Cannot build $@: The program dot is not installed"
1370endif
1371
1372# This rules ensures that header files that are removed still have a rule for
1373# which they can be "generated." This allows make to ignore them and
1374# reproduce the dependency lists.
1375%.h:: ;
1376%.hpp:: ;
1377
1378# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001379# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001380# errors or disastrous removal.
1381clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001382ifneq ($(strip $(ObjRootDir)),)
1383 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001384endif
1385 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1386ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1387 -$(Verb) $(RM) -f *$(SHLIBEXT)
1388endif
1389
1390clean-all-local::
1391 -$(Verb) $(RM) -rf Debug Release Profile
1392
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001393
1394###############################################################################
1395# DEPENDENCIES: Include the dependency files if we should
1396###############################################################################
1397ifndef DISABLE_AUTO_DEPENDENCIES
1398
1399# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001400ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001401
1402# Get the list of dependency files
1403DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1404DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1405
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001406-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001407
1408endif
1409
Misha Brukman89fe5162009-01-08 02:11:55 +00001410endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001411
1412###############################################################################
1413# CHECK: Running the test suite
1414###############################################################################
1415
1416check::
1417 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1418 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1419 $(EchoCmd) Running test suite ; \
1420 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1421 TESTSUITE=$(TESTSUITE) ; \
1422 else \
1423 $(EchoCmd) No Makefile in test directory ; \
1424 fi ; \
1425 else \
1426 $(EchoCmd) No test directory ; \
1427 fi
1428
1429###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001430# UNITTESTS: Running the unittests test suite
1431###############################################################################
1432
1433unittests::
1434 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1435 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1436 $(EchoCmd) Running unittests test suite ; \
1437 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1438 else \
1439 $(EchoCmd) No Makefile in unittests directory ; \
1440 fi ; \
1441 else \
1442 $(EchoCmd) No unittests directory ; \
1443 fi
1444
1445###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001446# DISTRIBUTION: Handle construction of a distribution tarball
1447###############################################################################
1448
1449#------------------------------------------------------------------------
1450# Define distribution related variables
1451#------------------------------------------------------------------------
1452DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1453DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1454TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1455DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1456DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1457DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1458DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1459 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1460 Makefile.config.in configure autoconf
1461DistOther := $(notdir $(wildcard \
1462 $(PROJ_SRC_DIR)/*.h \
1463 $(PROJ_SRC_DIR)/*.td \
1464 $(PROJ_SRC_DIR)/*.def \
1465 $(PROJ_SRC_DIR)/*.ll \
1466 $(PROJ_SRC_DIR)/*.in))
1467DistSubDirs := $(SubDirs)
1468DistSources = $(Sources) $(EXTRA_DIST)
1469DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1470
1471#------------------------------------------------------------------------
1472# We MUST build distribution with OBJ_DIR != SRC_DIR
1473#------------------------------------------------------------------------
1474ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1475dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1476 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1477
1478else
1479
1480#------------------------------------------------------------------------
1481# Prevent attempt to run dist targets from anywhere but the top level
1482#------------------------------------------------------------------------
1483ifneq ($(LEVEL),.)
1484dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1485 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1486else
1487
1488#------------------------------------------------------------------------
1489# Provide the top level targets
1490#------------------------------------------------------------------------
1491
1492dist-gzip:: $(DistTarGZip)
1493
1494$(DistTarGZip) : $(TopDistDir)/.makedistdir
1495 $(Echo) Packing gzipped distribution tar file.
1496 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1497 $(GZIP) -c > "$(DistTarGZip)"
1498
1499dist-bzip2:: $(DistTarBZ2)
1500
1501$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1502 $(Echo) Packing bzipped distribution tar file.
1503 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1504 $(BZIP2) -c >$(DistTarBZ2)
1505
1506dist-zip:: $(DistZip)
1507
1508$(DistZip) : $(TopDistDir)/.makedistdir
1509 $(Echo) Packing zipped distribution file.
1510 $(Verb) rm -f $(DistZip)
1511 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1512
Misha Brukman89fe5162009-01-08 02:11:55 +00001513dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001514 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1515
1516DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1517
1518dist-check:: $(DistTarGZip)
1519 $(Echo) Checking distribution tar file.
1520 $(Verb) if test -d $(DistCheckDir) ; then \
1521 $(RM) -rf $(DistCheckDir) ; \
1522 fi
1523 $(Verb) $(MKDIR) $(DistCheckDir)
1524 $(Verb) cd $(DistCheckDir) && \
1525 $(MKDIR) $(DistCheckDir)/build && \
1526 $(MKDIR) $(DistCheckDir)/install && \
1527 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1528 cd build && \
1529 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1530 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1531 $(MAKE) all && \
1532 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001533 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001534 $(MAKE) install && \
1535 $(MAKE) uninstall && \
1536 $(MAKE) dist-clean && \
1537 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1538
1539dist-clean::
1540 $(Echo) Cleaning distribution files
1541 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1542 $(DistCheckDir)
1543
1544endif
1545
1546#------------------------------------------------------------------------
1547# Provide the recursive distdir target for building the distribution directory
1548#------------------------------------------------------------------------
1549distdir: $(DistDir)/.makedistdir
1550$(DistDir)/.makedistdir: $(DistSources)
1551 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1552 if test -d "$(DistDir)" ; then \
1553 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1554 exit 1 ; \
1555 fi ; \
1556 $(EchoCmd) Removing old $(DistDir) ; \
1557 $(RM) -rf $(DistDir); \
1558 $(EchoCmd) Making 'all' to verify build ; \
1559 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1560 fi
1561 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001562 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001563 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1564 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1565 for file in $(DistFiles) ; do \
1566 case "$$file" in \
1567 $(PROJ_SRC_DIR)/*) \
1568 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1569 ;; \
1570 $(PROJ_SRC_ROOT)/*) \
1571 file=`echo "$$file" | \
1572 sed "s#^$$srcrootstrip/##"` \
1573 ;; \
1574 esac; \
1575 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1576 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1577 from_dir="$(PROJ_SRC_DIR)" ; \
1578 elif test -f "$$file" || test -d "$$file" ; then \
1579 from_dir=. ; \
1580 fi ; \
1581 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1582 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1583 to_dir="$(DistDir)/$$dir"; \
1584 $(MKDIR) "$$to_dir" ; \
1585 else \
1586 to_dir="$(DistDir)"; \
1587 fi; \
1588 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1589 if test -n "$$mid_dir" ; then \
1590 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1591 fi ; \
1592 if test -d "$$from_dir/$$file"; then \
1593 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1594 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1595 cd $(PROJ_SRC_DIR) ; \
1596 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1597 ( cd $$to_dir ; $(TAR) xf - ) ; \
1598 cd $(PROJ_OBJ_DIR) ; \
1599 else \
1600 cd $$from_dir ; \
1601 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1602 ( cd $$to_dir ; $(TAR) xf - ) ; \
1603 cd $(PROJ_OBJ_DIR) ; \
1604 fi; \
1605 elif test -f "$$from_dir/$$file" ; then \
1606 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1607 elif test -L "$$from_dir/$$file" ; then \
1608 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1609 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1610 $(EchoCmd) "===== WARNING: Distribution Source " \
1611 "$$from_dir/$$file Not Found!" ; \
1612 elif test "$(Verb)" != '@' ; then \
1613 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1614 fi; \
1615 done
1616 $(Verb) for subdir in $(DistSubDirs) ; do \
1617 if test "$$subdir" \!= "." ; then \
1618 new_distdir="$(DistDir)/$$subdir" ; \
1619 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1620 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1621 DistDir="$$new_distdir" distdir ) || exit 1; \
1622 fi; \
1623 done
1624 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1625 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1626 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1627 -name .svn \) -print` ;\
1628 $(MAKE) dist-hook ; \
1629 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1630 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1631 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1632 -o ! -type d ! -perm -444 -exec \
1633 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1634 || chmod -R a+r $(DistDir) ; \
1635 fi
1636
1637# This is invoked by distdir target, define it as a no-op to avoid errors if not
1638# defined by user.
1639dist-hook::
1640
1641endif
1642
1643###############################################################################
1644# TOP LEVEL - targets only to apply at the top level directory
1645###############################################################################
1646
1647ifeq ($(LEVEL),.)
1648
1649#------------------------------------------------------------------------
1650# Install support for the project's include files:
1651#------------------------------------------------------------------------
1652ifdef NO_INSTALL
1653install-local::
1654 $(Echo) Install circumvented with NO_INSTALL
1655uninstall-local::
1656 $(Echo) Uninstall circumvented with NO_INSTALL
1657else
1658install-local::
1659 $(Echo) Installing include files
1660 $(Verb) $(MKDIR) $(PROJ_includedir)
1661 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1662 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001663 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001664 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1665 grep -v .svn` ; do \
1666 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1667 if test \! -d "$$instdir" ; then \
1668 $(EchoCmd) Making install directory $$instdir ; \
1669 $(MKDIR) $$instdir ;\
1670 fi ; \
1671 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1672 done ; \
1673 fi
1674ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1675 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1676 cd $(PROJ_OBJ_ROOT)/include && \
1677 for hdr in `find . -type f -print | grep -v CVS` ; do \
1678 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1679 done ; \
1680 fi
1681endif
1682
1683uninstall-local::
1684 $(Echo) Uninstalling include files
1685 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1686 cd $(PROJ_SRC_ROOT)/include && \
1687 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001688 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001689 -o -name '*.in' ')' -print ')' | \
1690 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1691 cd $(PROJ_SRC_ROOT)/include && \
1692 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1693 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1694 fi
1695endif
1696endif
1697
1698check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001699 @echo searching for overlength lines in files: $(Sources)
1700 @echo
1701 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001702 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001703
1704check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001705 @echo searching for tabs in files: $(Sources)
1706 @echo
1707 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001708 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001709
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001710check-footprint:
1711 @ls -l $(LibDir) | awk '\
1712 BEGIN { sum = 0; } \
1713 { sum += $$5; } \
1714 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1715 @ls -l $(ToolDir) | awk '\
1716 BEGIN { sum = 0; } \
1717 { sum += $$5; } \
1718 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1719#------------------------------------------------------------------------
1720# Print out the directories used for building
1721#------------------------------------------------------------------------
1722printvars::
1723 $(Echo) "BuildMode : " '$(BuildMode)'
1724 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1725 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1726 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1727 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1728 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1729 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1730 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1731 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1732 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1733 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1734 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1735 $(Echo) "UserTargets : " '$(UserTargets)'
1736 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1737 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1738 $(Echo) "ObjDir : " '$(ObjDir)'
1739 $(Echo) "LibDir : " '$(LibDir)'
1740 $(Echo) "ToolDir : " '$(ToolDir)'
1741 $(Echo) "ExmplDir : " '$(ExmplDir)'
1742 $(Echo) "Sources : " '$(Sources)'
1743 $(Echo) "TDFiles : " '$(TDFiles)'
1744 $(Echo) "INCFiles : " '$(INCFiles)'
1745 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1746 $(Echo) "PreConditions: " '$(PreConditions)'
1747 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1748 $(Echo) "Compile.C : " '$(Compile.C)'
1749 $(Echo) "Archive : " '$(Archive)'
1750 $(Echo) "YaccFiles : " '$(YaccFiles)'
1751 $(Echo) "LexFiles : " '$(LexFiles)'
1752 $(Echo) "Module : " '$(Module)'
1753 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1754 $(Echo) "SubDirs : " '$(SubDirs)'
1755 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1756 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'