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