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