blob: ba4fd3a30eb6ec8e2d01b92908ab6c3f794e0f8c [file] [log] [blame]
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8#===------------------------------------------------------------------------===#
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 \
23 unitcheck
24LocalTargets := all-local clean-local clean-all-local check-local \
25 install-local printvars uninstall-local \
26 install-bytecode-local
27TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
28 dist-zip unittests
29UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30InternalTargets := preconditions distdir dist-hook
31
32################################################################################
33# INITIALIZATION: Basic things the makefile needs
34################################################################################
35
36#--------------------------------------------------------------------
37# Set the VPATH so that we can find source files.
38#--------------------------------------------------------------------
39VPATH=$(PROJ_SRC_DIR)
40
41#--------------------------------------------------------------------
42# Reset the list of suffixes we know how to build.
43#--------------------------------------------------------------------
44.SUFFIXES:
45.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
46.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
47
48#--------------------------------------------------------------------
49# Mark all of these targets as phony to avoid implicit rule search
50#--------------------------------------------------------------------
51.PHONY: $(UserTargets) $(InternalTargets)
52
53#--------------------------------------------------------------------
54# Make sure all the user-target rules are double colon rules and
55# they are defined first.
56#--------------------------------------------------------------------
57
58$(UserTargets)::
59
60################################################################################
61# PRECONDITIONS: that which must be built/checked first
62################################################################################
63
64SrcMakefiles := $(filter %Makefile %Makefile.tests,\
65 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67ConfigureScript := $(PROJ_SRC_ROOT)/configure
68ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
72MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
73PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
74ifneq ($(MakefileCommonIn),)
75PreConditions += $(MakefileCommon)
76endif
77
78ifneq ($(MakefileConfigIn),)
79PreConditions += $(MakefileConfig)
80endif
81
82preconditions: $(PreConditions)
83
84#------------------------------------------------------------------------
85# Make sure the BUILT_SOURCES are built first
86#------------------------------------------------------------------------
87$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
88
89clean-all-local::
90ifneq ($(strip $(BUILT_SOURCES)),)
91 -$(Verb) $(RM) -f $(BUILT_SOURCES)
92endif
93
94ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
95spotless:
96 $(Verb) if test -x config.status ; then \
97 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
98 $(MKDIR) .spotless.save ; \
99 $(MV) config.status .spotless.save ; \
100 $(MV) mklib .spotless.save ; \
101 $(MV) projects .spotless.save ; \
102 $(RM) -rf * ; \
103 $(MV) .spotless.save/config.status . ; \
104 $(MV) .spotless.save/mklib . ; \
105 $(MV) .spotless.save/projects . ; \
106 $(RM) -rf .spotless.save ; \
107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
110 else \
111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
112 fi
113else
114spotless:
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
116endif
117
118$(BUILT_SOURCES) : $(ObjMakefiles)
119
120#------------------------------------------------------------------------
121# Make sure we're not using a stale configuration
122#------------------------------------------------------------------------
123reconfigure:
124 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125 $(Verb) cd $(PROJ_OBJ_ROOT) && \
126 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
128 fi ; \
129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
131
132# FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
133# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
134
135.PRECIOUS: $(ConfigStatusScript)
136$(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile
137 $(Echo) Reconfiguring with $<
138 $(Verb) cd $(PROJ_OBJ_ROOT) && \
139 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
140 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
141 fi ; \
142 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
143 $(ConfigStatusScript)
144
145#------------------------------------------------------------------------
146# Make sure the configuration makefile is up to date
147#------------------------------------------------------------------------
148ifneq ($(MakefileConfigIn),)
149$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
150 $(Echo) Regenerating $@
151 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
152endif
153
154ifneq ($(MakefileCommonIn),)
155$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
156 $(Echo) Regenerating $@
157 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
158endif
159
160#------------------------------------------------------------------------
161# If the Makefile in the source tree has been updated, copy it over into the
162# build tree. But, only do this if the source and object makefiles differ
163#------------------------------------------------------------------------
164ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
165
166Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
167 $(Echo) "Updating Makefile"
168 $(Verb) $(MKDIR) $(@D)
169 $(Verb) $(CP) -f $< $@
170
171# Copy the Makefile.* files unless we're in the root directory which avoids
172# the copying of Makefile.config.in or other things that should be explicitly
173# taken care of.
174$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
175 @case '$?' in \
176 *Makefile.rules) ;; \
177 *.in) ;; \
178 *) $(EchoCmd) "Updating $(@F)" ; \
179 $(MKDIR) $(@D) ; \
180 $(CP) -f $< $@ ;; \
181 esac
182
183endif
184
185#------------------------------------------------------------------------
186# Set up the basic dependencies
187#------------------------------------------------------------------------
188$(UserTargets):: $(PreConditions)
189
190all:: all-local
191clean:: clean-local
192clean-all:: clean-local clean-all-local
193install:: install-local
194uninstall:: uninstall-local
195install-local:: all-local
196install-bytecode:: install-bytecode-local
197
198###############################################################################
199# LLVMC: Provide rules for compiling llvmc plugins
200###############################################################################
201
202ifdef LLVMC_PLUGIN
203
204LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
205CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
206REQUIRES_EH := 1
207
208ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
209 LD.Flags += -lCompilerDriver
210endif
211
212# Build a dynamic library if the user runs `make` directly from the plugin
213# directory.
214ifndef LLVMC_BUILTIN_PLUGIN
215 LOADABLE_MODULE = 1
216endif
217
218# TableGen stuff...
219ifneq ($(BUILT_SOURCES),)
220 LLVMC_BUILD_AUTOGENERATED_INC=1
221endif
222
223endif # LLVMC_PLUGIN
224
225ifdef LLVMC_BASED_DRIVER
226
227TOOLNAME = $(LLVMC_BASED_DRIVER)
228
229REQUIRES_EH := 1
230
231ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
232 LD.Flags += -lCompilerDriver
233else
234 LLVMLIBS = CompilerDriver.a
235 LINK_COMPONENTS = support system
236endif
237
238# Preprocessor magic that generates references to static variables in built-in
239# plugins.
240ifneq ($(LLVMC_BUILTIN_PLUGINS),)
241
242USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
243
244LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
245LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
246LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
247LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
248LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
249LLVMC_BUILTIN_PLUGIN_6 = $(word 6, $(LLVMC_BUILTIN_PLUGINS))
250LLVMC_BUILTIN_PLUGIN_7 = $(word 7, $(LLVMC_BUILTIN_PLUGINS))
251LLVMC_BUILTIN_PLUGIN_8 = $(word 8, $(LLVMC_BUILTIN_PLUGINS))
252LLVMC_BUILTIN_PLUGIN_9 = $(word 9, $(LLVMC_BUILTIN_PLUGINS))
253LLVMC_BUILTIN_PLUGIN_10 = $(word 10, $(LLVMC_BUILTIN_PLUGINS))
254
255
256ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
257CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
258endif
259
260ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
261CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
262endif
263
264ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
265CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
266endif
267
268ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
269CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
270endif
271
272ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
273CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
274endif
275
276ifneq ($(LLVMC_BUILTIN_PLUGIN_6),)
277CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_6)
278endif
279
280ifneq ($(LLVMC_BUILTIN_PLUGIN_7),)
281CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_7)
282endif
283
284ifneq ($(LLVMC_BUILTIN_PLUGIN_8),)
285CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_8)
286endif
287
288ifneq ($(LLVMC_BUILTIN_PLUGIN_9),)
289CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_9)
290endif
291
292ifneq ($(LLVMC_BUILTIN_PLUGIN_10),)
293CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_10)
294endif
295
296
297endif
298
299endif # LLVMC_BASED_DRIVER
300
301###############################################################################
302# VARIABLES: Set up various variables based on configuration data
303###############################################################################
304
305# Variable for if this make is for a "cleaning" target
306ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
307 IS_CLEANING_TARGET=1
308endif
309
310#--------------------------------------------------------------------
311# Variables derived from configuration we are building
312#--------------------------------------------------------------------
313
314CPP.Defines :=
315ifeq ($(ENABLE_OPTIMIZED),1)
316 BuildMode := Release
317 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
318 ifneq ($(HOST_OS),FreeBSD)
319 ifneq ($(HOST_OS),Darwin)
320 OmitFramePointer := -fomit-frame-pointer
321 endif
322 endif
323
324 # Darwin requires -fstrict-aliasing to be explicitly enabled.
325 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
326 # with -fstrict-aliasing and ipa-type-escape radr://6756684
327 #ifeq ($(HOST_OS),Darwin)
328 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
329 #endif
330 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
331 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
332 LD.Flags += $(OPTIMIZE_OPTION)
333 ifdef DEBUG_SYMBOLS
334 BuildMode := $(BuildMode)+Debug
335 CXX.Flags += -g
336 C.Flags += -g
337 LD.Flags += -g
338 KEEP_SYMBOLS := 1
339 endif
340else
341 ifdef NO_DEBUG_SYMBOLS
342 BuildMode := Unoptimized
343 CXX.Flags +=
344 C.Flags +=
345 LD.Flags +=
346 KEEP_SYMBOLS := 1
347 else
348 BuildMode := Debug
349 CXX.Flags += -g
350 C.Flags += -g
351 LD.Flags += -g
352 KEEP_SYMBOLS := 1
353 endif
354endif
355
356ifeq ($(ENABLE_PROFILING),1)
357 BuildMode := $(BuildMode)+Profile
358 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
359 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
360 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
361 KEEP_SYMBOLS := 1
362endif
363
364#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
365# CXX.Flags += -fvisibility-inlines-hidden
366#endif
367
368ifdef ENABLE_EXPENSIVE_CHECKS
369 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
370 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
371 REQUIRES_RTTI := 1
372endif
373
374# IF REQUIRES_EH=1 is specified then don't disable exceptions
375ifndef REQUIRES_EH
376 CXX.Flags += -fno-exceptions
377else
378 # If the library requires EH, it also requires RTTI.
379 REQUIRES_RTTI := 1
380endif
381
382ifdef REQUIRES_FRAME_POINTER
383 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
384 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
385 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
386endif
387
388# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
389ifneq ($(REQUIRES_RTTI), 1)
390 CXX.Flags += -fno-rtti
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800391endif
392
393ifdef ENABLE_COVERAGE
394 BuildMode := $(BuildMode)+Coverage
395 CXX.Flags += -ftest-coverage -fprofile-arcs
396 C.Flags += -ftest-coverage -fprofile-arcs
397endif
398
399# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
400# then disable assertions by defining the appropriate preprocessor symbols.
401ifdef DISABLE_ASSERTIONS
402 # Indicate that assertions are turned off using a minus sign
403 BuildMode := $(BuildMode)-Asserts
404 CPP.Defines += -DNDEBUG
405else
406 CPP.Defines += -D_DEBUG
407endif
408
409# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
410# configured), then enable expensive checks by defining the
411# appropriate preprocessor symbols.
412ifdef ENABLE_EXPENSIVE_CHECKS
413 BuildMode := $(BuildMode)+Checks
414 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
415endif
416
417# LOADABLE_MODULE implies several other things so we force them to be
418# defined/on.
419ifdef LOADABLE_MODULE
420 SHARED_LIBRARY := 1
421 LINK_LIBS_IN_SHARED := 1
422endif
423
424ifdef SHARED_LIBRARY
425 ENABLE_PIC := 1
426 PIC_FLAG = "(PIC)"
427endif
428
429ifeq ($(ENABLE_PIC),1)
430 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
431 # Nothing. Win32 defaults to PIC and warns when given -fPIC
432 else
433 ifeq ($(HOST_OS),Darwin)
434 # Common symbols not allowed in dylib files
435 CXX.Flags += -fno-common
436 C.Flags += -fno-common
437 else
438 # Linux and others; pass -fPIC
439 CXX.Flags += -fPIC
440 C.Flags += -fPIC
441 endif
442 endif
443else
444 ifeq ($(HOST_OS),Darwin)
445 CXX.Flags += -mdynamic-no-pic
446 C.Flags += -mdynamic-no-pic
447 endif
448endif
449
450ifeq ($(HOST_OS),MingW)
451 # Work around PR4957
452 CPP.Defines += -D__NO_CTYPE_INLINE
453 ifeq ($(LLVM_CROSS_COMPILING),1)
454 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
455 ifdef TOOLNAME
456 LD.Flags += -Wl,--allow-multiple-definition
457 endif
458 endif
459endif
460
461CXX.Flags += -Woverloaded-virtual
462CPP.BaseFlags += $(CPP.Defines)
463AR.Flags := cru
464
465# Make Floating point IEEE compliant on Alpha.
466ifeq ($(ARCH),Alpha)
467 CXX.Flags += -mieee
468 CPP.BaseFlags += -mieee
469ifeq ($(ENABLE_PIC),0)
470 CXX.Flags += -fPIC
471 CPP.BaseFlags += -fPIC
472endif
473endif
474
475ifeq ($(ARCH),Alpha)
476 LD.Flags += -Wl,--no-relax
477endif
478
479#--------------------------------------------------------------------
480# Directory locations
481#--------------------------------------------------------------------
482TargetMode :=
483ifeq ($(LLVM_CROSS_COMPILING),1)
484 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
485endif
486
487ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
488ObjDir := $(ObjRootDir)
489LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
490ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
491ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
492LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
493LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
494LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700495
496#--------------------------------------------------------------------
497# LLVM Capable Compiler
498#--------------------------------------------------------------------
499
500ifeq ($(LLVMCC_OPTION),llvm-gcc)
501 LLVMCC := $(LLVMGCC)
502 LLVMCXX := $(LLVMGXX)
503else
504 ifeq ($(LLVMCC_OPTION),clang)
505 ifneq ($(CLANGPATH),)
506 LLVMCC := $(CLANGPATH)
507 LLVMCXX := $(CLANGXXPATH)
508 else
509 ifeq ($(ENABLE_BUILT_CLANG),1)
510 LLVMCC := $(LLVMToolDir)/clang
511 LLVMCXX := $(LLVMToolDir)/clang++
512 endif
513 endif
514 endif
515endif
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800516
517#--------------------------------------------------------------------
518# Full Paths To Compiled Tools and Utilities
519#--------------------------------------------------------------------
520EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
521Echo = @$(EchoCmd)
522ifndef LLVMAS
523LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
524endif
525ifndef TBLGEN
526 ifeq ($(LLVM_CROSS_COMPILING),1)
527 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
528 else
529 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
530 endif
531endif
532LLVM_CONFIG := $(LLVMToolDir)/llvm-config
533ifndef LLVMLD
534LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
535endif
536ifndef LLVMDIS
537LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
538endif
539ifndef LLI
540LLI := $(LLVMToolDir)/lli$(EXEEXT)
541endif
542ifndef LLC
543LLC := $(LLVMToolDir)/llc$(EXEEXT)
544endif
545ifndef LOPT
546LOPT := $(LLVMToolDir)/opt$(EXEEXT)
547endif
548ifndef LBUGPOINT
549LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
550endif
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800551
552#--------------------------------------------------------------------
553# Adjust to user's request
554#--------------------------------------------------------------------
555
556ifeq ($(HOST_OS),Darwin)
557 DARWIN_VERSION := `sw_vers -productVersion`
558 # Strip a number like 10.4.7 to 10.4
559 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
560 # Get "4" out of 10.4 for later pieces in the makefile.
561 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
562
Shih-wei Liao7abe37e2010-04-28 01:47:00 -0700563 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined,suppress \
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800564 -dynamiclib
565 ifneq ($(ARCH),ARM)
566 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
567 endif
568else
569 ifeq ($(HOST_OS),Cygwin)
570 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
571 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
572 else
573 SharedLinkOptions=-shared
574 endif
575endif
576
577ifeq ($(TARGET_OS),Darwin)
578 ifneq ($(ARCH),ARM)
579 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800580 endif
581endif
582
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800583ifdef SHARED_LIBRARY
584ifneq ($(DARWIN_MAJVERS),4)
585 LD.Flags += $(RPATH) -Wl,$(LibDir)
586endif
587endif
588
589ifdef TOOL_VERBOSE
590 C.Flags += -v
591 CXX.Flags += -v
592 LD.Flags += -v
593 VERBOSE := 1
594endif
595
596# Adjust settings for verbose mode
597ifndef VERBOSE
598 Verb := @
599 AR.Flags += >/dev/null 2>/dev/null
600 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
601else
602 ConfigureScriptFLAGS :=
603endif
604
605# By default, strip symbol information from executable
606ifndef KEEP_SYMBOLS
607 Strip := $(PLATFORMSTRIPOPTS)
608 StripWarnMsg := "(without symbols)"
609 Install.StripFlag += -s
610endif
611
612# Adjust linker flags for building an executable
613ifneq ($(HOST_OS),Darwin)
614ifneq ($(DARWIN_MAJVERS),4)
615ifdef TOOLNAME
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700616 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
617 ifdef EXAMPLE_TOOL
618 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
619 else
620 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
621 endif
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800622endif
623endif
624endif
625
626#----------------------------------------------------------
627# Options To Invoke Tools
628#----------------------------------------------------------
629
630ifndef NO_PEDANTIC
631CompileCommonOpts += -pedantic -Wno-long-long
632endif
633CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
634 $(EXTRA_OPTIONS)
Shih-wei Liao7abe37e2010-04-28 01:47:00 -0700635# Enable cast-qual for C++; the workaround is to use const_cast.
636CXX.Flags += -Wcast-qual
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800637
638ifeq ($(HOST_OS),HP-UX)
639 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
640endif
641
642# If we are building a universal binary on Mac OS/X, pass extra options. This
643# is useful to people that want to link the LLVM libraries into their universal
644# apps.
645#
646# The following can be optionally specified:
647# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
648# For Mac OS/X 10.4 Intel machines, the traditional one is:
649# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
650# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
651# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
652# i386/ppc only.
653ifdef UNIVERSAL
654 ifndef UNIVERSAL_ARCH
655 UNIVERSAL_ARCH := i386 ppc
656 endif
657 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
658 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
659 ifdef UNIVERSAL_SDK_PATH
660 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
661 endif
662
663 # Building universal cannot compute dependencies automatically.
664 DISABLE_AUTO_DEPENDENCIES=1
665else
666 ifeq ($(TARGET_OS),Darwin)
667 ifeq ($(ARCH),x86_64)
668 TargetCommonOpts = -m64
669 else
670 ifeq ($(ARCH),x86)
671 TargetCommonOpts = -m32
672 endif
673 endif
674 endif
675endif
676
677ifeq ($(HOST_OS),SunOS)
678CPP.BaseFlags += -include llvm/System/Solaris.h
679endif
680
681ifeq ($(HOST_OS),AuroraUX)
682CPP.BaseFlags += -include llvm/System/Solaris.h
683endif # !HOST_OS - AuroraUX.
684
685LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
686CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
687# All -I flags should go here, so that they don't confuse llvm-config.
688CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
689 $(patsubst %,-I%/include,\
690 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
691 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
692 $(CPP.BaseFlags)
693
694ifeq ($(BUILD_COMPONENT), 1)
695 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
696 $(TargetCommonOpts) $(CompileCommonOpts) -c
697 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
698 $(CPPFLAGS) \
699 $(TargetCommonOpts) $(CompileCommonOpts) -c
700 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
701 $(CompileCommonOpts) $(CXX.Flags) -E
702 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
703 $(LDFLAGS) \
704 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
705else
706 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
707 $(TargetCommonOpts) $(CompileCommonOpts) -c
708 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
709 $(TargetCommonOpts) $(CompileCommonOpts) -c
710 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
711 $(CompileCommonOpts) $(CXX.Flags) -E
712 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
713 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
714endif
715
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700716BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800717 $(TargetCommonOpts) $(CompileCommonOpts)
718Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
719 $(TargetCommonOpts) $(CompileCommonOpts) -E
720
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700721BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800722 $(TargetCommonOpts) $(CompileCommonOpts)
723
724ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
725ScriptInstall = $(INSTALL) -m 0755
726DataInstall = $(INSTALL) -m 0644
727
728# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
729# paths. In this case, the SYSPATH function (defined in
730# Makefile.config) transforms Unix paths into Windows paths.
731TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
732 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
733 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
734 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
735
736Archive = $(AR) $(AR.Flags)
737LArchive = $(LLVMToolDir)/llvm-ar rcsf
738ifdef RANLIB
739Ranlib = $(RANLIB)
740else
741Ranlib = ranlib
742endif
743
744AliasTool = ln -s
745
746#----------------------------------------------------------
747# Get the list of source files and compute object file
748# names from them.
749#----------------------------------------------------------
750
751ifndef SOURCES
752 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
753 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
754else
755 Sources := $(SOURCES)
756endif
757
758ifdef BUILT_SOURCES
759Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
760endif
761
762BaseNameSources := $(sort $(basename $(Sources)))
763
764ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
765ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
766
767###############################################################################
768# DIRECTORIES: Handle recursive descent of directory structure
769###############################################################################
770
771#---------------------------------------------------------
772# Provide rules to make install dirs. This must be early
773# in the file so they get built before dependencies
774#---------------------------------------------------------
775
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700776$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800777 $(Verb) $(MKDIR) $@
778
779# To create other directories, as needed, and timestamp their creation
780%/.dir:
781 $(Verb) $(MKDIR) $* > /dev/null
782 $(Verb) $(DATE) > $@
783
784.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
785.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
786
787#---------------------------------------------------------
788# Handle the DIRS options for sequential construction
789#---------------------------------------------------------
790
791SubDirs :=
792ifdef DIRS
793SubDirs += $(DIRS)
794
795ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
796$(RecursiveTargets)::
797 $(Verb) for dir in $(DIRS); do \
798 if [ ! -f $$dir/Makefile ]; then \
799 $(MKDIR) $$dir; \
800 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
801 fi; \
802 ($(MAKE) -C $$dir $@ ) || exit 1; \
803 done
804else
805$(RecursiveTargets)::
806 $(Verb) for dir in $(DIRS); do \
807 ($(MAKE) -C $$dir $@ ) || exit 1; \
808 done
809endif
810
811endif
812
813#---------------------------------------------------------
814# Handle the EXPERIMENTAL_DIRS options ensuring success
815# after each directory is built.
816#---------------------------------------------------------
817ifdef EXPERIMENTAL_DIRS
818$(RecursiveTargets)::
819 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
820 if [ ! -f $$dir/Makefile ]; then \
821 $(MKDIR) $$dir; \
822 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
823 fi; \
824 ($(MAKE) -C $$dir $@ ) || exit 0; \
825 done
826endif
827
828#-----------------------------------------------------------
829# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
830#-----------------------------------------------------------
831ifdef OPTIONAL_PARALLEL_DIRS
832 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
833endif
834
835#-----------------------------------------------------------
836# Handle the PARALLEL_DIRS options for parallel construction
837#-----------------------------------------------------------
838ifdef PARALLEL_DIRS
839
840SubDirs += $(PARALLEL_DIRS)
841
842# Unfortunately, this list must be maintained if new recursive targets are added
843all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
844clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
845clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
846install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
847uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
848install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
849unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
850
851ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
852
853$(ParallelTargets) :
854 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
855 $(MKDIR) $(@D); \
856 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
857 fi; \
858 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
859endif
860
861#---------------------------------------------------------
862# Handle the OPTIONAL_DIRS options for directores that may
863# or may not exist.
864#---------------------------------------------------------
865ifdef OPTIONAL_DIRS
866
867SubDirs += $(OPTIONAL_DIRS)
868
869ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
870$(RecursiveTargets)::
871 $(Verb) for dir in $(OPTIONAL_DIRS); do \
872 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
873 if [ ! -f $$dir/Makefile ]; then \
874 $(MKDIR) $$dir; \
875 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
876 fi; \
877 ($(MAKE) -C$$dir $@ ) || exit 1; \
878 fi \
879 done
880else
881$(RecursiveTargets)::
882 $(Verb) for dir in $(OPTIONAL_DIRS); do \
883 ($(MAKE) -C$$dir $@ ) || exit 1; \
884 done
885endif
886endif
887
888#---------------------------------------------------------
889# Handle the CONFIG_FILES options
890#---------------------------------------------------------
891ifdef CONFIG_FILES
892
893ifdef NO_INSTALL
894install-local::
895 $(Echo) Install circumvented with NO_INSTALL
896uninstall-local::
897 $(Echo) UnInstall circumvented with NO_INSTALL
898else
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700899install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
900 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800901 $(Verb)for file in $(CONFIG_FILES); do \
902 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700903 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800904 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700905 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800906 else \
907 $(ECHO) Error: cannot find config file $${file}. ; \
908 fi \
909 done
910
911uninstall-local::
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700912 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800913 $(Verb)for file in $(CONFIG_FILES); do \
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700914 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800915 done
916endif
917
918endif
919
920###############################################################################
921# Set up variables for building libararies
922###############################################################################
923
924#---------------------------------------------------------
925# Define various command line options pertaining to the
926# libraries needed when linking. There are "Proj" libs
927# (defined by the user's project) and "LLVM" libs (defined
928# by the LLVM project).
929#---------------------------------------------------------
930
931ifdef USEDLIBS
932ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
933ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
934ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
935ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
936endif
937
938ifdef LLVMLIBS
939LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
940LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
941LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
942LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
943endif
944
945ifndef IS_CLEANING_TARGET
946ifdef LINK_COMPONENTS
947
948# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
949# clean in tools, then do a make in tools (instead of at the top level).
950$(LLVM_CONFIG):
951 @echo "*** llvm-config doesn't exist - rebuilding it."
952 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
953
954$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
955
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700956ifeq ($(ENABLE_SHARED), 1)
957LLVMLibsOptions += -lLLVM-$(LLVMVersion)
958LLVMLibsPaths += $(LibDir)/libLLVM-$(LLVMVersion)$(SHLIBEXT)
959else
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800960LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
961LLVMLibsPaths += $(LLVM_CONFIG) \
962 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
963endif
964endif
Shih-wei Liaoe4454322010-04-07 12:21:42 -0700965endif
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800966
Shih-wei Liao7abe37e2010-04-28 01:47:00 -0700967# Set up the library exports file.
968ifdef EXPORTED_SYMBOL_FILE
969
970# First, set up the native export file, which may differ from the source
971# export file.
972
973ifeq ($(HOST_OS),Darwin)
974# Darwin convention prefixes symbols with underscores.
975NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
976$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
977 $(Verb) sed -e 's/[[:<:]]/_/' < $< > $@
978clean-local::
979 -$(Verb) $(RM) -f $(NativeExportsFile)
980else
981NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
982endif
983
984# Now add the linker command-line options to use the native export file.
985
986ifeq ($(HOST_OS),Darwin)
987LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
988endif
989
990# gold, bfd ld, etc.
991ifeq ($(HAVE_LINK_RETAIN_SYMBOLS_FILE),1)
992LLVMLibsOptions += -Wl,-retain-symbols-file,$(NativeExportsFile)
993endif
994
995endif
996
Shih-wei Liaoe264f622010-02-10 11:10:31 -0800997###############################################################################
998# Library Build Rules: Four ways to build a library
999###############################################################################
1000
1001#---------------------------------------------------------
1002# Bytecode Module Targets:
1003# If the user set MODULE_NAME then they want to build a
1004# bytecode module from the sources. We compile all the
1005# sources and link it together into a single bytecode
1006# module.
1007#---------------------------------------------------------
1008
1009ifdef MODULE_NAME
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001010ifeq ($(strip $(LLVMCC)),)
1011$(warning Modules require LLVM capable compiler but none is available ****)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001012else
1013
1014Module := $(LibDir)/$(MODULE_NAME).bc
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001015LinkModule := $(LLVMLD) -r
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001016
1017
1018ifdef EXPORTED_SYMBOL_FILE
1019LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1020endif
1021
1022$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
1023 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
1024 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1025
1026all-local:: $(Module)
1027
1028clean-local::
1029ifneq ($(strip $(Module)),)
1030 -$(Verb) $(RM) -f $(Module)
1031endif
1032
1033ifdef BYTECODE_DESTINATION
1034ModuleDestDir := $(BYTECODE_DESTINATION)
1035else
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001036ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001037endif
1038
1039ifdef NO_INSTALL
1040install-local::
1041 $(Echo) Install circumvented with NO_INSTALL
1042uninstall-local::
1043 $(Echo) Uninstall circumvented with NO_INSTALL
1044else
1045DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1046
1047install-module:: $(DestModule)
1048install-local:: $(DestModule)
1049
1050$(DestModule): $(ModuleDestDir) $(Module)
1051 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
1052 $(Verb) $(DataInstall) $(Module) $(DestModule)
1053
1054uninstall-local::
1055 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1056 -$(Verb) $(RM) -f $(DestModule)
1057endif
1058
1059endif
1060endif
1061
1062# if we're building a library ...
1063ifdef LIBRARYNAME
1064
1065# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1066LIBRARYNAME := $(strip $(LIBRARYNAME))
1067ifdef LOADABLE_MODULE
1068LibName.A := $(LibDir)/$(LIBRARYNAME).a
1069LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
1070else
1071LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
1072LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1073endif
1074LibName.O := $(LibDir)/$(LIBRARYNAME).o
1075LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1076
1077#---------------------------------------------------------
1078# Shared Library Targets:
1079# If the user asked for a shared library to be built
1080# with the SHARED_LIBRARY variable, then we provide
1081# targets for building them.
1082#---------------------------------------------------------
1083ifdef SHARED_LIBRARY
1084
1085all-local:: $(LibName.SO)
1086
Shih-wei Liao7abe37e2010-04-28 01:47:00 -07001087ifdef EXPORTED_SYMBOL_FILE
1088$(LibName.SO): $(NativeExportsFile)
1089endif
1090
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001091ifdef LINK_LIBS_IN_SHARED
1092ifdef LOADABLE_MODULE
1093SharedLibKindMessage := "Loadable Module"
1094else
1095SharedLibKindMessage := "Shared Library"
1096endif
1097$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
1098 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1099 $(LIBRARYNAME)$(SHLIBEXT)
1100 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1101 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1102else
1103$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
1104 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
1105 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1106endif
1107
1108clean-local::
1109ifneq ($(strip $(LibName.SO)),)
1110 -$(Verb) $(RM) -f $(LibName.SO)
1111endif
1112
1113ifdef NO_INSTALL
1114install-local::
1115 $(Echo) Install circumvented with NO_INSTALL
1116uninstall-local::
1117 $(Echo) Uninstall circumvented with NO_INSTALL
1118else
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001119DestSharedLib = $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001120
1121install-local:: $(DestSharedLib)
1122
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001123$(DestSharedLib): $(LibName.SO) $(DESTDIR)$(PROJ_libdir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001124 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1125 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1126
1127uninstall-local::
1128 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001129 -$(Verb) $(RM) -f $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).*
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001130endif
1131endif
1132
1133#---------------------------------------------------------
1134# Bytecode Library Targets:
1135# If the user asked for a bytecode library to be built
1136# with the BYTECODE_LIBRARY variable, then we provide
1137# targets for building them.
1138#---------------------------------------------------------
1139ifdef BYTECODE_LIBRARY
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001140ifeq ($(strip $(LLVMCC)),)
1141$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001142else
1143
1144all-local:: $(LibName.BCA)
1145
1146ifdef EXPORTED_SYMBOL_FILE
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001147BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001148
1149$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1150 $(LLVMToolDir)/llvm-ar
1151 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1152 "(internalize)"
1153 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1154 $(Verb) $(RM) -f $@
1155 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1156else
1157$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1158 $(LLVMToolDir)/llvm-ar
1159 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1160 $(Verb) $(RM) -f $@
1161 $(Verb) $(LArchive) $@ $(ObjectsBC)
1162
1163endif
1164
1165clean-local::
1166ifneq ($(strip $(LibName.BCA)),)
1167 -$(Verb) $(RM) -f $(LibName.BCA)
1168endif
1169
1170ifdef BYTECODE_DESTINATION
1171BytecodeDestDir := $(BYTECODE_DESTINATION)
1172else
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001173BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001174endif
1175
1176DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1177
1178install-bytecode-local:: $(DestBytecodeLib)
1179
1180ifdef NO_INSTALL
1181install-local::
1182 $(Echo) Install circumvented with NO_INSTALL
1183uninstall-local::
1184 $(Echo) Uninstall circumvented with NO_INSTALL
1185else
1186install-local:: $(DestBytecodeLib)
1187
1188$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1189 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1190 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1191
1192uninstall-local::
1193 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1194 -$(Verb) $(RM) -f $(DestBytecodeLib)
1195endif
1196endif
1197endif
1198
1199#---------------------------------------------------------
1200# Library Targets:
1201# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1202# building an archive.
1203#---------------------------------------------------------
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001204ifndef NO_BUILD_ARCHIVE
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001205ifndef BUILD_ARCHIVE
1206ifndef LOADABLE_MODULE
1207BUILD_ARCHIVE = 1
1208endif
1209endif
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001210endif
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001211
1212#---------------------------------------------------------
1213# Archive Library Targets:
1214# If the user wanted a regular archive library built,
1215# then we provide targets for building them.
1216#---------------------------------------------------------
1217ifdef BUILD_ARCHIVE
1218
1219all-local:: $(LibName.A)
1220
1221$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1222 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1223 -$(Verb) $(RM) -f $@
1224 $(Verb) $(Archive) $@ $(ObjectsO)
1225 $(Verb) $(Ranlib) $@
1226
1227clean-local::
1228ifneq ($(strip $(LibName.A)),)
1229 -$(Verb) $(RM) -f $(LibName.A)
1230endif
1231
1232ifdef NO_INSTALL
1233install-local::
1234 $(Echo) Install circumvented with NO_INSTALL
1235uninstall-local::
1236 $(Echo) Uninstall circumvented with NO_INSTALL
1237else
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001238DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001239
1240install-local:: $(DestArchiveLib)
1241
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001242$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001243 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001244 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001245 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1246
1247uninstall-local::
1248 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1249 -$(Verb) $(RM) -f $(DestArchiveLib)
1250endif
1251endif
1252
1253# endif LIBRARYNAME
1254endif
1255
1256###############################################################################
1257# Tool Build Rules: Build executable tool based on TOOLNAME option
1258###############################################################################
1259
1260ifdef TOOLNAME
1261
1262#---------------------------------------------------------
1263# Set up variables for building a tool.
1264#---------------------------------------------------------
1265TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
1266ifdef EXAMPLE_TOOL
1267ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
1268else
1269ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1270endif
1271
1272# TOOLALIAS is a name to symlink (or copy) the tool to.
1273ifdef TOOLALIAS
1274ifdef EXAMPLE_TOOL
1275ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1276else
1277ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1278endif
1279endif
1280
1281#---------------------------------------------------------
1282# Prune Exports
1283#---------------------------------------------------------
1284
1285# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1286# not exporting all of the weak symbols from the binary. This reduces dyld
1287# startup time by 4x on darwin in some cases.
1288ifdef TOOL_NO_EXPORTS
1289ifeq ($(HOST_OS),Darwin)
1290
1291# Tiger tools don't support this.
1292ifneq ($(DARWIN_MAJVERS),4)
Shih-wei Liao7abe37e2010-04-28 01:47:00 -07001293LD.Flags += -Wl,-exported_symbol,_main
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001294endif
1295endif
1296
1297ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
1298 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1299endif
1300endif
1301
1302
1303#---------------------------------------------------------
1304# Provide targets for building the tools
1305#---------------------------------------------------------
1306all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1307
1308clean-local::
1309ifneq ($(strip $(ToolBuildPath)),)
1310 -$(Verb) $(RM) -f $(ToolBuildPath)
1311endif
1312ifneq ($(strip $(ToolAliasBuildPath)),)
1313 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1314endif
1315
1316ifdef EXAMPLE_TOOL
1317$(ToolBuildPath): $(ExmplDir)/.dir
1318else
1319$(ToolBuildPath): $(ToolDir)/.dir
1320endif
1321
1322$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1323 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1324 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1325 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1326 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1327 $(StripWarnMsg)
1328
1329ifneq ($(strip $(ToolAliasBuildPath)),)
1330$(ToolAliasBuildPath): $(ToolBuildPath)
1331 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1332 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1333 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1334 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLNAME) \
1335 $(StripWarnMsg)
1336endif
1337
1338ifdef NO_INSTALL
1339install-local::
1340 $(Echo) Install circumvented with NO_INSTALL
1341uninstall-local::
1342 $(Echo) Uninstall circumvented with NO_INSTALL
1343else
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001344DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001345
1346install-local:: $(DestTool)
1347
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001348$(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001349 $(Echo) Installing $(BuildMode) $(DestTool)
1350 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1351
1352uninstall-local::
1353 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1354 -$(Verb) $(RM) -f $(DestTool)
1355
1356# TOOLALIAS install.
1357ifdef TOOLALIAS
Shih-wei Liao7abe37e2010-04-28 01:47:00 -07001358DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001359
1360install-local:: $(DestToolAlias)
1361
1362$(DestToolAlias): $(DestTool) $(PROJ_bindir)
1363 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1364 $(Verb) $(RM) -f $(DestToolAlias)
1365 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1366
1367uninstall-local::
1368 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1369 -$(Verb) $(RM) -f $(DestToolAlias)
1370endif
1371
1372endif
1373endif
1374
1375###############################################################################
1376# Object Build Rules: Build object files based on sources
1377###############################################################################
1378
1379# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1380ifeq ($(HOST_OS),HP-UX)
1381 DISABLE_AUTO_DEPENDENCIES=1
1382endif
1383
1384# Provide rule sets for when dependency generation is enabled
1385ifndef DISABLE_AUTO_DEPENDENCIES
1386
1387#---------------------------------------------------------
1388# Create .o files in the ObjDir directory from the .cpp and .c files...
1389#---------------------------------------------------------
1390
1391DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1392 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1393
1394# If the build succeeded, move the dependency file over, otherwise
1395# remove it.
1396DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1397 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1398
1399$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1400 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1401 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1402 $(DEPEND_MOVEFILE)
1403
1404$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1405 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1406 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1407 $(DEPEND_MOVEFILE)
1408
1409$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1410 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1411 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1412 $(DEPEND_MOVEFILE)
1413
1414#---------------------------------------------------------
1415# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1416#---------------------------------------------------------
1417
1418BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1419 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1420
1421# If the build succeeded, move the dependency file over, otherwise
1422# remove it.
1423BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1424 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1425
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001426$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001427 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1428 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1429 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1430 $(BC_DEPEND_MOVEFILE)
1431
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001432$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001433 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1434 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1435 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1436 $(BC_DEPEND_MOVEFILE)
1437
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001438$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001439 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1440 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1441 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1442 $(BC_DEPEND_MOVEFILE)
1443
1444# Provide alternate rule sets if dependencies are disabled
1445else
1446
1447$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1448 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1449 $(Compile.CXX) $< -o $@
1450
1451$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1452 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1453 $(Compile.CXX) $< -o $@
1454
1455$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1456 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1457 $(Compile.C) $< -o $@
1458
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001459$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001460 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1461 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1462
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001463$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001464 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1465 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1466
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001467$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001468 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1469 $(BCCompile.C) $< -o $@ -S -emit-llvm
1470
1471endif
1472
1473
1474## Rules for building preprocessed (.i/.ii) outputs.
1475$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1476 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1477 $(Verb) $(Preprocess.CXX) $< -o $@
1478
1479$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1480 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1481 $(Verb) $(Preprocess.CXX) $< -o $@
1482
1483$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1484 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1485 $(Verb) $(Preprocess.C) $< -o $@
1486
1487
1488$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1489 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1490 $(Compile.CXX) $< -o $@ -S
1491
1492$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1493 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1494 $(Compile.CXX) $< -o $@ -S
1495
1496$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1497 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1498 $(Compile.C) $< -o $@ -S
1499
1500
1501# make the C and C++ compilers strip debug info out of bytecode libraries.
1502ifdef DEBUG_RUNTIME
1503$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1504 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1505 $(Verb) $(LOPT) $< -std-compile-opts -o $@
1506else
1507$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1508 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1509 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1510endif
1511
1512
1513#---------------------------------------------------------
1514# Provide rule to build .bc files from .ll sources,
1515# regardless of dependencies
1516#---------------------------------------------------------
1517$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1518 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1519 $(Verb) $(LLVMAS) $< -f -o $@
1520
1521###############################################################################
1522# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1523###############################################################################
1524
1525ifdef TARGET
1526TABLEGEN_INC_FILES_COMMON = 1
1527endif
1528
1529ifdef LLVMC_BUILD_AUTOGENERATED_INC
1530TABLEGEN_INC_FILES_COMMON = 1
1531endif
1532
1533ifdef TABLEGEN_INC_FILES_COMMON
1534
1535INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1536INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1537.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1538
1539# INCFiles rule: All of the tblgen generated files are emitted to
1540# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1541# us to only "touch" the real file if the contents of it change. IOW, if
1542# tblgen is modified, all of the .inc.tmp files are regenerated, but no
1543# dependencies of the .inc files are, unless the contents of the .inc file
1544# changes.
1545$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1546 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1547
1548endif # TABLEGEN_INC_FILES_COMMON
1549
1550ifdef TARGET
1551
1552TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1553 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1554 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1555 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1556 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1557 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1558 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1559
1560# All of these files depend on tblgen and the .td files.
1561$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1562
1563$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1564$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1565 $(Echo) "Building $(<F) register names with tblgen"
1566 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1567
1568$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1569$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1570 $(Echo) "Building $(<F) register information header with tblgen"
1571 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1572
1573$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1574$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1575 $(Echo) "Building $(<F) register info implementation with tblgen"
1576 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1577
1578$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1579$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1580 $(Echo) "Building $(<F) instruction names with tblgen"
1581 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1582
1583$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1584$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1585 $(Echo) "Building $(<F) instruction information with tblgen"
1586 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1587
1588$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1589$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1590 $(Echo) "Building $(<F) assembly writer with tblgen"
1591 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1592
1593$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1594$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1595 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1596 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1597
1598$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1599$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1600 $(Echo) "Building $(<F) assembly matcher with tblgen"
1601 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1602
1603$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1604$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1605 $(Echo) "Building $(<F) code emitter with tblgen"
1606 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1607
1608$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1609$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1610 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1611 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1612
1613$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1614$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1615 $(Echo) "Building $(<F) disassembly tables with tblgen"
1616 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1617
1618$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1619$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1620 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1621 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1622
1623$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1624$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1625 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1626 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1627
1628$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1629$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1630 $(Echo) "Building $(<F) subtarget information with tblgen"
1631 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1632
1633$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1634$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1635 $(Echo) "Building $(<F) calling convention information with tblgen"
1636 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1637
1638$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1639$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1640 $(Echo) "Building $(<F) intrinsics information with tblgen"
1641 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1642
Shih-wei Liao7abe37e2010-04-28 01:47:00 -07001643$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1644 $(Echo) "Building $(<F) decoder tables with tblgen"
1645 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1646
1647
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001648clean-local::
1649 -$(Verb) $(RM) -f $(INCFiles)
1650
1651endif # TARGET
1652
1653ifdef LLVMC_BUILD_AUTOGENERATED_INC
1654
1655LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1656 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1657
1658TDFiles := $(LLVMCPluginSrc) \
1659 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1660
1661$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1662 $(TBLGEN) $(TD_COMMON)
1663 $(Echo) "Building LLVMC configuration library with tblgen"
1664 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1665
1666endif # LLVMC_BUILD_AUTOGENERATED_INC
1667
1668###############################################################################
1669# OTHER RULES: Other rules needed
1670###############################################################################
1671
1672# To create postscript files from dot files...
1673ifneq ($(DOT),false)
1674%.ps: %.dot
1675 $(DOT) -Tps < $< > $@
1676else
1677%.ps: %.dot
1678 $(Echo) "Cannot build $@: The program dot is not installed"
1679endif
1680
1681# This rules ensures that header files that are removed still have a rule for
1682# which they can be "generated." This allows make to ignore them and
1683# reproduce the dependency lists.
1684%.h:: ;
1685%.hpp:: ;
1686
1687# Define clean-local to clean the current directory. Note that this uses a
1688# very conservative approach ensuring that empty variables do not cause
1689# errors or disastrous removal.
1690clean-local::
1691ifneq ($(strip $(ObjRootDir)),)
1692 -$(Verb) $(RM) -rf $(ObjRootDir)
1693endif
1694 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1695ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1696 -$(Verb) $(RM) -f *$(SHLIBEXT)
1697endif
1698
1699clean-all-local::
1700 -$(Verb) $(RM) -rf Debug Release Profile
1701
1702
1703###############################################################################
1704# DEPENDENCIES: Include the dependency files if we should
1705###############################################################################
1706ifndef DISABLE_AUTO_DEPENDENCIES
1707
1708# If its not one of the cleaning targets
1709ifndef IS_CLEANING_TARGET
1710
1711# Get the list of dependency files
1712DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1713DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1714
1715# Include bitcode dependency files if using bitcode libraries
1716ifdef BYTECODE_LIBRARY
1717DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1718endif
1719
1720-include $(DependFiles) ""
1721
1722endif
1723
1724endif
1725
1726###############################################################################
1727# CHECK: Running the test suite
1728###############################################################################
1729
1730check::
1731 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1732 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1733 $(EchoCmd) Running test suite ; \
1734 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1735 TESTSUITE=$(TESTSUITE) ; \
1736 else \
1737 $(EchoCmd) No Makefile in test directory ; \
1738 fi ; \
1739 else \
1740 $(EchoCmd) No test directory ; \
1741 fi
1742
1743check-lit::
1744 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1745 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1746 $(EchoCmd) Running test suite ; \
1747 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1748 else \
1749 $(EchoCmd) No Makefile in test directory ; \
1750 fi ; \
1751 else \
1752 $(EchoCmd) No test directory ; \
1753 fi
1754
1755check-all::
1756 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1757 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1758 $(EchoCmd) Running test suite ; \
1759 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1760 else \
1761 $(EchoCmd) No Makefile in test directory ; \
1762 fi ; \
1763 else \
1764 $(EchoCmd) No test directory ; \
1765 fi
1766
1767###############################################################################
1768# UNITTESTS: Running the unittests test suite
1769###############################################################################
1770
1771unittests::
1772 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1773 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1774 $(EchoCmd) Running unittests test suite ; \
1775 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1776 else \
1777 $(EchoCmd) No Makefile in unittests directory ; \
1778 fi ; \
1779 else \
1780 $(EchoCmd) No unittests directory ; \
1781 fi
1782
1783###############################################################################
1784# DISTRIBUTION: Handle construction of a distribution tarball
1785###############################################################################
1786
1787#------------------------------------------------------------------------
1788# Define distribution related variables
1789#------------------------------------------------------------------------
1790DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1791DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1792TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1793DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1794DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1795DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1796DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1797 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1798 Makefile.config.in configure autoconf
1799DistOther := $(notdir $(wildcard \
1800 $(PROJ_SRC_DIR)/*.h \
1801 $(PROJ_SRC_DIR)/*.td \
1802 $(PROJ_SRC_DIR)/*.def \
1803 $(PROJ_SRC_DIR)/*.ll \
1804 $(PROJ_SRC_DIR)/*.in))
1805DistSubDirs := $(SubDirs)
1806DistSources = $(Sources) $(EXTRA_DIST)
1807DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1808
1809#------------------------------------------------------------------------
1810# We MUST build distribution with OBJ_DIR != SRC_DIR
1811#------------------------------------------------------------------------
1812ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1813dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1814 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1815
1816else
1817
1818#------------------------------------------------------------------------
1819# Prevent attempt to run dist targets from anywhere but the top level
1820#------------------------------------------------------------------------
1821ifneq ($(LEVEL),.)
1822dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1823 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1824else
1825
1826#------------------------------------------------------------------------
1827# Provide the top level targets
1828#------------------------------------------------------------------------
1829
1830dist-gzip:: $(DistTarGZip)
1831
1832$(DistTarGZip) : $(TopDistDir)/.makedistdir
1833 $(Echo) Packing gzipped distribution tar file.
1834 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1835 $(GZIP) -c > "$(DistTarGZip)"
1836
1837dist-bzip2:: $(DistTarBZ2)
1838
1839$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1840 $(Echo) Packing bzipped distribution tar file.
1841 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1842 $(BZIP2) -c >$(DistTarBZ2)
1843
1844dist-zip:: $(DistZip)
1845
1846$(DistZip) : $(TopDistDir)/.makedistdir
1847 $(Echo) Packing zipped distribution file.
1848 $(Verb) rm -f $(DistZip)
1849 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1850
1851dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1852 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1853
1854DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1855
1856dist-check:: $(DistTarGZip)
1857 $(Echo) Checking distribution tar file.
1858 $(Verb) if test -d $(DistCheckDir) ; then \
1859 $(RM) -rf $(DistCheckDir) ; \
1860 fi
1861 $(Verb) $(MKDIR) $(DistCheckDir)
1862 $(Verb) cd $(DistCheckDir) && \
1863 $(MKDIR) $(DistCheckDir)/build && \
1864 $(MKDIR) $(DistCheckDir)/install && \
1865 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1866 cd build && \
1867 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1868 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1869 $(MAKE) all && \
1870 $(MAKE) check && \
1871 $(MAKE) unittests && \
1872 $(MAKE) install && \
1873 $(MAKE) uninstall && \
1874 $(MAKE) dist-clean && \
1875 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1876
1877dist-clean::
1878 $(Echo) Cleaning distribution files
1879 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1880 $(DistCheckDir)
1881
1882endif
1883
1884#------------------------------------------------------------------------
1885# Provide the recursive distdir target for building the distribution directory
1886#------------------------------------------------------------------------
1887distdir: $(DistDir)/.makedistdir
1888$(DistDir)/.makedistdir: $(DistSources)
1889 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1890 if test -d "$(DistDir)" ; then \
1891 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1892 exit 1 ; \
1893 fi ; \
1894 $(EchoCmd) Removing old $(DistDir) ; \
1895 $(RM) -rf $(DistDir); \
1896 $(EchoCmd) Making 'all' to verify build ; \
1897 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1898 fi
1899 $(Echo) Building Distribution Directory $(DistDir)
1900 $(Verb) $(MKDIR) $(DistDir)
1901 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1902 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1903 for file in $(DistFiles) ; do \
1904 case "$$file" in \
1905 $(PROJ_SRC_DIR)/*) \
1906 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1907 ;; \
1908 $(PROJ_SRC_ROOT)/*) \
1909 file=`echo "$$file" | \
1910 sed "s#^$$srcrootstrip/##"` \
1911 ;; \
1912 esac; \
1913 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1914 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1915 from_dir="$(PROJ_SRC_DIR)" ; \
1916 elif test -f "$$file" || test -d "$$file" ; then \
1917 from_dir=. ; \
1918 fi ; \
1919 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1920 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1921 to_dir="$(DistDir)/$$dir"; \
1922 $(MKDIR) "$$to_dir" ; \
1923 else \
1924 to_dir="$(DistDir)"; \
1925 fi; \
1926 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1927 if test -n "$$mid_dir" ; then \
1928 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1929 fi ; \
1930 if test -d "$$from_dir/$$file"; then \
1931 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1932 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1933 cd $(PROJ_SRC_DIR) ; \
1934 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1935 ( cd $$to_dir ; $(TAR) xf - ) ; \
1936 cd $(PROJ_OBJ_DIR) ; \
1937 else \
1938 cd $$from_dir ; \
1939 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1940 ( cd $$to_dir ; $(TAR) xf - ) ; \
1941 cd $(PROJ_OBJ_DIR) ; \
1942 fi; \
1943 elif test -f "$$from_dir/$$file" ; then \
1944 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1945 elif test -L "$$from_dir/$$file" ; then \
1946 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1947 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1948 $(EchoCmd) "===== WARNING: Distribution Source " \
1949 "$$from_dir/$$file Not Found!" ; \
1950 elif test "$(Verb)" != '@' ; then \
1951 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1952 fi; \
1953 done
1954 $(Verb) for subdir in $(DistSubDirs) ; do \
1955 if test "$$subdir" \!= "." ; then \
1956 new_distdir="$(DistDir)/$$subdir" ; \
1957 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1958 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1959 DistDir="$$new_distdir" distdir ) || exit 1; \
1960 fi; \
1961 done
1962 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1963 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1964 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1965 -name .svn \) -print` ;\
1966 $(MAKE) dist-hook ; \
1967 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1968 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1969 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1970 -o ! -type d ! -perm -444 -exec \
1971 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1972 || chmod -R a+r $(DistDir) ; \
1973 fi
1974
1975# This is invoked by distdir target, define it as a no-op to avoid errors if not
1976# defined by user.
1977dist-hook::
1978
1979endif
1980
1981###############################################################################
1982# TOP LEVEL - targets only to apply at the top level directory
1983###############################################################################
1984
1985ifeq ($(LEVEL),.)
1986
1987#------------------------------------------------------------------------
1988# Install support for the project's include files:
1989#------------------------------------------------------------------------
1990ifdef NO_INSTALL
1991install-local::
1992 $(Echo) Install circumvented with NO_INSTALL
1993uninstall-local::
1994 $(Echo) Uninstall circumvented with NO_INSTALL
1995else
1996install-local::
1997 $(Echo) Installing include files
Shih-wei Liaoe4454322010-04-07 12:21:42 -07001998 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001999 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2000 cd $(PROJ_SRC_ROOT)/include && \
2001 for hdr in `find . -type f '!' '(' -name '*~' \
2002 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2003 grep -v .svn` ; do \
Shih-wei Liaoe4454322010-04-07 12:21:42 -07002004 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Shih-wei Liaoe264f622010-02-10 11:10:31 -08002005 if test \! -d "$$instdir" ; then \
2006 $(EchoCmd) Making install directory $$instdir ; \
2007 $(MKDIR) $$instdir ;\
2008 fi ; \
Shih-wei Liaoe4454322010-04-07 12:21:42 -07002009 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Shih-wei Liaoe264f622010-02-10 11:10:31 -08002010 done ; \
2011 fi
2012ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2013 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2014 cd $(PROJ_OBJ_ROOT)/include && \
2015 for hdr in `find . -type f -print | grep -v CVS` ; do \
Shih-wei Liaoe4454322010-04-07 12:21:42 -07002016 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Shih-wei Liaoe264f622010-02-10 11:10:31 -08002017 done ; \
2018 fi
2019endif
2020
2021uninstall-local::
2022 $(Echo) Uninstalling include files
2023 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2024 cd $(PROJ_SRC_ROOT)/include && \
2025 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2026 '!' '(' -name '*~' -o -name '.#*' \
2027 -o -name '*.in' ')' -print ')' | \
Shih-wei Liaoe4454322010-04-07 12:21:42 -07002028 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Shih-wei Liaoe264f622010-02-10 11:10:31 -08002029 cd $(PROJ_SRC_ROOT)/include && \
2030 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Shih-wei Liaoe4454322010-04-07 12:21:42 -07002031 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Shih-wei Liaoe264f622010-02-10 11:10:31 -08002032 fi
2033endif
2034endif
2035
2036check-line-length:
2037 @echo searching for overlength lines in files: $(Sources)
2038 @echo
2039 @echo
2040 egrep -n '.{81}' $(Sources) /dev/null
2041
2042check-for-tabs:
2043 @echo searching for tabs in files: $(Sources)
2044 @echo
2045 @echo
2046 egrep -n ' ' $(Sources) /dev/null
2047
2048check-footprint:
2049 @ls -l $(LibDir) | awk '\
2050 BEGIN { sum = 0; } \
2051 { sum += $$5; } \
2052 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2053 @ls -l $(ToolDir) | awk '\
2054 BEGIN { sum = 0; } \
2055 { sum += $$5; } \
2056 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2057#------------------------------------------------------------------------
2058# Print out the directories used for building
2059#------------------------------------------------------------------------
2060printvars::
2061 $(Echo) "BuildMode : " '$(BuildMode)'
2062 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2063 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2064 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2065 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2066 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2067 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2068 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2069 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2070 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2071 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
2072 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
2073 $(Echo) "UserTargets : " '$(UserTargets)'
2074 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2075 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2076 $(Echo) "ObjDir : " '$(ObjDir)'
2077 $(Echo) "LibDir : " '$(LibDir)'
2078 $(Echo) "ToolDir : " '$(ToolDir)'
2079 $(Echo) "ExmplDir : " '$(ExmplDir)'
2080 $(Echo) "Sources : " '$(Sources)'
2081 $(Echo) "TDFiles : " '$(TDFiles)'
2082 $(Echo) "INCFiles : " '$(INCFiles)'
2083 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
2084 $(Echo) "PreConditions: " '$(PreConditions)'
2085 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2086 $(Echo) "Compile.C : " '$(Compile.C)'
2087 $(Echo) "Archive : " '$(Archive)'
2088 $(Echo) "YaccFiles : " '$(YaccFiles)'
2089 $(Echo) "LexFiles : " '$(LexFiles)'
2090 $(Echo) "Module : " '$(Module)'
2091 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2092 $(Echo) "SubDirs : " '$(SubDirs)'
2093 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2094 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2095
2096###
2097# Debugging
2098
2099# General debugging rule, use 'make dbg-print-XXX' to print the
2100# definition, value and origin of XXX.
2101make-print-%:
2102 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))