blob: f6b697e1605b582391cd9310af53d63930290037 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner3876aa72007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Misha Brukman89fe5162009-01-08 02:11:55 +00007#
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008#===------------------------------------------------------------------------===#
9#
10# This file is included by all of the LLVM makefiles. For details on how to use
11# it properly, please see the document MakefileGuide.html in the docs directory.
12#
13#===-----------------------------------------------------------------------====#
14
15################################################################################
16# TARGETS: Define standard targets that can be invoked
17################################################################################
18
19#--------------------------------------------------------------------
20# Define the various target sets
21#--------------------------------------------------------------------
22RecursiveTargets := all clean clean-all install uninstall install-bytecode
23LocalTargets := all-local clean-local clean-all-local check-local \
24 install-local printvars uninstall-local \
Bill Wendling2e3646a2009-01-04 23:12:21 +000025 install-bytecode-local unittests
Chris Lattner42596062007-09-26 06:10:47 +000026TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling2e3646a2009-01-04 23:12:21 +000027 dist-zip unittests
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
29InternalTargets := preconditions distdir dist-hook
30
31################################################################################
32# INITIALIZATION: Basic things the makefile needs
33################################################################################
34
35#--------------------------------------------------------------------
36# Set the VPATH so that we can find source files.
37#--------------------------------------------------------------------
38VPATH=$(PROJ_SRC_DIR)
39
40#--------------------------------------------------------------------
41# Reset the list of suffixes we know how to build.
42#--------------------------------------------------------------------
43.SUFFIXES:
Nick Lewycky8d91e192009-02-26 07:44:16 +000044.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
46
47#--------------------------------------------------------------------
48# Mark all of these targets as phony to avoid implicit rule search
49#--------------------------------------------------------------------
50.PHONY: $(UserTargets) $(InternalTargets)
51
52#--------------------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +000053# Make sure all the user-target rules are double colon rules and
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054# they are defined first.
55#--------------------------------------------------------------------
56
57$(UserTargets)::
58
59################################################################################
60# PRECONDITIONS: that which must be built/checked first
61################################################################################
62
63SrcMakefiles := $(filter %Makefile %Makefile.tests,\
64 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66ConfigureScript := $(PROJ_SRC_ROOT)/configure
67ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
71MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
72PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
73ifneq ($(MakefileCommonIn),)
74PreConditions += $(MakefileCommon)
75endif
76
77ifneq ($(MakefileConfigIn),)
78PreConditions += $(MakefileConfig)
79endif
80
81preconditions: $(PreConditions)
82
83#------------------------------------------------------------------------
84# Make sure the BUILT_SOURCES are built first
85#------------------------------------------------------------------------
86$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
87
88clean-all-local::
89ifneq ($(strip $(BUILT_SOURCES)),)
90 -$(Verb) $(RM) -f $(BUILT_SOURCES)
91endif
92
93ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
94spotless:
95 $(Verb) if test -x config.status ; then \
96 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
101 $(RM) -rf * ; \
102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
109 else \
110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
111 fi
112else
113spotless:
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
115endif
116
117$(BUILT_SOURCES) : $(ObjMakefiles)
118
119#------------------------------------------------------------------------
120# Make sure we're not using a stale configuration
121#------------------------------------------------------------------------
122reconfigure:
123 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124 $(Verb) cd $(PROJ_OBJ_ROOT) && \
125 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
127 fi ; \
128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
130
131.PRECIOUS: $(ConfigStatusScript)
132$(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
137 fi ; \
138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
140
141#------------------------------------------------------------------------
142# Make sure the configuration makefile is up to date
143#------------------------------------------------------------------------
144ifneq ($(MakefileConfigIn),)
145$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146 $(Echo) Regenerating $@
147 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
148endif
149
150ifneq ($(MakefileCommonIn),)
151$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152 $(Echo) Regenerating $@
153 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
154endif
155
156#------------------------------------------------------------------------
157# If the Makefile in the source tree has been updated, copy it over into the
158# build tree. But, only do this if the source and object makefiles differ
159#------------------------------------------------------------------------
160ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
161
Gordon Henriksen4290f662008-03-10 15:58:40 +0000162Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 $(Echo) "Updating Makefile"
164 $(Verb) $(MKDIR) $(@D)
165 $(Verb) $(CP) -f $< $@
166
167# Copy the Makefile.* files unless we're in the root directory which avoids
168# the copying of Makefile.config.in or other things that should be explicitly
169# taken care of.
170$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
171 @case '$?' in \
172 *Makefile.rules) ;; \
173 *.in) ;; \
Gordon Henriksen4290f662008-03-10 15:58:40 +0000174 *) $(EchoCmd) "Updating $(@F)" ; \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 $(MKDIR) $(@D) ; \
176 $(CP) -f $< $@ ;; \
177 esac
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000178
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179endif
180
181#------------------------------------------------------------------------
182# Set up the basic dependencies
183#------------------------------------------------------------------------
184$(UserTargets):: $(PreConditions)
185
186all:: all-local
Anton Korobeynikov06565172008-11-10 07:33:13 +0000187clean:: clean-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188clean-all:: clean-local clean-all-local
189install:: install-local
190uninstall:: uninstall-local
Misha Brukman89fe5162009-01-08 02:11:55 +0000191install-local:: all-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192install-bytecode:: install-bytecode-local
193
194###############################################################################
195# VARIABLES: Set up various variables based on configuration data
196###############################################################################
197
Daniel Dunbara89194e2008-10-03 19:11:19 +0000198# Variable for if this make is for a "cleaning" target
199ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
200 IS_CLEANING_TARGET=1
201endif
202
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203#--------------------------------------------------------------------
204# Variables derived from configuration we are building
205#--------------------------------------------------------------------
206
207CPP.Defines :=
208# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
209# this can be overridden on the make command line.
210ifneq ($(OS),MingW)
211 OPTIMIZE_OPTION := -O3
212else
213 OPTIMIZE_OPTION := -O2
214endif
215
216ifdef ENABLE_PROFILING
217 BuildMode := Profile
Gordon Henriksen09968862008-01-06 21:54:35 +0000218 CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
219 C.Flags += $(OPTIMIZE_OPTION) -pg -g
220 LD.Flags += $(OPTIMIZE_OPTION) -pg -g
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 KEEP_SYMBOLS := 1
222else
223 ifeq ($(ENABLE_OPTIMIZED),1)
224 BuildMode := Release
225 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
226 ifneq ($(OS),FreeBSD)
227 ifneq ($(OS),Darwin)
228 OmitFramePointer := -fomit-frame-pointer
229 endif
230 endif
231
232 # Darwin requires -fstrict-aliasing to be explicitly enabled.
233 ifeq ($(OS),Darwin)
Evan Cheng1bde8892008-06-05 23:00:08 +0000234 EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 endif
236
Gordon Henriksen09968862008-01-06 21:54:35 +0000237 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
238 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
239 LD.Flags += $(OPTIMIZE_OPTION)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 else
241 BuildMode := Debug
Gordon Henriksen09968862008-01-06 21:54:35 +0000242 CXX.Flags += -g
243 C.Flags += -g
244 LD.Flags += -g
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 KEEP_SYMBOLS := 1
246 endif
247endif
248
Daniel Dunbar886e1832008-09-02 17:35:16 +0000249#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
250# CXX.Flags += -fvisibility-inlines-hidden
251#endif
252
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253# IF REQUIRES_EH=1 is specified then don't disable exceptions
254ifndef REQUIRES_EH
255 CXX.Flags += -fno-exceptions
256endif
257
258# IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
259ifndef REQUIRES_RTTI
260# CXX.Flags += -fno-rtti
261endif
262
263# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
264# then disable assertions by defining the appropriate preprocessor symbols.
265ifdef DISABLE_ASSERTIONS
266 BuildMode := $(BuildMode)-Asserts
267 CPP.Defines += -DNDEBUG
268else
269 CPP.Defines += -D_DEBUG
270endif
271
Misha Brukman89fe5162009-01-08 02:11:55 +0000272# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
273# configured), then enable expensive checks by defining the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274# appropriate preprocessor symbols.
275ifdef ENABLE_EXPENSIVE_CHECKS
276 BuildMode := $(BuildMode)+Checks
Duncan Sands871e55f2008-12-09 21:33:20 +0000277 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278endif
279
Nick Lewycky8d91e192009-02-26 07:44:16 +0000280# LOADABLE_MODULE implies several other things so we force them to be
281# defined/on.
282ifdef LOADABLE_MODULE
283 SHARED_LIBRARY := 1
284 DONT_BUILD_RELINKED := 1
285 LINK_LIBS_IN_SHARED := 1
286endif
287
288ifdef SHARED_LIBRARY
289 ENABLE_PIC := 1
290 PIC_FLAG = "(PIC)"
291endif
292
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293ifeq ($(ENABLE_PIC),1)
Nick Lewycky5b882f22009-02-21 08:41:09 +0000294 ifeq ($(LLVM_ON_WIN32),1)
295 # Nothing. Win32 defaults to PIC and warns when given -fPIC
296 else
297 ifeq ($(OS),Darwin)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000298 # Common symbols not allowed in dylib files
Nick Lewycky5b882f22009-02-21 08:41:09 +0000299 CXX.Flags += -fno-common
300 C.Flags += -fno-common
301 else
302 # Linux and others; pass -fPIC
303 CXX.Flags += -fPIC
304 C.Flags += -fPIC
305 endif
306 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307endif
308
309CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
310C.Flags += $(CFLAGS)
311CPP.Defines += $(CPPFLAGS)
312CPP.BaseFlags += $(CPP.Defines)
313LD.Flags += $(LDFLAGS)
314AR.Flags := cru
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315
316# Make Floating point IEEE compliant on Alpha.
317ifeq ($(ARCH),Alpha)
318 CXX.Flags += -mieee
319 CPP.BaseFlags += -mieee
320ifeq ($(ENABLE_PIC),0)
321 CXX.Flags += -fPIC
322 CPP.BaseFlags += -fPIC
323endif
324endif
325
326ifeq ($(ARCH),Alpha)
327 LD.Flags += -Wl,--no-relax
328endif
329
330#--------------------------------------------------------------------
331# Directory locations
332#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000333TargetMode :=
334ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000335 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000336endif
337
338ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000339ObjDir := $(ObjRootDir)
340LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
341ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
342ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
343LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
344LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
345LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346CFERuntimeLibDir := $(LLVMGCCDIR)/lib
347
348#--------------------------------------------------------------------
349# Full Paths To Compiled Tools and Utilities
350#--------------------------------------------------------------------
351EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
352Echo = @$(EchoCmd)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353ifndef LLVMAS
354LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
355endif
356ifndef TBLGEN
357 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000358 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359 else
360 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
361 endif
362endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000363LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364ifndef LLVMLD
365LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
366endif
367ifndef LLVMDIS
368LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
369endif
370ifndef LLI
371LLI := $(LLVMToolDir)/lli$(EXEEXT)
372endif
373ifndef LLC
374LLC := $(LLVMToolDir)/llc$(EXEEXT)
375endif
376ifndef LOPT
377LOPT := $(LLVMToolDir)/opt$(EXEEXT)
378endif
379ifndef LBUGPOINT
380LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
381endif
382ifndef LUPGRADE
383LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
384endif
385ifeq ($(LLVMGCC_MAJVERS),3)
386UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
387UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
388LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
389LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
390else
391UPGRADE_MSG =
392UPGRADE_LL =
393LLVMGCCWITHPATH := $(LLVMGCC)
394LLVMGXXWITHPATH := $(LLVMGXX)
395endif
396
397#--------------------------------------------------------------------
398# Adjust to user's request
399#--------------------------------------------------------------------
400
Nick Lewycky8d91e192009-02-26 07:44:16 +0000401# Adjust LD.Flags depending on the kind of library that is to be built. Note
402# that if LOADABLE_MODULE is specified then the resulting shared library can
403# be opened with dlopen.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404ifdef LOADABLE_MODULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405 LD.Flags += -module
406endif
407
408ifdef SHARED_LIBRARY
Nick Lewycky8d91e192009-02-26 07:44:16 +0000409 LD.Flags += -Wl,-rpath -Wl,$(LibDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410endif
411
412ifdef TOOL_VERBOSE
413 C.Flags += -v
414 CXX.Flags += -v
415 LD.Flags += -v
416 VERBOSE := 1
417endif
418
419# Adjust settings for verbose mode
420ifndef VERBOSE
421 Verb := @
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000422 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
424else
Misha Brukman89fe5162009-01-08 02:11:55 +0000425 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426endif
427
428# By default, strip symbol information from executable
429ifndef KEEP_SYMBOLS
430 Strip := $(PLATFORMSTRIPOPTS)
431 StripWarnMsg := "(without symbols)"
432 Install.StripFlag += -s
433endif
434
435# Adjust linker flags for building an executable
Nick Lewycky324b1192009-02-26 08:03:36 +0000436ifneq ($(OS),Darwin)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000437ifdef TOOLNAME
438ifdef EXAMPLE_TOOL
Nick Lewycky8d91e192009-02-26 07:44:16 +0000439 LD.Flags += -Wl,-rpath -Wl,$(ExmplDir) -export-dynamic
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440else
Nick Lewycky8d91e192009-02-26 07:44:16 +0000441 LD.Flags += -Wl,-rpath -Wl,$(ToolDir) -export-dynamic
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442endif
443endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000444endif
445
446ifeq ($(OS),Darwin)
447 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -bundle
448else
449 SharedLinkOptions=-shared
450endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451
452#----------------------------------------------------------
453# Options To Invoke Tools
454#----------------------------------------------------------
455
456CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
457 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
458
459ifeq ($(OS),HP-UX)
460 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
461endif
462
463# If we are building a universal binary on Mac OS/X, pass extra options. This
464# is useful to people that want to link the LLVM libraries into their universal
465# apps.
466#
467# The following can be optionally specified:
468# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
469# For Mac OS/X 10.4 Intel machines, the traditional one is:
470# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
471# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
472# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
473# i386/ppc only.
474ifdef UNIVERSAL
475 ifndef UNIVERSAL_ARCH
476 UNIVERSAL_ARCH := i386 ppc
477 endif
478 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
479 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
480 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
481 ifdef UNIVERSAL_SDK_PATH
482 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
483 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
484 endif
485
486 # Building universal cannot compute dependencies automatically.
487 DISABLE_AUTO_DEPENDENCIES=1
488endif
489
Chris Lattner35c997c2008-06-24 17:44:42 +0000490ifeq ($(OS),SunOS)
491CPP.BaseFlags += -include llvm/System/Solaris.h
492endif
493
Misha Brukman89fe5162009-01-08 02:11:55 +0000494LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000495CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000497CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
498 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000499 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
500 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
501 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000502
Jim Grosbache4c032e2008-10-02 22:56:44 +0000503 ifeq ($(BUILD_COMPONENT), 1)
504 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
505 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
506 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
507 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
508 $(LD.Flags) $(Strip)
509 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
510 $(Relink.Flags)
511else
512 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
513 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
514 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
515 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
516 $(LD.Flags) $(Strip)
517 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
518 $(Relink.Flags)
519endif
520
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
522Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
523
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
525 $(CompileCommonOpts)
526
Misha Brukman89fe5162009-01-08 02:11:55 +0000527ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
528ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000530
531# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
532# paths. In this case, the SYSPATH function (defined in
533# Makefile.config) transforms Unix paths into Windows paths.
534TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000535 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000536 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
537 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
538
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539Archive = $(AR) $(AR.Flags)
540LArchive = $(LLVMToolDir)/llvm-ar rcsf
541ifdef RANLIB
542Ranlib = $(RANLIB)
543else
544Ranlib = ranlib
545endif
546
547#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000548# Get the list of source files and compute object file
549# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550#----------------------------------------------------------
551
552ifndef SOURCES
553 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000554 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555else
556 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000557endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558
559ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000560Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561endif
562
563BaseNameSources := $(sort $(basename $(Sources)))
564
565ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
567
568###############################################################################
569# DIRECTORIES: Handle recursive descent of directory structure
570###############################################################################
571
572#---------------------------------------------------------
573# Provide rules to make install dirs. This must be early
574# in the file so they get built before dependencies
575#---------------------------------------------------------
576
Mike Stump98f72e02009-02-12 23:45:11 +0000577$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000578 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579
580# To create other directories, as needed, and timestamp their creation
581%/.dir:
582 $(Verb) $(MKDIR) $* > /dev/null
583 $(Verb) $(DATE) > $@
584
585.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
586.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
587
588#---------------------------------------------------------
589# Handle the DIRS options for sequential construction
590#---------------------------------------------------------
591
Misha Brukman89fe5162009-01-08 02:11:55 +0000592SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593ifdef DIRS
594SubDirs += $(DIRS)
595
596ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
597$(RecursiveTargets)::
598 $(Verb) for dir in $(DIRS); do \
599 if [ ! -f $$dir/Makefile ]; then \
600 $(MKDIR) $$dir; \
601 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
602 fi; \
603 ($(MAKE) -C $$dir $@ ) || exit 1; \
604 done
605else
606$(RecursiveTargets)::
607 $(Verb) for dir in $(DIRS); do \
608 ($(MAKE) -C $$dir $@ ) || exit 1; \
609 done
610endif
611
612endif
613
614#---------------------------------------------------------
615# Handle the EXPERIMENTAL_DIRS options ensuring success
616# after each directory is built.
617#---------------------------------------------------------
618ifdef EXPERIMENTAL_DIRS
619$(RecursiveTargets)::
620 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
621 if [ ! -f $$dir/Makefile ]; then \
622 $(MKDIR) $$dir; \
623 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
624 fi; \
625 ($(MAKE) -C $$dir $@ ) || exit 0; \
626 done
627endif
628
629#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000630# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
631#-----------------------------------------------------------
632ifdef OPTIONAL_PARALLEL_DIRS
633 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
634endif
635
636#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637# Handle the PARALLEL_DIRS options for parallel construction
638#-----------------------------------------------------------
639ifdef PARALLEL_DIRS
640
641SubDirs += $(PARALLEL_DIRS)
642
643# Unfortunately, this list must be maintained if new recursive targets are added
644all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
645clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
646clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
647install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
648uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
649install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
650
651ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
652
653$(ParallelTargets) :
654 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
655 $(MKDIR) $(@D); \
656 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
657 fi; \
658 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
659endif
660
661#---------------------------------------------------------
662# Handle the OPTIONAL_DIRS options for directores that may
663# or may not exist.
664#---------------------------------------------------------
665ifdef OPTIONAL_DIRS
666
667SubDirs += $(OPTIONAL_DIRS)
668
669ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
670$(RecursiveTargets)::
671 $(Verb) for dir in $(OPTIONAL_DIRS); do \
672 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
673 if [ ! -f $$dir/Makefile ]; then \
674 $(MKDIR) $$dir; \
675 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
676 fi; \
677 ($(MAKE) -C$$dir $@ ) || exit 1; \
678 fi \
679 done
680else
681$(RecursiveTargets)::
682 $(Verb) for dir in $(OPTIONAL_DIRS); do \
683 ($(MAKE) -C$$dir $@ ) || exit 1; \
684 done
685endif
686endif
687
688#---------------------------------------------------------
689# Handle the CONFIG_FILES options
690#---------------------------------------------------------
691ifdef CONFIG_FILES
692
693ifdef NO_INSTALL
694install-local::
695 $(Echo) Install circumvented with NO_INSTALL
696uninstall-local::
697 $(Echo) UnInstall circumvented with NO_INSTALL
698else
699install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
700 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
701 $(Verb)for file in $(CONFIG_FILES); do \
702 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
703 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
704 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
705 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
706 else \
707 $(ECHO) Error: cannot find config file $${file}. ; \
708 fi \
709 done
710
711uninstall-local::
712 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
713 $(Verb)for file in $(CONFIG_FILES); do \
714 $(RM) -f $(PROJ_etcdir)/$${file} ; \
715 done
716endif
717
718endif
719
720###############################################################################
721# Set up variables for building libararies
722###############################################################################
723
724#---------------------------------------------------------
725# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000726# libraries needed when linking. There are "Proj" libs
727# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000728# by the LLVM project).
729#---------------------------------------------------------
730
731ifdef USEDLIBS
732ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
733ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
734ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
735ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
736endif
737
738ifdef LLVMLIBS
739LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
740LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
741LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
742LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
743endif
744
Daniel Dunbara89194e2008-10-03 19:11:19 +0000745ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746ifdef LINK_COMPONENTS
747
748# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
749# clean in tools, then do a make in tools (instead of at the top level).
750$(LLVM_CONFIG):
751 @echo "*** llvm-config doesn't exist - rebuilding it."
752 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000753
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
755
756ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
757ProjLibsPaths += $(LLVM_CONFIG) \
758 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
759endif
760endif
761
762###############################################################################
763# Library Build Rules: Four ways to build a library
764###############################################################################
765
766#---------------------------------------------------------
767# Bytecode Module Targets:
768# If the user set MODULE_NAME then they want to build a
769# bytecode module from the sources. We compile all the
770# sources and link it together into a single bytecode
771# module.
772#---------------------------------------------------------
773
774ifdef MODULE_NAME
775ifeq ($(strip $(LLVMGCC)),)
776$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
777else
778
779Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000780LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000781
782
783ifdef EXPORTED_SYMBOL_FILE
784LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
785endif
786
787$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
788 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
789 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
790
791all-local:: $(Module)
792
793clean-local::
794ifneq ($(strip $(Module)),)
795 -$(Verb) $(RM) -f $(Module)
796endif
797
798ifdef BYTECODE_DESTINATION
799ModuleDestDir := $(BYTECODE_DESTINATION)
800else
801ModuleDestDir := $(PROJ_libdir)
802endif
803
804ifdef NO_INSTALL
805install-local::
806 $(Echo) Install circumvented with NO_INSTALL
807uninstall-local::
808 $(Echo) Uninstall circumvented with NO_INSTALL
809else
810DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
811
812install-module:: $(DestModule)
813install-local:: $(DestModule)
814
Misha Brukman89fe5162009-01-08 02:11:55 +0000815$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000816 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
817 $(Verb) $(DataInstall) $(Module) $(DestModule)
818
819uninstall-local::
820 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
821 -$(Verb) $(RM) -f $(DestModule)
822endif
823
824endif
825endif
826
827# if we're building a library ...
828ifdef LIBRARYNAME
829
830# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
831LIBRARYNAME := $(strip $(LIBRARYNAME))
832ifdef LOADABLE_MODULE
Nick Lewycky8d91e192009-02-26 07:44:16 +0000833LibName.A := $(LibDir)/$(LIBRARYNAME).a
834LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000835else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky8d91e192009-02-26 07:44:16 +0000837LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
838endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839LibName.O := $(LibDir)/$(LIBRARYNAME).o
840LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
841
842#---------------------------------------------------------
843# Shared Library Targets:
844# If the user asked for a shared library to be built
845# with the SHARED_LIBRARY variable, then we provide
846# targets for building them.
847#---------------------------------------------------------
848ifdef SHARED_LIBRARY
849
Nick Lewycky8d91e192009-02-26 07:44:16 +0000850all-local:: $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851
852ifdef LINK_LIBS_IN_SHARED
853ifdef LOADABLE_MODULE
854SharedLibKindMessage := "Loadable Module"
855else
856SharedLibKindMessage := "Shared Library"
857endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000858$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000859 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
860 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000861 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
862 $(ProjLibsOptions) $(LLVMLibsOptions)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863else
Nick Lewycky8d91e192009-02-26 07:44:16 +0000864$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000865 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000866 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000867endif
868
869clean-local::
Nick Lewycky8d91e192009-02-26 07:44:16 +0000870ifneq ($(strip $(LibName.SO)),)
871 -$(Verb) $(RM) -f $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872endif
873
874ifdef NO_INSTALL
875install-local::
876 $(Echo) Install circumvented with NO_INSTALL
877uninstall-local::
878 $(Echo) Uninstall circumvented with NO_INSTALL
879else
880DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
881
882install-local:: $(DestSharedLib)
883
Nick Lewycky8d91e192009-02-26 07:44:16 +0000884$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000886 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887
Misha Brukman89fe5162009-01-08 02:11:55 +0000888uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
890 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
891endif
892endif
893
894#---------------------------------------------------------
895# Bytecode Library Targets:
896# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +0000897# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000898# targets for building them.
899#---------------------------------------------------------
900ifdef BYTECODE_LIBRARY
901ifeq ($(strip $(LLVMGCC)),)
902$(warning Bytecode libraries require llvm-gcc which could not be found ****)
903else
904
905all-local:: $(LibName.BCA)
906
907ifdef EXPORTED_SYMBOL_FILE
908BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
909 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
910
911$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
912 $(LLVMToolDir)/llvm-ar
913 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
914 "(internalize)"
915 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
916 $(Verb) $(RM) -f $@
917 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
918else
919$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
920 $(LLVMToolDir)/llvm-ar
921 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
922 $(Verb) $(RM) -f $@
923 $(Verb) $(LArchive) $@ $(ObjectsBC)
924
925endif
926
927clean-local::
928ifneq ($(strip $(LibName.BCA)),)
929 -$(Verb) $(RM) -f $(LibName.BCA)
930endif
931
932ifdef BYTECODE_DESTINATION
933BytecodeDestDir := $(BYTECODE_DESTINATION)
934else
935BytecodeDestDir := $(PROJ_libdir)
936endif
937
938DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
939
940install-bytecode-local:: $(DestBytecodeLib)
941
942ifdef NO_INSTALL
943install-local::
944 $(Echo) Install circumvented with NO_INSTALL
945uninstall-local::
946 $(Echo) Uninstall circumvented with NO_INSTALL
947else
948install-local:: $(DestBytecodeLib)
949
Mike Stump98f72e02009-02-12 23:45:11 +0000950$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000951 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
952 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
953
954uninstall-local::
955 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
956 -$(Verb) $(RM) -f $(DestBytecodeLib)
957endif
958endif
959endif
960
961#---------------------------------------------------------
962# ReLinked Library Targets:
963# If the user explicitly requests a relinked library with
964# BUILD_RELINKED, provide it. Otherwise, if they specify
965# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
966# them one.
967#---------------------------------------------------------
968ifndef BUILD_ARCHIVE
969ifndef DONT_BUILD_RELINKED
970BUILD_RELINKED = 1
971endif
972endif
973
974ifdef BUILD_RELINKED
975
976all-local:: $(LibName.O)
977
978$(LibName.O): $(ObjectsO) $(LibDir)/.dir
979 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
Nick Lewycky14c68542009-02-26 08:48:14 +0000980 $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981
982clean-local::
983ifneq ($(strip $(LibName.O)),)
984 -$(Verb) $(RM) -f $(LibName.O)
985endif
986
987ifdef NO_INSTALL
988install-local::
989 $(Echo) Install circumvented with NO_INSTALL
990uninstall-local::
991 $(Echo) Uninstall circumvented with NO_INSTALL
992else
993DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
994
995install-local:: $(DestRelinkedLib)
996
Mike Stump98f72e02009-02-12 23:45:11 +0000997$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000999 $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000
1001uninstall-local::
1002 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1003 -$(Verb) $(RM) -f $(DestRelinkedLib)
1004endif
1005endif
1006
1007#---------------------------------------------------------
1008# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001009# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010# then we provide targets for building them.
1011#---------------------------------------------------------
1012ifdef BUILD_ARCHIVE
1013
1014all-local:: $(LibName.A)
1015
1016$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1017 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1018 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001019 $(Verb) $(Archive) $@ $(ObjectsO)
1020 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021
1022clean-local::
1023ifneq ($(strip $(LibName.A)),)
1024 -$(Verb) $(RM) -f $(LibName.A)
1025endif
1026
1027ifdef NO_INSTALL
1028install-local::
1029 $(Echo) Install circumvented with NO_INSTALL
1030uninstall-local::
1031 $(Echo) Uninstall circumvented with NO_INSTALL
1032else
1033DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1034
1035install-local:: $(DestArchiveLib)
1036
Mike Stump98f72e02009-02-12 23:45:11 +00001037$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1039 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001040 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041
1042uninstall-local::
1043 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1044 -$(Verb) $(RM) -f $(DestArchiveLib)
1045endif
1046endif
1047
1048# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001049endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050
1051###############################################################################
1052# Tool Build Rules: Build executable tool based on TOOLNAME option
1053###############################################################################
1054
1055ifdef TOOLNAME
1056
1057#---------------------------------------------------------
1058# Set up variables for building a tool.
1059#---------------------------------------------------------
1060ifdef EXAMPLE_TOOL
1061ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1062else
1063ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1064endif
1065
1066#---------------------------------------------------------
1067# Provide targets for building the tools
1068#---------------------------------------------------------
1069all-local:: $(ToolBuildPath)
1070
1071clean-local::
1072ifneq ($(strip $(ToolBuildPath)),)
1073 -$(Verb) $(RM) -f $(ToolBuildPath)
1074endif
1075
1076ifdef EXAMPLE_TOOL
1077$(ToolBuildPath): $(ExmplDir)/.dir
1078else
1079$(ToolBuildPath): $(ToolDir)/.dir
1080endif
1081
1082$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1083 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001084 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1086 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001087 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088
1089ifdef NO_INSTALL
1090install-local::
1091 $(Echo) Install circumvented with NO_INSTALL
1092uninstall-local::
1093 $(Echo) Uninstall circumvented with NO_INSTALL
1094else
1095DestTool = $(PROJ_bindir)/$(TOOLNAME)
1096
1097install-local:: $(DestTool)
1098
Mike Stump98f72e02009-02-12 23:45:11 +00001099$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001100 $(Echo) Installing $(BuildMode) $(DestTool)
1101 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1102
1103uninstall-local::
1104 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1105 -$(Verb) $(RM) -f $(DestTool)
1106endif
1107endif
1108
1109###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001110# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111###############################################################################
1112
1113# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1114ifeq ($(OS),HP-UX)
1115 DISABLE_AUTO_DEPENDENCIES=1
1116endif
1117
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001118# Provide rule sets for when dependency generation is enabled
1119ifndef DISABLE_AUTO_DEPENDENCIES
1120
1121#---------------------------------------------------------
Nick Lewycky8d91e192009-02-26 07:44:16 +00001122# Create .o files in the ObjDir directory from the .cpp and .c files...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123#---------------------------------------------------------
1124
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001125DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky8d91e192009-02-26 07:44:16 +00001126 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001127
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001128# If the build succeeded, move the dependency file over. If it failed, put an
1129# empty file there.
1130DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1131 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1132
Nick Lewycky8d91e192009-02-26 07:44:16 +00001133$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001134 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001135 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001136 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137
Nick Lewycky8d91e192009-02-26 07:44:16 +00001138$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001140 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001141 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142
Nick Lewycky8d91e192009-02-26 07:44:16 +00001143$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001145 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001146 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147
1148#---------------------------------------------------------
1149# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1150#---------------------------------------------------------
1151
1152$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1153 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1154 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1155 $< -o $@ -S -emit-llvm ; \
1156 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1157 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001158 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001159 $(call UPGRADE_LL,$@)
1160
1161$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1162 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1163 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1164 $< -o $@ -S -emit-llvm ; \
1165 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1166 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001167 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168 $(call UPGRADE_LL,$@)
1169
1170$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1171 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1172 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1173 $< -o $@ -S -emit-llvm ; \
1174 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1175 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001176 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001177 $(call UPGRADE_LL,$@)
1178
1179# Provide alternate rule sets if dependencies are disabled
1180else
1181
Nick Lewycky8d91e192009-02-26 07:44:16 +00001182$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001183 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001184 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001185
Nick Lewycky8d91e192009-02-26 07:44:16 +00001186$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001187 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001188 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001189
Nick Lewycky8d91e192009-02-26 07:44:16 +00001190$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001191 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001192 $(Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001193
1194$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1195 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1196 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001197 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001198 $(call UPGRADE_LL,$@)
1199
1200$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1201 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1202 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001203 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001204 $(call UPGRADE_LL,$@)
1205
1206$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1207 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1208 $(BCCompile.C) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001209 $(call UPGRADE_MSG,@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001210 $(call UPGRADE_LL,@)
1211
1212endif
1213
1214
1215## Rules for building preprocessed (.i/.ii) outputs.
1216$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1217 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1218 $(Verb) $(Preprocess.CXX) $< -o $@
1219
1220$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1221 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1222 $(Verb) $(Preprocess.CXX) $< -o $@
1223
1224$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1225 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1226 $(Verb) $(Preprocess.C) $< -o $@
1227
1228
1229$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1230 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001231 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001232
1233$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1234 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001235 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001236
1237$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1238 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001239 $(Compile.C) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001240
1241
1242# make the C and C++ compilers strip debug info out of bytecode libraries.
1243ifdef DEBUG_RUNTIME
1244$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1245 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1246 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1247else
1248$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1249 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1250 $(Verb) $(LLVMAS) $< -o - | \
1251 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1252endif
1253
1254
1255#---------------------------------------------------------
1256# Provide rule to build .bc files from .ll sources,
1257# regardless of dependencies
1258#---------------------------------------------------------
1259$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1260 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1261 $(Verb) $(LLVMAS) $< -f -o $@
1262
1263###############################################################################
1264# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1265###############################################################################
1266
1267ifdef TARGET
1268
1269TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
Evan Cheng301aaf52008-11-24 07:34:46 +00001270 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1271 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1272 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1273 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001274 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1275 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1276INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1277INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1278.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1279
1280# All of these files depend on tblgen and the .td files.
1281$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1282
Misha Brukman89fe5162009-01-08 02:11:55 +00001283# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001284# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1285# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001286# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001287# dependencies of the .inc files are, unless the contents of the .inc file
1288# changes.
1289$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1290 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1291
1292$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1293$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1294 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001295 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296
1297$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1298$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1299 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001300 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001301
1302$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1303$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1304 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001305 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001306
1307$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1308$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1309 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001310 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001311
1312$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1313$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1314 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001315 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001316
1317$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1318$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1319 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001320 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001321
1322$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1323$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1324 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001325 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001326
1327$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1328$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1329 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001330 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001331
1332$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1333$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001334 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001335 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001336
Dan Gohmanb75dead2008-08-13 20:19:35 +00001337$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1338$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1339 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1340 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1341
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1343$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1344 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001345 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001346
1347$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1348$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1349 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001350 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001351
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001352$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1353$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1354 $(Echo) "Building $(<F) calling convention information with tblgen"
1355 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1356
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001357clean-local::
1358 -$(Verb) $(RM) -f $(INCFiles)
1359
1360endif
1361
1362###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001363# OTHER RULES: Other rules needed
1364###############################################################################
1365
1366# To create postscript files from dot files...
1367ifneq ($(DOT),false)
1368%.ps: %.dot
1369 $(DOT) -Tps < $< > $@
1370else
1371%.ps: %.dot
1372 $(Echo) "Cannot build $@: The program dot is not installed"
1373endif
1374
1375# This rules ensures that header files that are removed still have a rule for
1376# which they can be "generated." This allows make to ignore them and
1377# reproduce the dependency lists.
1378%.h:: ;
1379%.hpp:: ;
1380
1381# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001382# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383# errors or disastrous removal.
1384clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001385ifneq ($(strip $(ObjRootDir)),)
1386 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001387endif
1388 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1389ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1390 -$(Verb) $(RM) -f *$(SHLIBEXT)
1391endif
1392
1393clean-all-local::
1394 -$(Verb) $(RM) -rf Debug Release Profile
1395
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001396
1397###############################################################################
1398# DEPENDENCIES: Include the dependency files if we should
1399###############################################################################
1400ifndef DISABLE_AUTO_DEPENDENCIES
1401
1402# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001403ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001404
1405# Get the list of dependency files
1406DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1407DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1408
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001409-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001410
1411endif
1412
Misha Brukman89fe5162009-01-08 02:11:55 +00001413endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001414
1415###############################################################################
1416# CHECK: Running the test suite
1417###############################################################################
1418
1419check::
1420 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1421 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1422 $(EchoCmd) Running test suite ; \
1423 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1424 TESTSUITE=$(TESTSUITE) ; \
1425 else \
1426 $(EchoCmd) No Makefile in test directory ; \
1427 fi ; \
1428 else \
1429 $(EchoCmd) No test directory ; \
1430 fi
1431
1432###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001433# UNITTESTS: Running the unittests test suite
1434###############################################################################
1435
1436unittests::
1437 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1438 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1439 $(EchoCmd) Running unittests test suite ; \
1440 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1441 else \
1442 $(EchoCmd) No Makefile in unittests directory ; \
1443 fi ; \
1444 else \
1445 $(EchoCmd) No unittests directory ; \
1446 fi
1447
1448###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001449# DISTRIBUTION: Handle construction of a distribution tarball
1450###############################################################################
1451
1452#------------------------------------------------------------------------
1453# Define distribution related variables
1454#------------------------------------------------------------------------
1455DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1456DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1457TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1458DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1459DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1460DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1461DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1462 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1463 Makefile.config.in configure autoconf
1464DistOther := $(notdir $(wildcard \
1465 $(PROJ_SRC_DIR)/*.h \
1466 $(PROJ_SRC_DIR)/*.td \
1467 $(PROJ_SRC_DIR)/*.def \
1468 $(PROJ_SRC_DIR)/*.ll \
1469 $(PROJ_SRC_DIR)/*.in))
1470DistSubDirs := $(SubDirs)
1471DistSources = $(Sources) $(EXTRA_DIST)
1472DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1473
1474#------------------------------------------------------------------------
1475# We MUST build distribution with OBJ_DIR != SRC_DIR
1476#------------------------------------------------------------------------
1477ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1478dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1479 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1480
1481else
1482
1483#------------------------------------------------------------------------
1484# Prevent attempt to run dist targets from anywhere but the top level
1485#------------------------------------------------------------------------
1486ifneq ($(LEVEL),.)
1487dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1488 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1489else
1490
1491#------------------------------------------------------------------------
1492# Provide the top level targets
1493#------------------------------------------------------------------------
1494
1495dist-gzip:: $(DistTarGZip)
1496
1497$(DistTarGZip) : $(TopDistDir)/.makedistdir
1498 $(Echo) Packing gzipped distribution tar file.
1499 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1500 $(GZIP) -c > "$(DistTarGZip)"
1501
1502dist-bzip2:: $(DistTarBZ2)
1503
1504$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1505 $(Echo) Packing bzipped distribution tar file.
1506 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1507 $(BZIP2) -c >$(DistTarBZ2)
1508
1509dist-zip:: $(DistZip)
1510
1511$(DistZip) : $(TopDistDir)/.makedistdir
1512 $(Echo) Packing zipped distribution file.
1513 $(Verb) rm -f $(DistZip)
1514 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1515
Misha Brukman89fe5162009-01-08 02:11:55 +00001516dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001517 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1518
1519DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1520
1521dist-check:: $(DistTarGZip)
1522 $(Echo) Checking distribution tar file.
1523 $(Verb) if test -d $(DistCheckDir) ; then \
1524 $(RM) -rf $(DistCheckDir) ; \
1525 fi
1526 $(Verb) $(MKDIR) $(DistCheckDir)
1527 $(Verb) cd $(DistCheckDir) && \
1528 $(MKDIR) $(DistCheckDir)/build && \
1529 $(MKDIR) $(DistCheckDir)/install && \
1530 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1531 cd build && \
1532 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1533 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1534 $(MAKE) all && \
1535 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001536 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001537 $(MAKE) install && \
1538 $(MAKE) uninstall && \
1539 $(MAKE) dist-clean && \
1540 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1541
1542dist-clean::
1543 $(Echo) Cleaning distribution files
1544 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1545 $(DistCheckDir)
1546
1547endif
1548
1549#------------------------------------------------------------------------
1550# Provide the recursive distdir target for building the distribution directory
1551#------------------------------------------------------------------------
1552distdir: $(DistDir)/.makedistdir
1553$(DistDir)/.makedistdir: $(DistSources)
1554 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1555 if test -d "$(DistDir)" ; then \
1556 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1557 exit 1 ; \
1558 fi ; \
1559 $(EchoCmd) Removing old $(DistDir) ; \
1560 $(RM) -rf $(DistDir); \
1561 $(EchoCmd) Making 'all' to verify build ; \
1562 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1563 fi
1564 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001565 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001566 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1567 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1568 for file in $(DistFiles) ; do \
1569 case "$$file" in \
1570 $(PROJ_SRC_DIR)/*) \
1571 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1572 ;; \
1573 $(PROJ_SRC_ROOT)/*) \
1574 file=`echo "$$file" | \
1575 sed "s#^$$srcrootstrip/##"` \
1576 ;; \
1577 esac; \
1578 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1579 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1580 from_dir="$(PROJ_SRC_DIR)" ; \
1581 elif test -f "$$file" || test -d "$$file" ; then \
1582 from_dir=. ; \
1583 fi ; \
1584 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1585 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1586 to_dir="$(DistDir)/$$dir"; \
1587 $(MKDIR) "$$to_dir" ; \
1588 else \
1589 to_dir="$(DistDir)"; \
1590 fi; \
1591 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1592 if test -n "$$mid_dir" ; then \
1593 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1594 fi ; \
1595 if test -d "$$from_dir/$$file"; then \
1596 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1597 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1598 cd $(PROJ_SRC_DIR) ; \
1599 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1600 ( cd $$to_dir ; $(TAR) xf - ) ; \
1601 cd $(PROJ_OBJ_DIR) ; \
1602 else \
1603 cd $$from_dir ; \
1604 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1605 ( cd $$to_dir ; $(TAR) xf - ) ; \
1606 cd $(PROJ_OBJ_DIR) ; \
1607 fi; \
1608 elif test -f "$$from_dir/$$file" ; then \
1609 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1610 elif test -L "$$from_dir/$$file" ; then \
1611 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1612 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1613 $(EchoCmd) "===== WARNING: Distribution Source " \
1614 "$$from_dir/$$file Not Found!" ; \
1615 elif test "$(Verb)" != '@' ; then \
1616 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1617 fi; \
1618 done
1619 $(Verb) for subdir in $(DistSubDirs) ; do \
1620 if test "$$subdir" \!= "." ; then \
1621 new_distdir="$(DistDir)/$$subdir" ; \
1622 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1623 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1624 DistDir="$$new_distdir" distdir ) || exit 1; \
1625 fi; \
1626 done
1627 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1628 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1629 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1630 -name .svn \) -print` ;\
1631 $(MAKE) dist-hook ; \
1632 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1633 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1634 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1635 -o ! -type d ! -perm -444 -exec \
1636 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1637 || chmod -R a+r $(DistDir) ; \
1638 fi
1639
1640# This is invoked by distdir target, define it as a no-op to avoid errors if not
1641# defined by user.
1642dist-hook::
1643
1644endif
1645
1646###############################################################################
1647# TOP LEVEL - targets only to apply at the top level directory
1648###############################################################################
1649
1650ifeq ($(LEVEL),.)
1651
1652#------------------------------------------------------------------------
1653# Install support for the project's include files:
1654#------------------------------------------------------------------------
1655ifdef NO_INSTALL
1656install-local::
1657 $(Echo) Install circumvented with NO_INSTALL
1658uninstall-local::
1659 $(Echo) Uninstall circumvented with NO_INSTALL
1660else
1661install-local::
1662 $(Echo) Installing include files
1663 $(Verb) $(MKDIR) $(PROJ_includedir)
1664 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1665 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001666 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001667 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1668 grep -v .svn` ; do \
1669 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1670 if test \! -d "$$instdir" ; then \
1671 $(EchoCmd) Making install directory $$instdir ; \
1672 $(MKDIR) $$instdir ;\
1673 fi ; \
1674 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1675 done ; \
1676 fi
1677ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1678 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1679 cd $(PROJ_OBJ_ROOT)/include && \
1680 for hdr in `find . -type f -print | grep -v CVS` ; do \
1681 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1682 done ; \
1683 fi
1684endif
1685
1686uninstall-local::
1687 $(Echo) Uninstalling include files
1688 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1689 cd $(PROJ_SRC_ROOT)/include && \
1690 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001691 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001692 -o -name '*.in' ')' -print ')' | \
1693 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1694 cd $(PROJ_SRC_ROOT)/include && \
1695 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1696 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1697 fi
1698endif
1699endif
1700
1701check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001702 @echo searching for overlength lines in files: $(Sources)
1703 @echo
1704 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001705 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001706
1707check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001708 @echo searching for tabs in files: $(Sources)
1709 @echo
1710 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001711 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001712
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001713check-footprint:
1714 @ls -l $(LibDir) | awk '\
1715 BEGIN { sum = 0; } \
1716 { sum += $$5; } \
1717 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1718 @ls -l $(ToolDir) | awk '\
1719 BEGIN { sum = 0; } \
1720 { sum += $$5; } \
1721 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1722#------------------------------------------------------------------------
1723# Print out the directories used for building
1724#------------------------------------------------------------------------
1725printvars::
1726 $(Echo) "BuildMode : " '$(BuildMode)'
1727 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1728 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1729 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1730 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1731 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1732 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1733 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1734 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1735 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1736 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1737 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1738 $(Echo) "UserTargets : " '$(UserTargets)'
1739 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1740 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1741 $(Echo) "ObjDir : " '$(ObjDir)'
1742 $(Echo) "LibDir : " '$(LibDir)'
1743 $(Echo) "ToolDir : " '$(ToolDir)'
1744 $(Echo) "ExmplDir : " '$(ExmplDir)'
1745 $(Echo) "Sources : " '$(Sources)'
1746 $(Echo) "TDFiles : " '$(TDFiles)'
1747 $(Echo) "INCFiles : " '$(INCFiles)'
1748 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1749 $(Echo) "PreConditions: " '$(PreConditions)'
1750 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1751 $(Echo) "Compile.C : " '$(Compile.C)'
1752 $(Echo) "Archive : " '$(Archive)'
1753 $(Echo) "YaccFiles : " '$(YaccFiles)'
1754 $(Echo) "LexFiles : " '$(LexFiles)'
1755 $(Echo) "Module : " '$(Module)'
1756 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1757 $(Echo) "SubDirs : " '$(SubDirs)'
1758 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1759 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001760
1761###
1762# Debugging
1763
1764# General debugging rule, use 'make print-XXX' to print the
1765# definition, value and origin of XXX.
1766print-%:
1767 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))