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