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