blob: 5bdd0d393fc58e95121072c67f27ab65b8b181ba [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.
457CPP.Flags += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
458 -I$(PROJ_OBJ_ROOT)/include \
459 -I$(PROJ_SRC_ROOT)/include \
460 -I$(LLVM_OBJ_ROOT)/include \
461 -I$(LLVM_SRC_ROOT)/include \
462 $(CPP.BaseFlags)
463
464Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
465LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
466BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
467Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
468
469Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
470LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
471BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
472 $(CompileCommonOpts)
473
474Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
475Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
476 $(LD.Flags) $(Strip)
477LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
478Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
479 $(Relink.Flags)
480LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
481LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
482 $(Install.Flags)
483ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
484ScriptInstall = $(INSTALL) -m 0755
485DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000486
487# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
488# paths. In this case, the SYSPATH function (defined in
489# Makefile.config) transforms Unix paths into Windows paths.
490TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
491 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
492 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
493
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494Archive = $(AR) $(AR.Flags)
495LArchive = $(LLVMToolDir)/llvm-ar rcsf
496ifdef RANLIB
497Ranlib = $(RANLIB)
498else
499Ranlib = ranlib
500endif
501
502#----------------------------------------------------------
503# Get the list of source files and compute object file
504# names from them.
505#----------------------------------------------------------
506
507ifndef SOURCES
508 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
509 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
510 $(PROJ_SRC_DIR)/*.l))
511else
512 Sources := $(SOURCES)
513endif
514
515ifdef BUILT_SOURCES
516Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
517endif
518
519BaseNameSources := $(sort $(basename $(Sources)))
520
521ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
522ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
523ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
524
525###############################################################################
526# DIRECTORIES: Handle recursive descent of directory structure
527###############################################################################
528
529#---------------------------------------------------------
530# Provide rules to make install dirs. This must be early
531# in the file so they get built before dependencies
532#---------------------------------------------------------
533
534$(PROJ_bindir): $(PROJ_bindir)/.dir
535$(PROJ_libdir): $(PROJ_libdir)/.dir
536$(PROJ_includedir): $(PROJ_includedir)/.dir
537$(PROJ_etcdir): $(PROJ_etcdir)/.dir
538
539# To create other directories, as needed, and timestamp their creation
540%/.dir:
541 $(Verb) $(MKDIR) $* > /dev/null
542 $(Verb) $(DATE) > $@
543
544.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
545.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
546
547#---------------------------------------------------------
548# Handle the DIRS options for sequential construction
549#---------------------------------------------------------
550
551SubDirs :=
552ifdef DIRS
553SubDirs += $(DIRS)
554
555ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
556$(RecursiveTargets)::
557 $(Verb) for dir in $(DIRS); do \
558 if [ ! -f $$dir/Makefile ]; then \
559 $(MKDIR) $$dir; \
560 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
561 fi; \
562 ($(MAKE) -C $$dir $@ ) || exit 1; \
563 done
564else
565$(RecursiveTargets)::
566 $(Verb) for dir in $(DIRS); do \
567 ($(MAKE) -C $$dir $@ ) || exit 1; \
568 done
569endif
570
571endif
572
573#---------------------------------------------------------
574# Handle the EXPERIMENTAL_DIRS options ensuring success
575# after each directory is built.
576#---------------------------------------------------------
577ifdef EXPERIMENTAL_DIRS
578$(RecursiveTargets)::
579 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
580 if [ ! -f $$dir/Makefile ]; then \
581 $(MKDIR) $$dir; \
582 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
583 fi; \
584 ($(MAKE) -C $$dir $@ ) || exit 0; \
585 done
586endif
587
588#-----------------------------------------------------------
589# Handle the PARALLEL_DIRS options for parallel construction
590#-----------------------------------------------------------
591ifdef PARALLEL_DIRS
592
593SubDirs += $(PARALLEL_DIRS)
594
595# Unfortunately, this list must be maintained if new recursive targets are added
596all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
597clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
598clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
599install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
600uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
601install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
602
603ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
604
605$(ParallelTargets) :
606 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
607 $(MKDIR) $(@D); \
608 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
609 fi; \
610 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
611endif
612
613#---------------------------------------------------------
614# Handle the OPTIONAL_DIRS options for directores that may
615# or may not exist.
616#---------------------------------------------------------
617ifdef OPTIONAL_DIRS
618
619SubDirs += $(OPTIONAL_DIRS)
620
621ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
622$(RecursiveTargets)::
623 $(Verb) for dir in $(OPTIONAL_DIRS); do \
624 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
625 if [ ! -f $$dir/Makefile ]; then \
626 $(MKDIR) $$dir; \
627 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
628 fi; \
629 ($(MAKE) -C$$dir $@ ) || exit 1; \
630 fi \
631 done
632else
633$(RecursiveTargets)::
634 $(Verb) for dir in $(OPTIONAL_DIRS); do \
635 ($(MAKE) -C$$dir $@ ) || exit 1; \
636 done
637endif
638endif
639
640#---------------------------------------------------------
641# Handle the CONFIG_FILES options
642#---------------------------------------------------------
643ifdef CONFIG_FILES
644
645ifdef NO_INSTALL
646install-local::
647 $(Echo) Install circumvented with NO_INSTALL
648uninstall-local::
649 $(Echo) UnInstall circumvented with NO_INSTALL
650else
651install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
652 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
653 $(Verb)for file in $(CONFIG_FILES); do \
654 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
655 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
656 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
657 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
658 else \
659 $(ECHO) Error: cannot find config file $${file}. ; \
660 fi \
661 done
662
663uninstall-local::
664 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
665 $(Verb)for file in $(CONFIG_FILES); do \
666 $(RM) -f $(PROJ_etcdir)/$${file} ; \
667 done
668endif
669
670endif
671
672###############################################################################
673# Set up variables for building libararies
674###############################################################################
675
676#---------------------------------------------------------
677# Define various command line options pertaining to the
678# libraries needed when linking. There are "Proj" libs
679# (defined by the user's project) and "LLVM" libs (defined
680# by the LLVM project).
681#---------------------------------------------------------
682
683ifdef USEDLIBS
684ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
685ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
686ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
687ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
688endif
689
690ifdef LLVMLIBS
691LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
692LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
693LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
694LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
695endif
696
697ifeq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
698ifdef LINK_COMPONENTS
699
700# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
701# clean in tools, then do a make in tools (instead of at the top level).
702$(LLVM_CONFIG):
703 @echo "*** llvm-config doesn't exist - rebuilding it."
704 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
705
706$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
707
708ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
709ProjLibsPaths += $(LLVM_CONFIG) \
710 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
711endif
712endif
713
714###############################################################################
715# Library Build Rules: Four ways to build a library
716###############################################################################
717
718#---------------------------------------------------------
719# Bytecode Module Targets:
720# If the user set MODULE_NAME then they want to build a
721# bytecode module from the sources. We compile all the
722# sources and link it together into a single bytecode
723# module.
724#---------------------------------------------------------
725
726ifdef MODULE_NAME
727ifeq ($(strip $(LLVMGCC)),)
728$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
729else
730
731Module := $(LibDir)/$(MODULE_NAME).bc
732LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir)
733
734
735ifdef EXPORTED_SYMBOL_FILE
736LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
737endif
738
739$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
740 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
741 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
742
743all-local:: $(Module)
744
745clean-local::
746ifneq ($(strip $(Module)),)
747 -$(Verb) $(RM) -f $(Module)
748endif
749
750ifdef BYTECODE_DESTINATION
751ModuleDestDir := $(BYTECODE_DESTINATION)
752else
753ModuleDestDir := $(PROJ_libdir)
754endif
755
756ifdef NO_INSTALL
757install-local::
758 $(Echo) Install circumvented with NO_INSTALL
759uninstall-local::
760 $(Echo) Uninstall circumvented with NO_INSTALL
761else
762DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
763
764install-module:: $(DestModule)
765install-local:: $(DestModule)
766
767$(DestModule): $(ModuleDestDir) $(Module)
768 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
769 $(Verb) $(DataInstall) $(Module) $(DestModule)
770
771uninstall-local::
772 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
773 -$(Verb) $(RM) -f $(DestModule)
774endif
775
776endif
777endif
778
779# if we're building a library ...
780ifdef LIBRARYNAME
781
782# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
783LIBRARYNAME := $(strip $(LIBRARYNAME))
784ifdef LOADABLE_MODULE
785LibName.LA := $(LibDir)/$(LIBRARYNAME).la
786else
787LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
788endif
789LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
790LibName.O := $(LibDir)/$(LIBRARYNAME).o
791LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
792
793#---------------------------------------------------------
794# Shared Library Targets:
795# If the user asked for a shared library to be built
796# with the SHARED_LIBRARY variable, then we provide
797# targets for building them.
798#---------------------------------------------------------
799ifdef SHARED_LIBRARY
800
801all-local:: $(LibName.LA)
802
803ifdef LINK_LIBS_IN_SHARED
804ifdef LOADABLE_MODULE
805SharedLibKindMessage := "Loadable Module"
806else
807SharedLibKindMessage := "Shared Library"
808endif
809$(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
810 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
811 $(LIBRARYNAME)$(SHLIBEXT)
812 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
813 $(LLVMLibsOptions)
814 $(Verb) $(LTInstall) $@ $(LibDir)
815else
816$(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
817 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
818 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
819 $(Verb) $(LTInstall) $@ $(LibDir)
820endif
821
822clean-local::
823ifneq ($(strip $(LibName.LA)),)
824 -$(Verb) $(RM) -f $(LibName.LA)
825endif
826
827ifdef NO_INSTALL
828install-local::
829 $(Echo) Install circumvented with NO_INSTALL
830uninstall-local::
831 $(Echo) Uninstall circumvented with NO_INSTALL
832else
833DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
834
835install-local:: $(DestSharedLib)
836
837$(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
838 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
839 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
840 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
841
842uninstall-local::
843 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
844 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
845endif
846endif
847
848#---------------------------------------------------------
849# Bytecode Library Targets:
850# If the user asked for a bytecode library to be built
851# with the BYTECODE_LIBRARY variable, then we provide
852# targets for building them.
853#---------------------------------------------------------
854ifdef BYTECODE_LIBRARY
855ifeq ($(strip $(LLVMGCC)),)
856$(warning Bytecode libraries require llvm-gcc which could not be found ****)
857else
858
859all-local:: $(LibName.BCA)
860
861ifdef EXPORTED_SYMBOL_FILE
862BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
863 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
864
865$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
866 $(LLVMToolDir)/llvm-ar
867 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
868 "(internalize)"
869 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
870 $(Verb) $(RM) -f $@
871 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
872else
873$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
874 $(LLVMToolDir)/llvm-ar
875 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
876 $(Verb) $(RM) -f $@
877 $(Verb) $(LArchive) $@ $(ObjectsBC)
878
879endif
880
881clean-local::
882ifneq ($(strip $(LibName.BCA)),)
883 -$(Verb) $(RM) -f $(LibName.BCA)
884endif
885
886ifdef BYTECODE_DESTINATION
887BytecodeDestDir := $(BYTECODE_DESTINATION)
888else
889BytecodeDestDir := $(PROJ_libdir)
890endif
891
892DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
893
894install-bytecode-local:: $(DestBytecodeLib)
895
896ifdef NO_INSTALL
897install-local::
898 $(Echo) Install circumvented with NO_INSTALL
899uninstall-local::
900 $(Echo) Uninstall circumvented with NO_INSTALL
901else
902install-local:: $(DestBytecodeLib)
903
904$(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA)
905 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
906 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
907
908uninstall-local::
909 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
910 -$(Verb) $(RM) -f $(DestBytecodeLib)
911endif
912endif
913endif
914
915#---------------------------------------------------------
916# ReLinked Library Targets:
917# If the user explicitly requests a relinked library with
918# BUILD_RELINKED, provide it. Otherwise, if they specify
919# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
920# them one.
921#---------------------------------------------------------
922ifndef BUILD_ARCHIVE
923ifndef DONT_BUILD_RELINKED
924BUILD_RELINKED = 1
925endif
926endif
927
928ifdef BUILD_RELINKED
929
930all-local:: $(LibName.O)
931
932$(LibName.O): $(ObjectsO) $(LibDir)/.dir
933 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
934 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
935
936clean-local::
937ifneq ($(strip $(LibName.O)),)
938 -$(Verb) $(RM) -f $(LibName.O)
939endif
940
941ifdef NO_INSTALL
942install-local::
943 $(Echo) Install circumvented with NO_INSTALL
944uninstall-local::
945 $(Echo) Uninstall circumvented with NO_INSTALL
946else
947DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
948
949install-local:: $(DestRelinkedLib)
950
951$(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
952 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
953 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
954
955uninstall-local::
956 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
957 -$(Verb) $(RM) -f $(DestRelinkedLib)
958endif
959endif
960
961#---------------------------------------------------------
962# Archive Library Targets:
963# If the user wanted a regular archive library built,
964# then we provide targets for building them.
965#---------------------------------------------------------
966ifdef BUILD_ARCHIVE
967
968all-local:: $(LibName.A)
969
970$(LibName.A): $(ObjectsO) $(LibDir)/.dir
971 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
972 -$(Verb) $(RM) -f $@
973 $(Verb) $(Archive) $@ $(ObjectsO)
974 $(Verb) $(Ranlib) $@
975
976clean-local::
977ifneq ($(strip $(LibName.A)),)
978 -$(Verb) $(RM) -f $(LibName.A)
979endif
980
981ifdef NO_INSTALL
982install-local::
983 $(Echo) Install circumvented with NO_INSTALL
984uninstall-local::
985 $(Echo) Uninstall circumvented with NO_INSTALL
986else
987DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
988
989install-local:: $(DestArchiveLib)
990
991$(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
992 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
993 $(Verb) $(MKDIR) $(PROJ_libdir)
994 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
995
996uninstall-local::
997 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
998 -$(Verb) $(RM) -f $(DestArchiveLib)
999endif
1000endif
1001
1002# endif LIBRARYNAME
1003endif
1004
1005###############################################################################
1006# Tool Build Rules: Build executable tool based on TOOLNAME option
1007###############################################################################
1008
1009ifdef TOOLNAME
1010
1011#---------------------------------------------------------
1012# Set up variables for building a tool.
1013#---------------------------------------------------------
1014ifdef EXAMPLE_TOOL
1015ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1016else
1017ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1018endif
1019
1020#---------------------------------------------------------
1021# Provide targets for building the tools
1022#---------------------------------------------------------
1023all-local:: $(ToolBuildPath)
1024
1025clean-local::
1026ifneq ($(strip $(ToolBuildPath)),)
1027 -$(Verb) $(RM) -f $(ToolBuildPath)
1028endif
1029
1030ifdef EXAMPLE_TOOL
1031$(ToolBuildPath): $(ExmplDir)/.dir
1032else
1033$(ToolBuildPath): $(ToolDir)/.dir
1034endif
1035
1036$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1037 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1038 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1039 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1040 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1041 $(StripWarnMsg)
1042
1043ifdef NO_INSTALL
1044install-local::
1045 $(Echo) Install circumvented with NO_INSTALL
1046uninstall-local::
1047 $(Echo) Uninstall circumvented with NO_INSTALL
1048else
1049DestTool = $(PROJ_bindir)/$(TOOLNAME)
1050
1051install-local:: $(DestTool)
1052
1053$(DestTool): $(PROJ_bindir) $(ToolBuildPath)
1054 $(Echo) Installing $(BuildMode) $(DestTool)
1055 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1056
1057uninstall-local::
1058 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1059 -$(Verb) $(RM) -f $(DestTool)
1060endif
1061endif
1062
1063###############################################################################
1064# Object Build Rules: Build object files based on sources
1065###############################################################################
1066
1067# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1068ifeq ($(OS),HP-UX)
1069 DISABLE_AUTO_DEPENDENCIES=1
1070endif
1071
1072ifdef SHARED_LIBRARY
1073PIC_FLAG = "(PIC)"
1074MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1075MAYBE_PIC_Compile.C = $(LTCompile.C)
1076else
1077MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1078MAYBE_PIC_Compile.C = $(Compile.C)
1079endif
1080
1081# Provide rule sets for when dependency generation is enabled
1082ifndef DISABLE_AUTO_DEPENDENCIES
1083
1084#---------------------------------------------------------
1085# Create .lo files in the ObjDir directory from the .cpp and .c files...
1086#---------------------------------------------------------
1087
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001088DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1089 -MT "$(ObjDir)/$*.lo" -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1090
1091# If the build succeeded, move the dependency file over. If it failed, put an
1092# empty file there.
1093DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1094 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1095
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1097 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001098 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1099 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001100
1101$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1102 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001103 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1104 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001105
1106$(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1107 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001108 $(Verb) if $(MAYBE_PIC_Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1109 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110
1111#---------------------------------------------------------
1112# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1113#---------------------------------------------------------
1114
1115$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1116 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1117 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1118 $< -o $@ -S -emit-llvm ; \
1119 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1120 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1121 $(call UPGRADE_MSG,$@)
1122 $(call UPGRADE_LL,$@)
1123
1124$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1125 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1126 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1127 $< -o $@ -S -emit-llvm ; \
1128 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1129 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1130 $(call UPGRADE_MSG,$@)
1131 $(call UPGRADE_LL,$@)
1132
1133$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1134 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1135 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1136 $< -o $@ -S -emit-llvm ; \
1137 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1138 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1139 $(call UPGRADE_MSG,$@)
1140 $(call UPGRADE_LL,$@)
1141
1142# Provide alternate rule sets if dependencies are disabled
1143else
1144
1145$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1146 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1147 $(MAYBE_PIC_Compile.CXX) $< -o $@
1148
1149$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1150 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1151 $(MAYBE_PIC_Compile.CXX) $< -o $@
1152
1153$(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1154 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1155 $(MAYBE_PIC_Compile.C) $< -o $@
1156
1157$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1158 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1159 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1160 $(call UPGRADE_MSG,$@)
1161 $(call UPGRADE_LL,$@)
1162
1163$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1164 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1165 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1166 $(call UPGRADE_MSG,$@)
1167 $(call UPGRADE_LL,$@)
1168
1169$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1170 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1171 $(BCCompile.C) $< -o $@ -S -emit-llvm
1172 $(call UPGRADE_MSG,@)
1173 $(call UPGRADE_LL,@)
1174
1175endif
1176
1177
1178## Rules for building preprocessed (.i/.ii) outputs.
1179$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1180 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1181 $(Verb) $(Preprocess.CXX) $< -o $@
1182
1183$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1184 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1185 $(Verb) $(Preprocess.CXX) $< -o $@
1186
1187$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1188 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1189 $(Verb) $(Preprocess.C) $< -o $@
1190
1191
1192$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1193 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1194 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1195
1196$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1197 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1198 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1199
1200$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1201 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1202 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1203
1204
1205# make the C and C++ compilers strip debug info out of bytecode libraries.
1206ifdef DEBUG_RUNTIME
1207$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1208 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1209 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1210else
1211$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1212 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1213 $(Verb) $(LLVMAS) $< -o - | \
1214 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1215endif
1216
1217
1218#---------------------------------------------------------
1219# Provide rule to build .bc files from .ll sources,
1220# regardless of dependencies
1221#---------------------------------------------------------
1222$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1223 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1224 $(Verb) $(LLVMAS) $< -f -o $@
1225
1226###############################################################################
1227# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1228###############################################################################
1229
1230ifdef TARGET
1231
1232TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1233 $(LLVM_SRC_ROOT)/lib/Target/Target.td \
1234 $(LLVM_SRC_ROOT)/lib/Target/TargetCallingConv.td \
1235 $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1236 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1237 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1238INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1239INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1240.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1241
1242# All of these files depend on tblgen and the .td files.
1243$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1244
1245# INCFiles rule: All of the tblgen generated files are emitted to
1246# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1247# us to only "touch" the real file if the contents of it change. IOW, if
1248# tblgen is modified, all of the .inc.tmp files are regereated, but no
1249# dependencies of the .inc files are, unless the contents of the .inc file
1250# changes.
1251$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1252 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1253
1254$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1255$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1256 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001257 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001258
1259$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1260$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1261 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001262 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001263
1264$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1265$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1266 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001267 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001268
1269$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1270$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1271 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001272 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001273
1274$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1275$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1276 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001277 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278
1279$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1280$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1281 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001282 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001283
1284$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1285$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1286 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001287 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001288
1289$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1290$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1291 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001292 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001293
1294$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1295$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1296 $(Echo) "Building $(<F) instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001297 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001298
1299$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1300$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1301 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001302 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001303
1304$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1305$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1306 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001307 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001308
1309clean-local::
1310 -$(Verb) $(RM) -f $(INCFiles)
1311
1312endif
1313
1314###############################################################################
1315# LEX AND YACC: Provide rules for generating sources with lex and yacc
1316###############################################################################
1317
1318#---------------------------------------------------------
1319# Provide rules for generating a .cpp source file from
1320# (f)lex input sources.
1321#---------------------------------------------------------
1322
1323LexFiles := $(filter %.l,$(Sources))
1324
1325ifneq ($(LexFiles),)
1326
1327# Cancel built-in rules for lex
1328%.c: %.l
1329%.cpp: %.l
1330
1331all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1332
1333# Note the extra sed filtering here, used to cut down on the warnings emited
1334# by GCC. The last line is a gross hack to work around flex aparently not
1335# being able to resize the buffer on a large token input. Currently, for
1336# uninitialized string buffers in LLVM we can generate very long tokens, so
1337# this is a hack around it.
1338# FIXME. (f.e. char Buffer[10000] )
1339$(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1340 $(Echo) Flexing $*.l
1341 $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1342 $(SED) 's/void yyunput/inline void yyunput/' | \
1343 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1344 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1345 > $(PROJ_SRC_DIR)/$*.cpp
1346
1347# IFF the .l file has changed since it was last checked into CVS, copy the .l
1348# file to .l.cvs and the generated .cpp file to .cpp.cvs. We use this mechanism
1349# so that people without flex can build LLVM by copying the .cvs files to the
1350# source location and building them.
1351$(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1352$(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1353 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1354 ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1355
1356$(LexFiles:%.l=$(ObjDir)/%.o) : \
1357$(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1358
1359clean-local::
1360 -$(Verb) $(RM) -f $(LexOutput)
1361
1362endif
1363
1364#---------------------------------------------------------
1365# Provide rules for generating a .cpp and .h source files
1366# from yacc (bison) input sources.
1367#---------------------------------------------------------
1368
1369YaccFiles := $(filter %.y,$(Sources))
1370ifneq ($(YaccFiles),)
1371
1372.PRECIOUS: $(YaccOutput)
1373
1374all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1375
1376# Cancel built-in rules for yacc
1377%.c: %.y
1378%.cpp: %.y
1379%.h: %.y
1380
1381# Rule for building the bison based parsers...
1382ifneq ($(BISON),)
1383$(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1384 $(Echo) "Bisoning $*.y"
1385 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1386 $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1387 $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1388
1389# IFF the .y file has changed since it was last checked into CVS, copy the .y
1390# file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs. We use this
1391# mechanism so that people without flex can build LLVM by copying the .cvs files
1392# to the source location and building them.
1393$(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1394$(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1395 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1396 ($(CP) $< $@; \
1397 $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1398 $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1399
1400else
1401$(PROJ_SRC_DIR)/%.cpp : $(PROJ_SRC_DIR)/%.cpp.cvs
1402 $(Echo) "Bison of $*.y SKIPPED, bison not found -- copying .cpp.cvs"
1403 $(Verb)$(CP) $(PROJ_SRC_DIR)/$*.cpp.cvs $(PROJ_SRC_DIR)/$*.cpp
1404
1405$(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.h.cvs
1406 $(Echo) "Bison of $*.y SKIPPED, bison not found -- copying .h.cvs"
1407 $(Verb)$(CP) $(PROJ_SRC_DIR)/$*.h.cvs $(PROJ_SRC_DIR)/$*.h
1408endif
1409
1410
1411$(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1412
1413YaccOutput := $(YaccFiles:%.y=%.output)
1414
1415clean-local::
1416 -$(Verb) $(RM) -f $(YaccOutput)
1417endif
1418
1419###############################################################################
1420# OTHER RULES: Other rules needed
1421###############################################################################
1422
1423# To create postscript files from dot files...
1424ifneq ($(DOT),false)
1425%.ps: %.dot
1426 $(DOT) -Tps < $< > $@
1427else
1428%.ps: %.dot
1429 $(Echo) "Cannot build $@: The program dot is not installed"
1430endif
1431
1432# This rules ensures that header files that are removed still have a rule for
1433# which they can be "generated." This allows make to ignore them and
1434# reproduce the dependency lists.
1435%.h:: ;
1436%.hpp:: ;
1437
1438# Define clean-local to clean the current directory. Note that this uses a
1439# very conservative approach ensuring that empty variables do not cause
1440# errors or disastrous removal.
1441clean-local::
1442ifneq ($(strip $(ObjDir)),)
1443 -$(Verb) $(RM) -rf $(ObjDir)
1444endif
1445 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1446ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1447 -$(Verb) $(RM) -f *$(SHLIBEXT)
1448endif
1449
1450clean-all-local::
1451 -$(Verb) $(RM) -rf Debug Release Profile
1452
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001453
1454###############################################################################
1455# DEPENDENCIES: Include the dependency files if we should
1456###############################################################################
1457ifndef DISABLE_AUTO_DEPENDENCIES
1458
1459# If its not one of the cleaning targets
1460ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS)))),)
1461
1462# Get the list of dependency files
1463DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1464DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1465
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001466-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001467
1468endif
1469
1470endif
1471
1472###############################################################################
1473# CHECK: Running the test suite
1474###############################################################################
1475
1476check::
1477 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1478 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1479 $(EchoCmd) Running test suite ; \
1480 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1481 TESTSUITE=$(TESTSUITE) ; \
1482 else \
1483 $(EchoCmd) No Makefile in test directory ; \
1484 fi ; \
1485 else \
1486 $(EchoCmd) No test directory ; \
1487 fi
1488
1489###############################################################################
1490# DISTRIBUTION: Handle construction of a distribution tarball
1491###############################################################################
1492
1493#------------------------------------------------------------------------
1494# Define distribution related variables
1495#------------------------------------------------------------------------
1496DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1497DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1498TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1499DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1500DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1501DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1502DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1503 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1504 Makefile.config.in configure autoconf
1505DistOther := $(notdir $(wildcard \
1506 $(PROJ_SRC_DIR)/*.h \
1507 $(PROJ_SRC_DIR)/*.td \
1508 $(PROJ_SRC_DIR)/*.def \
1509 $(PROJ_SRC_DIR)/*.ll \
1510 $(PROJ_SRC_DIR)/*.in))
1511DistSubDirs := $(SubDirs)
1512DistSources = $(Sources) $(EXTRA_DIST)
1513DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1514
1515#------------------------------------------------------------------------
1516# We MUST build distribution with OBJ_DIR != SRC_DIR
1517#------------------------------------------------------------------------
1518ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1519dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1520 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1521
1522else
1523
1524#------------------------------------------------------------------------
1525# Prevent attempt to run dist targets from anywhere but the top level
1526#------------------------------------------------------------------------
1527ifneq ($(LEVEL),.)
1528dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1529 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1530else
1531
1532#------------------------------------------------------------------------
1533# Provide the top level targets
1534#------------------------------------------------------------------------
1535
1536dist-gzip:: $(DistTarGZip)
1537
1538$(DistTarGZip) : $(TopDistDir)/.makedistdir
1539 $(Echo) Packing gzipped distribution tar file.
1540 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1541 $(GZIP) -c > "$(DistTarGZip)"
1542
1543dist-bzip2:: $(DistTarBZ2)
1544
1545$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1546 $(Echo) Packing bzipped distribution tar file.
1547 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1548 $(BZIP2) -c >$(DistTarBZ2)
1549
1550dist-zip:: $(DistZip)
1551
1552$(DistZip) : $(TopDistDir)/.makedistdir
1553 $(Echo) Packing zipped distribution file.
1554 $(Verb) rm -f $(DistZip)
1555 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1556
1557dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1558 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1559
1560DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1561
1562dist-check:: $(DistTarGZip)
1563 $(Echo) Checking distribution tar file.
1564 $(Verb) if test -d $(DistCheckDir) ; then \
1565 $(RM) -rf $(DistCheckDir) ; \
1566 fi
1567 $(Verb) $(MKDIR) $(DistCheckDir)
1568 $(Verb) cd $(DistCheckDir) && \
1569 $(MKDIR) $(DistCheckDir)/build && \
1570 $(MKDIR) $(DistCheckDir)/install && \
1571 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1572 cd build && \
1573 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1574 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1575 $(MAKE) all && \
1576 $(MAKE) check && \
1577 $(MAKE) install && \
1578 $(MAKE) uninstall && \
1579 $(MAKE) dist-clean && \
1580 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1581
1582dist-clean::
1583 $(Echo) Cleaning distribution files
1584 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1585 $(DistCheckDir)
1586
1587endif
1588
1589#------------------------------------------------------------------------
1590# Provide the recursive distdir target for building the distribution directory
1591#------------------------------------------------------------------------
1592distdir: $(DistDir)/.makedistdir
1593$(DistDir)/.makedistdir: $(DistSources)
1594 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1595 if test -d "$(DistDir)" ; then \
1596 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1597 exit 1 ; \
1598 fi ; \
1599 $(EchoCmd) Removing old $(DistDir) ; \
1600 $(RM) -rf $(DistDir); \
1601 $(EchoCmd) Making 'all' to verify build ; \
1602 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1603 fi
1604 $(Echo) Building Distribution Directory $(DistDir)
1605 $(Verb) $(MKDIR) $(DistDir)
1606 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1607 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1608 for file in $(DistFiles) ; do \
1609 case "$$file" in \
1610 $(PROJ_SRC_DIR)/*) \
1611 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1612 ;; \
1613 $(PROJ_SRC_ROOT)/*) \
1614 file=`echo "$$file" | \
1615 sed "s#^$$srcrootstrip/##"` \
1616 ;; \
1617 esac; \
1618 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1619 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1620 from_dir="$(PROJ_SRC_DIR)" ; \
1621 elif test -f "$$file" || test -d "$$file" ; then \
1622 from_dir=. ; \
1623 fi ; \
1624 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1625 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1626 to_dir="$(DistDir)/$$dir"; \
1627 $(MKDIR) "$$to_dir" ; \
1628 else \
1629 to_dir="$(DistDir)"; \
1630 fi; \
1631 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1632 if test -n "$$mid_dir" ; then \
1633 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1634 fi ; \
1635 if test -d "$$from_dir/$$file"; then \
1636 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1637 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1638 cd $(PROJ_SRC_DIR) ; \
1639 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1640 ( cd $$to_dir ; $(TAR) xf - ) ; \
1641 cd $(PROJ_OBJ_DIR) ; \
1642 else \
1643 cd $$from_dir ; \
1644 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1645 ( cd $$to_dir ; $(TAR) xf - ) ; \
1646 cd $(PROJ_OBJ_DIR) ; \
1647 fi; \
1648 elif test -f "$$from_dir/$$file" ; then \
1649 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1650 elif test -L "$$from_dir/$$file" ; then \
1651 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1652 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1653 $(EchoCmd) "===== WARNING: Distribution Source " \
1654 "$$from_dir/$$file Not Found!" ; \
1655 elif test "$(Verb)" != '@' ; then \
1656 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1657 fi; \
1658 done
1659 $(Verb) for subdir in $(DistSubDirs) ; do \
1660 if test "$$subdir" \!= "." ; then \
1661 new_distdir="$(DistDir)/$$subdir" ; \
1662 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1663 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1664 DistDir="$$new_distdir" distdir ) || exit 1; \
1665 fi; \
1666 done
1667 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1668 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1669 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1670 -name .svn \) -print` ;\
1671 $(MAKE) dist-hook ; \
1672 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1673 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1674 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1675 -o ! -type d ! -perm -444 -exec \
1676 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1677 || chmod -R a+r $(DistDir) ; \
1678 fi
1679
1680# This is invoked by distdir target, define it as a no-op to avoid errors if not
1681# defined by user.
1682dist-hook::
1683
1684endif
1685
1686###############################################################################
1687# TOP LEVEL - targets only to apply at the top level directory
1688###############################################################################
1689
1690ifeq ($(LEVEL),.)
1691
1692#------------------------------------------------------------------------
1693# Install support for the project's include files:
1694#------------------------------------------------------------------------
1695ifdef NO_INSTALL
1696install-local::
1697 $(Echo) Install circumvented with NO_INSTALL
1698uninstall-local::
1699 $(Echo) Uninstall circumvented with NO_INSTALL
1700else
1701install-local::
1702 $(Echo) Installing include files
1703 $(Verb) $(MKDIR) $(PROJ_includedir)
1704 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1705 cd $(PROJ_SRC_ROOT)/include && \
1706 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1707 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1708 grep -v .svn` ; do \
1709 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1710 if test \! -d "$$instdir" ; then \
1711 $(EchoCmd) Making install directory $$instdir ; \
1712 $(MKDIR) $$instdir ;\
1713 fi ; \
1714 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1715 done ; \
1716 fi
1717ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1718 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1719 cd $(PROJ_OBJ_ROOT)/include && \
1720 for hdr in `find . -type f -print | grep -v CVS` ; do \
1721 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1722 done ; \
1723 fi
1724endif
1725
1726uninstall-local::
1727 $(Echo) Uninstalling include files
1728 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1729 cd $(PROJ_SRC_ROOT)/include && \
1730 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1731 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1732 -o -name '*.in' ')' -print ')' | \
1733 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1734 cd $(PROJ_SRC_ROOT)/include && \
1735 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1736 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1737 fi
1738endif
1739endif
1740
1741check-line-length:
1742 @egrep -n '.{81}' $(Sources)
1743
1744check-for-tabs:
1745 @egrep -n ' ' $(Sources)
1746check-footprint:
1747 @ls -l $(LibDir) | awk '\
1748 BEGIN { sum = 0; } \
1749 { sum += $$5; } \
1750 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1751 @ls -l $(ToolDir) | awk '\
1752 BEGIN { sum = 0; } \
1753 { sum += $$5; } \
1754 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1755#------------------------------------------------------------------------
1756# Print out the directories used for building
1757#------------------------------------------------------------------------
1758printvars::
1759 $(Echo) "BuildMode : " '$(BuildMode)'
1760 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1761 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1762 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1763 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1764 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1765 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1766 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1767 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1768 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1769 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1770 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1771 $(Echo) "UserTargets : " '$(UserTargets)'
1772 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1773 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1774 $(Echo) "ObjDir : " '$(ObjDir)'
1775 $(Echo) "LibDir : " '$(LibDir)'
1776 $(Echo) "ToolDir : " '$(ToolDir)'
1777 $(Echo) "ExmplDir : " '$(ExmplDir)'
1778 $(Echo) "Sources : " '$(Sources)'
1779 $(Echo) "TDFiles : " '$(TDFiles)'
1780 $(Echo) "INCFiles : " '$(INCFiles)'
1781 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1782 $(Echo) "PreConditions: " '$(PreConditions)'
1783 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1784 $(Echo) "Compile.C : " '$(Compile.C)'
1785 $(Echo) "Archive : " '$(Archive)'
1786 $(Echo) "YaccFiles : " '$(YaccFiles)'
1787 $(Echo) "LexFiles : " '$(LexFiles)'
1788 $(Echo) "Module : " '$(Module)'
1789 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1790 $(Echo) "SubDirs : " '$(SubDirs)'
1791 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1792 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'