Slightly simplify make logic
[oota-llvm.git] / Makefile.rules
1 #===-- Makefile.common - Common make rules for LLVM -------*- makefile -*--====
2 #
3 # This file is included by all of the LLVM makefiles.  This file defines common
4 # rules to do things like compile a .cpp file or generate dependency info.
5 # These are platform dependent, so this is the file used to specify these
6 # system dependent operations.
7 #
8 # The following functionality can be set by setting incoming variables.
9 # The variable $(LEVEL) *must* be set:
10 #
11 # 1. LEVEL - The level of the current subdirectory from the top of the 
12 #    MagicStats view.  This level should be expressed as a path, for 
13 #    example, ../.. for two levels deep.
14 #
15 # 2. DIRS - A list of subdirectories to be built.  Fake targets are set up
16 #    so that each of the targets "all", "install", and "clean" each build
17 #    the subdirectories before the local target.  DIRS are guaranteed to be
18 #    built in order.
19 #
20 # 3. PARALLEL_DIRS - A list of subdirectories to be built, but that may be
21 #    built in any order.  All DIRS are built in order before PARALLEL_DIRS are
22 #    built, which are then built in any order.
23 #
24 # 4. Source - If specified, this sets the source code filenames.  If this
25 #    is not set, it defaults to be all of the .cpp, .c, .y, and .l files 
26 #    in the current directory.  Also, if you want to build files in addition
27 #    to the local files, you can use the ExtraSource variable
28 #
29 # 5. SourceDir - If specified, this specifies a directory that the source files
30 #    are in, if they are not in the current directory.  This should include a
31 #    trailing / character.
32 #
33 # 6. LLVM_SRC_ROOT - If specified, points to the top of the LLVM source tree.
34 #
35 # 8. BUILD_SRC_DIR - The directory which contains the current set of Makefiles
36 #    and usually the source code too (unless SourceDir is set).
37 #
38 # 9. BUILD_SRC_ROOT - The root directory of the source code being compiled.
39 #
40 # 10. BUILD_OBJ_DIR - The directory where object code should be placed.
41 #
42 # 11. BUILD_OBJ_ROOT - The root directory for where object code should be
43 #     placed.
44 #
45 # For building,
46 #       LLVM, LLVM_SRC_ROOT = BUILD_SRC_ROOT
47 #
48 #===-----------------------------------------------------------------------====
49
50 #
51 # Configuration file to set paths specific to local installation of LLVM
52
53 ifdef LLVM_SRC_ROOT
54 include $(LLVM_SRC_ROOT)/Makefile.config
55 else
56 include $(LEVEL)/Makefile.config
57 endif
58
59 ###########################################################################
60 # Directory Configuration
61 #       This section of the Makefile determines what is where.  To be
62 #       specific, there are several locations that need to be defined:
63 #
64 #       o LLVM_SRC_ROOT  : The root directory of the LLVM source code.
65 #       o LLVM_OBJ_ROOT  : The root directory containing the built LLVM code.
66 #
67 #       o BUILD_SRC_DIR  : The directory containing the code to build.
68 #       o BUILD_SRC_ROOT : The root directory of the code to build.
69 #
70 #       o BUILD_OBJ_DIR  : The directory in which compiled code will be placed.
71 #       o BUILD_OBJ_ROOT : The root directory in which compiled code is placed.
72 #
73 ###########################################################################
74
75 #
76 # Set the source build directory.  That is almost always the current directory.
77 #
78 ifndef BUILD_SRC_DIR
79 BUILD_SRC_DIR = $(shell pwd)
80 endif
81
82 #
83 # Set the source root directory.
84 #
85 ifndef BUILD_SRC_ROOT
86 BUILD_SRC_ROOT = $(shell cd $(BUILD_SRC_DIR)/$(LEVEL); pwd)
87 endif
88
89 #
90 # Determine the path of the source tree relative from $HOME (the mythical
91 # home directory).
92 #
93 HOME_OBJ_ROOT := $(OBJ_ROOT)$(patsubst $(HOME)%,%,$(BUILD_SRC_ROOT))
94
95 #
96 # Set the object build directory.  Its location depends upon the source path
97 # and where object files should go.
98 #
99 ifndef BUILD_OBJ_DIR
100 ifeq ($(OBJ_ROOT),.)
101 BUILD_OBJ_DIR = $(BUILD_SRC_DIR)
102 else
103 BUILD_OBJ_DIR := $(HOME_OBJ_ROOT)$(patsubst $(BUILD_SRC_ROOT)%,%,$(BUILD_SRC_DIR))
104 endif
105 endif
106
107 #
108 # Set the root of the object directory.
109 #
110 ifndef BUILD_OBJ_ROOT
111 ifeq ($(OBJ_ROOT),.)
112 BUILD_OBJ_ROOT = $(BUILD_SRC_ROOT)
113 else
114 BUILD_OBJ_ROOT := $(HOME_OBJ_ROOT)
115 endif
116 endif
117
118 #
119 # Set the LLVM object directory.
120 #
121 ifndef LLVM_OBJ_ROOT
122 ifdef LLVM_SRC_ROOT
123 LLVM_OBJ_ROOT := $(shell cd $(BUILD_OBJ_DIR); cd $(LLVM_SRC_ROOT); pwd)
124 else
125 LLVM_OBJ_ROOT := $(shell cd $(BUILD_OBJ_ROOT); pwd)
126 endif
127 endif
128
129 #
130 # Set the LLVM source directory.
131 # It is typically the root directory of what we're compiling now.
132 #
133 ifndef LLVM_SRC_ROOT
134 LLVM_SRC_ROOT := $(BUILD_SRC_ROOT)
135 endif
136
137 ###########################################################################
138 # Default Targets:
139 #       The following targets are the standard top level targets for
140 #       building.
141 ###########################################################################
142
143 ifdef SHARED_LIBRARY
144 # if SHARED_LIBRARY is specified, the default is to build the dynamic lib
145 all:: dynamic
146 endif
147
148 ifdef BYTECODE_LIBRARY
149 # if BYTECODE_LIBRARY is specified, the default is to build the bytecode lib
150 all:: bytecodelib
151 install:: bytecodelib-install
152 endif
153
154 # Default Rule:  Make sure it's also a :: rule
155 all ::
156
157 # Default for install is to at least build everything...
158 install ::
159
160 # Default rule for test.  It ensures everything has a test rule
161 test::
162
163 # Default rule for building only bytecode.
164 bytecode::
165
166 # Print out the directories used for building
167 prdirs::
168         @echo "Home Offset      : " $(HOME_OBJ_ROOT)
169         @echo "Build Source Root: " $(BUILD_SRC_ROOT)
170         @echo "Build Source Dir : " $(BUILD_SRC_DIR)
171         @echo "Build Object Root: " $(BUILD_OBJ_ROOT)
172         @echo "Build Object Dir : " $(BUILD_OBJ_DIR)
173         @echo "LLVM  Source Root: " $(LLVM_SRC_ROOT)
174         @echo "LLVM  Object Root: " $(LLVM_OBJ_ROOT)
175
176 ###########################################################################
177 # Suffixes and implicit rules:
178 #       Empty out the list of suffixes, generate a list that is only
179 #       used by this Makefile, and cancel useless implicit rules.   This
180 #       will hopefully speed up compilation a little bit.
181 ###########################################################################
182 .SUFFIXES:
183 .SUFFIXES: .c .cpp .h .hpp .y .l
184 .SUFFIXES: .lo .o .a .so .bc
185 .SUFFIXES: .ps .dot .d
186
187 #
188 # Mark all of these targets as phony.  This will hopefully speed up builds
189 # slightly since GNU Make will not try to find implicit rules for targets
190 # which are marked as Phony.
191 #
192 .PHONY: all dynamic bytecodelib bytecodelib-install
193 .PHONY: clean distclean install test bytecode prdirs
194
195 ###########################################################################
196 # Miscellaneous paths and commands:
197 #       This section defines various configuration macros, such as where
198 #       to find burg, tblgen, and libtool.
199 ###########################################################################
200
201 #--------------------------------------------------------------------
202 # Variables derived from configuration options... 
203 #--------------------------------------------------------------------
204
205 #BinInstDir=/usr/local/bin
206 #LibInstDir=/usr/local/lib/xxx
207 #DocInstDir=/usr/doc/xxx
208
209 BURG_OPTS = -I
210
211 ifdef ENABLE_PROFILING
212   ENABLE_OPTIMIZED = 1
213   CONFIGURATION := Profile
214 else
215   ifdef ENABLE_OPTIMIZED
216     CONFIGURATION := Release
217   else
218     CONFIGURATION := Debug
219   endif
220 endif
221
222 #
223 # Enable this for profiling support with 'gprof'
224 # This automatically enables optimized builds.
225 #
226 ifdef ENABLE_PROFILING
227   PROFILE = -pg
228 endif
229
230 ###########################################################################
231 # Library Locations:
232 #       These variables describe various library locations:
233 #
234 #       DEST* = Location of where libraries that are built will be placed.
235 #       LLVM* = Location of LLVM libraries used for linking.
236 #       PROJ* = Location of previously built libraries used for linking.
237 ###########################################################################
238
239 # Libraries that are being built
240 DESTLIBDEBUG    := $(BUILD_OBJ_ROOT)/lib/Debug
241 DESTLIBRELEASE  := $(BUILD_OBJ_ROOT)/lib/Release
242 DESTLIBPROFILE  := $(BUILD_OBJ_ROOT)/lib/Profile
243 DESTLIBBYTECODE := $(BUILD_OBJ_ROOT)/lib/Bytecode
244 DESTLIBCURRENT  := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
245
246 # LLVM libraries used for linking
247 LLVMLIBDEBUGSOURCE    := $(LLVM_OBJ_ROOT)/lib/Debug
248 LLVMLIBRELEASESOURCE  := $(LLVM_OBJ_ROOT)/lib/Release
249 LLVMLIBPROFILESOURCE  := $(LLVM_OBJ_ROOT)/lib/Profile
250 LLVMLIBCURRENTSOURCE  := $(LLVM_OBJ_ROOT)/lib/$(CONFIGURATION)
251
252 # Libraries that were built that will now be used for linking
253 PROJLIBDEBUGSOURCE    := $(BUILD_OBJ_ROOT)/lib/Debug
254 PROJLIBRELEASESOURCE  := $(BUILD_OBJ_ROOT)/lib/Release
255 PROJLIBPROFILESOURCE  := $(BUILD_OBJ_ROOT)/lib/Profile
256 PROJLIBCURRENTSOURCE  := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
257
258 ###########################################################################
259 # Tool Locations
260 #       These variables describe various tool locations:
261 #
262 #       DEST* = Location of where tools that are built will be placed.
263 #       LLVM* = Location of LLVM tools used for building.
264 #       PROJ* = Location of previously built tools used for linking.
265 ###########################################################################
266
267 DESTTOOLDEBUG   := $(BUILD_OBJ_ROOT)/tools/Debug
268 DESTTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release
269 DESTTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile
270 DESTTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
271
272 LLVMTOOLDEBUG   := $(LLVM_OBJ_ROOT)/tools/Debug
273 LLVMTOOLRELEASE := $(LLVM_OBJ_ROOT)/tools/Release
274 LLVMTOOLPROFILE := $(LLVM_OBJ_ROOT)/tools/Profile
275 LLVMTOOLCURRENT := $(LLVM_OBJ_ROOT)/tools/$(CONFIGURATION)
276
277 PROJTOOLDEBUG   := $(BUILD_OBJ_ROOT)/tools/Debug
278 PROJTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release
279 PROJTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile
280 PROJTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
281
282 #
283 # Libtool is found in the current directory.
284 #
285 LIBTOOL := $(LLVM_SRC_ROOT)/mklib
286
287 #
288 # If we're not building a shared library, use the disable-shared tag with
289 # libtool.  This will disable the building of objects for shared libraries and
290 # only generate static library objects.
291 #
292 # For dynamic libraries, we'll take the performance hit for now, since we
293 # almost never build them.
294 #
295 # This should speed up compilation and require no modifications to future
296 # versions of libtool.
297 #
298 ifndef SHARED_LIBRARY
299 LIBTOOL += --tag=disable-shared
300 endif
301
302 #
303 # Verbosity levels
304 #
305 ifndef VERBOSE
306 VERB := @
307 LIBTOOL += --silent
308 endif
309
310 ###########################################################################
311 # Miscellaneous paths and commands (part deux):
312 #       This section defines various configuration macros, such as where
313 #       to find burg, tblgen, and libtool.
314 ###########################################################################
315
316 #--------------------------------------------------------------------------
317 # Utilities used while building the LLVM tree, which live in the utils dir
318 #
319 BURG    := $(LLVMTOOLCURRENT)/burg
320 RunBurg := $(BURG) $(BURG_OPTS)
321 TBLGEN  := $(LLVMTOOLCURRENT)/tblgen
322
323 #--------------------------------------------------------------------------
324 # The LLVM GCC front-end in C and C++ flavors
325 #
326 LLVMGCC := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/gcc
327 LCC1    := $(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/cc1
328 LLVMGXX := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/g++
329 LCC1XX  := $(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/cc1plus
330
331 #--------------------------------------------------------------------------
332 # Some of the compiled LLVM tools which are used for compilation of runtime
333 # libraries.
334 #
335 LLVMAS  := $(LLVMTOOLCURRENT)/llvm-as
336
337
338 ###########################################################################
339 # Compile Time Flags
340 ###########################################################################
341
342 #
343 # Include both the project headers and the LLVM headers for compilation and
344 # dependency computation.
345 #
346 CPPFLAGS += -I$(BUILD_SRC_ROOT)/include -I$(LLVM_SRC_ROOT)/include
347
348 # By default, strip symbol information from executable
349 ifndef KEEP_SYMBOLS
350 STRIP = $(PLATFORMSTRIPOPTS)
351 STRIP_WARN_MSG = "(without symbols)"
352 endif
353
354 # Allow gnu extensions...
355 CPPFLAGS += -D_GNU_SOURCE
356
357 CompileWarnings  := -Wall -W  -Wwrite-strings -Wno-unused
358 CompileCommonOpts := $(CompileWarnings) -I$(LEVEL)/include -fshort-enums
359 CompileOptimizeOpts := -O3 -DNDEBUG -finline-functions
360
361 #
362 # Compile commands with libtool.
363 #
364 Compile  := $(LIBTOOL) --mode=compile $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
365 CompileC  := $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(CompileCommonOpts)
366
367 # Compile a cpp file, don't link...
368 CompileG := $(Compile) -g  -D_DEBUG
369 CompileO := $(Compile) $(CompileOptimizeOpts) -felide-constructors -fomit-frame-pointer
370 CompileP := $(Compile) $(CompileOptimizeOpts) -felide-constructors $(PROFILE)
371
372 # Compile a c file, don't link...
373 CompileCG := $(CompileC) -g  -D_DEBUG
374 CompileCO := $(CompileC) $(CompileOptimizeOpts) -fomit-frame-pointer
375 CompileCP := $(CompileC) $(CompileOptimizeOpts) $(PROFILE)
376
377 ###########################################################################
378 # Link Time Options
379 ###########################################################################
380
381 #
382 # Link final executable
383 #       (Note that we always link with the C++ compiler).
384 #
385 Link     := $(LIBTOOL) --mode=link $(CXX)
386
387 # link both projlib and llvmlib libraries
388 LinkG    := $(Link) -g -L$(PROJLIBDEBUGSOURCE)  -L$(LLVMLIBDEBUGSOURCE) $(STRIP)
389 LinkO    := $(Link) -O3 -L$(PROJLIBRELEASESOURCE) -L$(LLVMLIBRELEASESOURCE)
390 LinkP    := $(Link) -O3 -L$(PROJLIBPROFILESOURCE) -L$(LLVMLIBPROFILESOURCE) $(PROFILE)
391
392 # Create one .o file from a bunch of .o files...
393 Relink := ${LIBTOOL} --mode=link $(CXX)
394
395 #
396 # Configure where the item being compiled should go.
397 #
398 ifdef SHARED_LIBRARY
399 Link += -rpath $(DESTLIBCURRENT)
400 endif
401
402 ifdef TOOLNAME
403 Link += -rpath $(DESTTOOLCURRENT)
404 endif
405
406 # Create dependency file from CPP file, send to stdout.
407 Depend   := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) 
408 DependC  := $(CC)  -MM -I$(LEVEL)/include $(CPPFLAGS) 
409
410 # Archive a bunch of .o files into a .a file...
411 AR       = ${AR_PATH} cq 
412
413 #----------------------------------------------------------
414
415 # Source includes all of the cpp files, and objects are derived from the
416 # source files...
417 # The local Makefile can list other Source files via ExtraSource = ...
418
419 ifndef Source
420 Source  := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
421 endif
422
423 #
424 # Libtool Objects
425 #
426 Srcs := $(sort $(notdir $(basename $(Source))))
427 Objs := $(addsuffix .lo, $(Srcs))
428 ObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(Objs))
429 ObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(Objs))
430 ObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(Objs))
431 ObjectsBC := $(addprefix $(BUILD_OBJ_DIR)/Bytecode/,$(addsuffix .bc, $(Srcs)))
432
433 #
434 # The real objects underlying the libtool objects
435 #
436 RObjs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(notdir $(basename $(Source))))))
437 RObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(RObjs))
438 RObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(RObjs))
439 RObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(RObjs))
440
441 #---------------------------------------------------------
442 # Handle the DIRS and PARALLEL_DIRS options
443 #---------------------------------------------------------
444
445 ifdef DIRS
446 all install clean test bytecode ::
447         $(VERB) for dir in ${DIRS}; do \
448                 (cd $$dir; $(MAKE) $@) || exit 1; \
449         done
450 endif
451
452 # Handle PARALLEL_DIRS
453 ifdef PARALLEL_DIRS
454 all      :: $(addsuffix /.makeall     , $(PARALLEL_DIRS))
455 install  :: $(addsuffix /.makeinstall , $(PARALLEL_DIRS))
456 clean    :: $(addsuffix /.makeclean   , $(PARALLEL_DIRS))
457 test     :: $(addsuffix /.maketest    , $(PARALLEL_DIRS))
458 bytecode :: $(addsuffix /.makebytecode, $(PARALLEL_DIRS))
459
460 %/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode:
461         $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
462 endif
463
464 # Handle directories that may or may not exist
465 ifdef OPTIONAL_DIRS
466 all install clean test bytecode ::
467         $(VERB) for dir in ${OPTIONAL_DIRS}; do \
468                 if [ -d $$dir ]; \
469                 then\
470                         (cd $$dir; $(MAKE) $@) || exit 1; \
471                 fi \
472         done
473 endif
474
475 ###########################################################################
476 # Library Build Rules:
477 #
478 #---------------------------------------------------------
479 # Handle the LIBRARYNAME option - used when building libs...
480 #---------------------------------------------------------
481 #
482 #  When libraries are built, they are allowed to optionally define the
483 #  DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
484 #  from being built for the library. This .o files may then be linked to by a
485 #  tool if the tool does not need (or want) the semantics a .a file provides
486 #  (linking in only object files that are "needed").  If a library is never to
487 #  be used in this way, it is better to define DONT_BUILD_RELINKED, and define
488 #  BUILD_ARCHIVE instead.
489 #
490 #  Some libraries must be built as .a files (libscalar for example) because if
491 #  it's built as a .o file, then all of the constituent .o files in it will be
492 #  linked into tools (for example gccas) even if they only use one of the parts
493 #  of it.  For this reason, sometimes it's useful to use libraries as .a files.
494 ###########################################################################
495
496 ifdef LIBRARYNAME
497
498 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
499 LIBRARYNAME := $(strip $(LIBRARYNAME))
500
501 LIBNAME_O    := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).so
502 LIBNAME_P    := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).so
503 LIBNAME_G    := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).so
504 LIBNAME_AO   := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).a
505 LIBNAME_AP   := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).a
506 LIBNAME_AG   := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).a
507 LIBNAME_OBJO := $(DESTLIBRELEASE)/$(LIBRARYNAME).o
508 LIBNAME_OBJP := $(DESTLIBPROFILE)/$(LIBRARYNAME).o
509 LIBNAME_OBJG := $(DESTLIBDEBUG)/$(LIBRARYNAME).o
510 LIBNAME_BC   := $(DESTLIBBYTECODE)/lib$(LIBRARYNAME).bc
511
512 #--------------------------------------------------------------------
513 # Library Targets
514 #       Modify the top level targets to build the desired libraries.
515 #--------------------------------------------------------------------
516
517 # dynamic target builds a shared object version of the library...
518 dynamic:: $(DESTLIBCURRENT)/lib$(LIBRARYNAME).so
519 bytecodelib:: $(LIBNAME_BC)
520 bytecodelib-install:: $(LLVMGCCDIR)/bytecode-libs/lib$(LIBRARYNAME).bc
521
522 $(LLVMGCCDIR)/bytecode-libs/lib$(LIBRARYNAME).bc: $(LIBNAME_BC)
523         @echo ======= Installing $(LIBRARYNAME) bytecode library =======
524         cp $< $@
525
526 # Does the library want a .o version built?
527 ifndef DONT_BUILD_RELINKED
528 all:: $(DESTLIBCURRENT)/$(LIBRARYNAME).o
529 endif
530
531 # Does the library want an archive version built?
532 ifdef BUILD_ARCHIVE
533 all:: $(DESTLIBCURRENT)/lib$(LIBRARYNAME).a
534 endif
535
536 #--------------------------------------------------------------------
537 # Rules for building libraries
538 #--------------------------------------------------------------------
539
540 LinkBCLib := $(LLVMGCC) -shared
541 ifdef EXPORTED_SYMBOL_LIST
542 LinkBCLib += -Xlinker -internalize-public-api-list=$(EXPORTED_SYMBOL_LIST)
543 else
544 LinkBCLib += -Xlinker -disable-internalize
545 endif
546
547
548 # Rule for building bytecode libraries.
549 $(LIBNAME_BC): $(ObjectsBC) $(LibSubDirs) $(DESTLIBBYTECODE)/.dir
550         @echo ======= Linking $(LIBRARYNAME) bytecode library =======
551         $(VERB) $(LinkBCLib) -o $@ $(ObjectsBC) $(LibSubDirs) $(LibLinkOpts)
552 #
553 # Rules for building dynamically linked libraries.
554 #
555 $(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
556         @echo ======= Linking $(LIBRARYNAME) dynamic release library =======
557         $(VERB) $(Link) -o $*.la $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
558         $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
559
560 $(LIBNAME_P): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
561         @echo ======= Linking $(LIBRARYNAME) dynamic profile library =======
562         $(VERB) $(Link) -o $*.la $(ObjectsP) $(LibSubDirs) $(LibLinkOpts)
563         $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
564
565 $(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
566         @echo ======= Linking $(LIBRARYNAME) dynamic debug library =======
567         $(VERB) $(Link) -o $*.la $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
568         $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
569
570 #
571 # Rules for building static archive libraries.
572 #
573 $(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
574         @echo ======= Linking $(LIBRARYNAME) archive release library =======
575         @$(RM) -f $@
576         $(VERB) $(Link) -03 -o $@ $(ObjectsO) $(LibSubDirs) -static
577
578 $(LIBNAME_AP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
579         @echo ======= Linking $(LIBRARYNAME) archive profile library =======
580         @$(RM) -f $@
581         $(VERB) $(Link) -03 $(PROFILE) -o $@ $(ObjectsP) $(LibSubDirs) -static
582
583 $(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
584         @echo ======= Linking $(LIBRARYNAME) archive debug library =======
585         @$(RM) -f $@
586         $(VERB) $(Link) -g $(STRIP) -o $@ $(ObjectsG) $(LibSubDirs) -static
587
588
589 #
590 # Rules for building .o libraries.
591 #
592 #       JTC:
593 #       Note that for this special case, we specify the actual object files
594 #       instead of their libtool counterparts.  This is because libtool
595 #       doesn't want to generate a reloadable object file unless it is given
596 #       .o files explicitly.
597 #
598 #       Note that we're making an assumption here: If we build a .lo file,
599 #       it's corresponding .o file will be placed in the same directory.
600 #
601 #       I think that is safe.
602 #
603 $(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
604         @echo "Linking $@"
605         $(VERB) $(Relink) -o $@ $(RObjectsO) $(LibSubDirs)
606
607 $(LIBNAME_OBJP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
608         @echo "Linking $@"
609         $(VERB) $(Relink) -o $@ $(RObjectsP) $(LibSubDirs)
610
611 $(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
612         @echo "Linking $@"
613         $(VERB) $(Relink) -o $@ $(RObjectsG) $(LibSubDirs)
614
615 endif
616
617 #------------------------------------------------------------------------
618 # Create a TAGS database for emacs
619 #------------------------------------------------------------------------
620
621 ifdef ETAGS
622 ifeq ($(LEVEL), .)
623 SRCDIRS := $(wildcard include lib tools)
624
625 tags:
626         $(ETAGS) -l c++ `find $(SRCDIRS) -name '*.cpp' -o -name '*.h'`
627 all:: tags
628 endif
629 else
630 tags:
631         ${ECHO} "Cannot build $@: The program etags is not installed"
632 endif
633
634 #------------------------------------------------------------------------
635 # Handle the TOOLNAME option - used when building tool executables...
636 #------------------------------------------------------------------------
637 #
638 # The TOOLNAME option should be used with a USEDLIBS variable that tells the
639 # libraries (and the order of the libs) that should be linked to the
640 # tool. USEDLIBS should contain a list of library names (some with .a extension)
641 # that are automatically linked in as .o files unless the .a suffix is added.
642 #
643 ifdef TOOLNAME
644
645 # TOOLEXENAME* - These compute the output filenames to generate...
646 TOOLEXENAME_G := $(DESTTOOLDEBUG)/$(TOOLNAME)
647 TOOLEXENAME_O := $(DESTTOOLRELEASE)/$(TOOLNAME)
648 TOOLEXENAME_P := $(DESTTOOLPROFILE)/$(TOOLNAME)
649 TOOLEXENAMES  := $(DESTTOOLCURRENT)/$(TOOLNAME)
650
651 # USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
652 PROJ_LIBS_OPTIONS   := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
653 PROJ_LIBS_OPTIONS_G := $(patsubst %.o, $(PROJLIBDEBUGSOURCE)/%.o,  $(PROJ_LIBS_OPTIONS))
654 PROJ_LIBS_OPTIONS_O := $(patsubst %.o, $(PROJLIBRELEASESOURCE)/%.o,$(PROJ_LIBS_OPTIONS))
655 PROJ_LIBS_OPTIONS_P := $(patsubst %.o, $(PROJLIBPROFILESOURCE)/%.o,$(PROJ_LIBS_OPTIONS))
656
657 LLVM_LIBS_OPTIONS   := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
658 LLVM_LIBS_OPTIONS_G := $(patsubst %.o, $(LLVMLIBDEBUGSOURCE)/%.o,  $(LLVM_LIBS_OPTIONS))
659 LLVM_LIBS_OPTIONS_O := $(patsubst %.o, $(LLVMLIBRELEASESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
660 LLVM_LIBS_OPTIONS_P := $(patsubst %.o, $(LLVMLIBPROFILESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
661
662 LIB_OPTS_G :=  $(LLVM_LIBS_OPTIONS_G) $(PROJ_LIBS_OPTIONS_G)
663 LIB_OPTS_O :=  $(LLVM_LIBS_OPTIONS_O) $(PROJ_LIBS_OPTIONS_O)
664 LIB_OPTS_P :=  $(LLVM_LIBS_OPTIONS_P) $(PROJ_LIBS_OPTIONS_P)
665
666 # USED_LIB_PATHS - Compute the path of the libraries used so that tools are
667 # rebuilt if libraries change.  This has to make sure to handle .a/.so and .o
668 # files separately.
669 #
670 STATICUSEDLIBS   := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
671 USED_LIB_PATHS_G := $(addprefix $(DESTLIBDEBUG)/, $(STATICUSEDLIBS))
672 USED_LIB_PATHS_O := $(addprefix $(DESTLIBRELEASE)/, $(STATICUSEDLIBS))
673 USED_LIB_PATHS_P := $(addprefix $(DESTLIBPROFILE)/, $(STATICUSEDLIBS))
674
675 #
676 # Libtool link options:
677 #       Ensure that all binaries have their symbols exported so that they can
678 #       by dlsym'ed.
679 #
680 LINK_OPTS := -export-dynamic $(TOOLLINKOPTS)
681
682
683
684
685
686 # Tell make that we need to rebuild subdirectories before we can link the tool.
687 # This affects things like LLI which has library subdirectories.
688 $(USED_LIB_PATHS_G) $(USED_LIB_PATHS_O) $(USED_LIB_PATHS_P): \
689         $(addsuffix /.makeall, $(PARALLEL_DIRS))
690
691 all::   $(TOOLEXENAMES)
692
693 clean::
694         $(VERB) $(RM) -f $(TOOLEXENAMES)
695
696 $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(DESTTOOLDEBUG)/.dir
697         @echo ======= Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG) =======
698         $(VERB) $(LinkG) -o $@ $(ObjectsG) $(LIB_OPTS_G) $(LINK_OPTS) $(LIBS)
699
700 $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(DESTTOOLRELEASE)/.dir
701         @echo ======= Linking $(TOOLNAME) release executable =======
702         $(VERB) $(LinkO) -o $@ $(ObjectsO) $(LIB_OPTS_O) $(LINK_OPTS) $(LIBS)
703
704 $(TOOLEXENAME_P): $(ObjectsP) $(USED_LIB_PATHS_P) $(DESTTOOLPROFILE)/.dir
705         @echo ======= Linking $(TOOLNAME) profile executable =======
706         $(VERB) $(LinkP) -o $@ $(ObjectsP) $(LIB_OPTS_P) $(LINK_OPTS) $(LIBS)
707
708 endif
709
710
711
712 #---------------------------------------------------------
713 .PRECIOUS: $(BUILD_OBJ_DIR)/Depend/.dir $(BUILD_OBJ_DIR)/Bytecode/.dir
714 .PRECIOUS: $(BUILD_OBJ_DIR)/Debug/.dir $(BUILD_OBJ_DIR)/Release/.dir
715
716 # Create .lo files in the ObjectFiles directory from the .cpp and .c files...
717 $(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Release/.dir
718         @echo "Compiling $<"
719         $(VERB) $(CompileO) $< -o $@
720
721 $(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Release/.dir
722         @echo "Compiling $<"
723         $(VERB) $(CompileCO) $< -o $@
724
725 $(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Profile/.dir
726         @echo "Compiling $<"
727         $(VERB) $(CompileP) $< -o $@
728
729 $(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Profile/.dir
730         @echo "Compiling $<"
731         $(VERB) $(CompileCP) $< -o $@
732
733 $(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Debug/.dir
734         @echo "Compiling $<"
735         $(VERB) $(CompileG) $< -o $@
736
737 $(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Debug/.dir 
738         @echo "Compiling $<"
739         $(VERB) $(CompileCG) $< -o $@
740
741 $(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Bytecode/.dir $(LCC1XX)
742         @echo "Compiling $< to bytecode"
743         $(VERB) $(LLVMGXX) $(CompileWarnings) $(CPPFLAGS) -c $< -o $@
744
745 $(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Bytecode/.dir $(LCC1)
746         @echo "Compiling $< to bytecode"
747         $(VERB) $(LLVMGCC) $(CompileWarnings) $(CPPFLAGS) -c $< -o $@
748
749 $(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.ll $(BUILD_OBJ_DIR)/Bytecode/.dir $(LLVMAS)
750         @echo "Compiling $< to bytecode"
751         $(VERB) $(LLVMAS) $< -f -o $@
752
753
754 #
755 # Rules for building lex/yacc files
756 #
757 LEX_FILES   = $(filter %.l, $(Source))
758 LEX_OUTPUT  = $(LEX_FILES:%.l=%.cpp)
759 YACC_FILES  = $(filter %.y, $(Source))
760 YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
761 .PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT)
762
763 # Create a .cpp source file from a flex input file... this uses sed to cut down
764 # on the warnings emited by GCC...
765 #
766 # The last line is a gross hack to work around flex aparently not being able to
767 # resize the buffer on a large token input.  Currently, for uninitialized string
768 # buffers in LLVM we can generate very long tokens, so this is a hack around it.
769 # FIXME.  (f.e. char Buffer[10000] )
770 #
771 %.cpp: %.l
772         @echo Flex\'ing $<...
773         $(VERB) $(FLEX) -t $< | \
774           $(SED) '/^find_rule/d' | \
775           $(SED) 's/void yyunput/inline void yyunput/' | \
776           $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
777           $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
778               > $@.tmp
779         $(VERB) cmp -s $@ $@.tmp > /dev/null || ${MV} -f $@.tmp $@
780         @# remove the output of flex if it didn't get moved over...
781         @rm -f $@.tmp
782
783 # Rule for building the bison parsers...
784 %.c: %.y     # Cancel built-in rules for yacc
785 %.h: %.y     # Cancel built-in rules for yacc
786 %.cpp %.h : %.y
787         @echo Bison\'ing $<...
788         $(VERB) $(BISON) -v -d -p $(<:%Parser.y=%) $*.y
789         $(VERB) cmp -s $*.tab.c $*.cpp > /dev/null || ${MV} -f $*.tab.c $*.cpp
790         $(VERB) cmp -s $*.tab.h $*.h   > /dev/null || ${MV} -f $*.tab.h $*.h
791         @# If the files were not updated, don't leave them lying around...
792         @rm -f $*.tab.c $*.tab.h
793
794 # To create the directories...
795 %/.dir:
796         $(VERB) ${MKDIR} $* > /dev/null
797         @$(DATE) > $@
798
799 # To create postscript files from dot files...
800 ifdef DOT
801 %.ps: %.dot
802         ${DOT} -Tps < $< > $@
803 else
804 %.ps: %.dot
805         ${ECHO} "Cannot build $@: The program dot is not installed"
806 endif
807
808 # 'make clean' nukes the tree
809 clean::
810         $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Debug $(BUILD_OBJ_DIR)/Release
811         $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Profile $(BUILD_OBJ_DIR)/Depend
812         $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Bytecode
813         $(VERB) $(RM) -f core core.[0-9][0-9]* *.o *.d *.so *~ *.flc
814         $(VERB) $(RM) -f $(LEX_OUTPUT) $(YACC_OUTPUT)
815
816 ###########################################################################
817 # C/C++ Dependencies
818 #       Define variables and rules that generate header file dependencies
819 #       from C/C++ source files.
820 ###########################################################################
821
822 ifndef DISABLE_AUTO_DEPENDENCIES
823
824 # If dependencies were generated for the file that included this file,
825 # include the dependencies now...
826 #
827 SourceBaseNames := $(basename $(notdir $(filter-out Debug/%, $(Source))))
828 SourceDepend := $(SourceBaseNames:%=$(BUILD_OBJ_DIR)/Depend/%.d)
829
830 # Create dependencies for the *.cpp files...
831 $(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Depend/.dir
832         $(VERB) $(Depend) $< | $(SED) 's|\.o|\.lo|' | $(SED) 's|$*\.lo *|$(BUILD_OBJ_DIR)/Release/& $(BUILD_OBJ_DIR)/Profile/& $(BUILD_OBJ_DIR)/Debug/& $(BUILD_OBJ_DIR)/Depend/$(@F)|g' > $@
833         $(VERB) $(Depend) $< | $(SED) 's|$*.o: $*.cpp||' | $(SED) 's|[^\]$$|&::|' >> $@
834
835 # Create dependencies for the *.c files...
836 $(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Depend/.dir
837         $(VERB) $(DependC) -o $@ $< | $(SED) 's|\.o|\.lo|' | $(SED) 's|$*\.lo *|$(BUILD_OBJ_DIR)/Release/& $(BUILD_OBJ_DIR)/Profile/& $(BUILD_OBJ_DIR)/Debug/& $(BUILD_OBJ_DIR)/Depend/$(@F)|g' > $@
838         $(VERB) $(Depend) $< | $(SED) 's|$*.o: $*.c||' | $(SED) 's|[^\]$$|&::|' >> $@
839
840 #
841 # Include dependencies generated from C/C++ source files, but not if we
842 # are cleaning (this example taken from the GNU Make Manual).
843 #
844 ifneq ($(MAKECMDGOALS),clean)
845 ifneq ($(MAKECMDGOALS),distclean)
846 -include /dev/null $(SourceDepend)
847 endif
848 endif
849
850 endif  # ifndef DISABLE_AUTO_DEPENDENCIES