Changes to allow building lib/Target/Sparc the FIRST time.
[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 dependancy info.
5 # These are platform dependant, so this is the file used to specify these
6 # system dependant operations.
7 #
8 # The following functionality may be set by setting incoming variables:
9 #
10 # 1. LEVEL - The level of the current subdirectory from the top of the 
11 #    MagicStats view.  This level should be expressed as a path, for 
12 #    example, ../.. for two levels deep.
13 #
14 # 2. DIRS - A list of subdirectories to be built.  Fake targets are set up
15 #    so that each of the targets "all", "install", and "clean" each build.
16 #    the subdirectories before the local target.
17 #
18 # 3. Source - If specified, this sets the source code filenames.  If this
19 #    is not set, it defaults to be all of the .cpp, .c, .y, and .l files 
20 #    in the current directory.  Also, if you want to build files in addition
21 #    to the local files, you can use the ExtraSource variable
22 #
23 #===-----------------------------------------------------------------------====
24
25 # These are options that can either be enabled here, or can be enabled on the
26 # make command line (make ENABLE_PROFILING=1)
27 #
28 #ENABLE_PROFILING = 1
29 #ENABLE_PURIFY    = 1
30 #ENABLE_OPTIMIZED = 1
31
32 ifdef SHARED_LIBRARY
33 # if SHARED_LIBRARY is specified, the default is to build the dynamic lib
34 dynamic ::
35 endif
36
37 # Default Rule:  Make sure it's also a :: rule
38 all ::
39
40 # Default for install is to at least build everything...
41 install ::
42
43 #--------------------------------------------------------------------
44 # Installation configuration options... 
45 #--------------------------------------------------------------------
46
47 #BinInstDir=/usr/local/bin
48 #LibInstDir=/usrl/local/lib/xxx
49 #DocInstDir=/usr/doc/xxx
50
51 BURG = /home/vadve/vadve/Research/DynOpt/Burg/burg
52 BURG_OPTS = -I
53
54
55 PURIFY = /usr/dcs/applications/purify/bin/purify -cache-dir="$(HOME)/purifycache" -chain-length="30" -messages=all 
56
57 # Shorthand for commonly accessed directories
58 LIBDEBUG    = $(LEVEL)/lib/Debug
59 LIBRELEASE  = $(LEVEL)/lib/Release
60 TOOLDEBUG   = $(LEVEL)/tools/Debug
61 TOOLRELEASE = $(LEVEL)/tools/Release
62
63 #---------------------------------------------------------
64 # Compilation options...
65 #---------------------------------------------------------
66
67 # Special tools used while building
68 RunBurg  = $(BURG) $(BURG_OPTS)
69
70 # Enable this for profiling support with 'gprof'
71 ifdef ENABLE_PROFILING
72 PROFILE = -pg
73 else
74 PROFILE =
75 endif
76
77 # TODO: Get rid of exceptions! : -fno-exceptions -fno-rtti
78 # -Wno-unused-parameter
79 CompileCommonOpts = $(PROFILE) -Wall -W  -Wwrite-strings -Wno-unused -I$(LEVEL)/include
80
81 # Compile a file, don't link...
82 Compile  = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) $(PROFILE)
83 CompileG = $(Compile) -g  -D_DEBUG
84 CompileO = $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
85
86 # Link final executable
87
88 # To enable purify, do it here:
89 ifdef ENABLE_PURIFY
90 Link     = $(PURIFY) $(CXX) $(Prof) -static
91 else
92 Link     = LD_RUN_PATH=/usr/dcs/software/evaluation/encap/gcc-3.0.4/lib $(CXX) $(PROFILE)
93 endif
94 LinkG    = $(Link) -g  -L $(LIBDEBUG)
95 LinkO    = $(Link) -O3 -L $(LIBRELEASE)
96
97 # Create a .so file from a .o files...
98 #MakeSO   = $(CXX) -shared $(Prof)
99 MakeSO   = $(CXX) -G $(Prof)
100 MakeSOO  = $(MakeSO) -O3
101
102 # Create one .o file from a bunch of .o files...
103 Relink = ld -r
104
105 # Create dependancy file from CPP file, send to stdout.
106 Depend   = $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) 
107
108 # Archive a bunch of .o files into a .a file...
109 AR       = ar cq 
110 MakeLib   = $(AR)
111
112 #----------------------------------------------------------
113
114 # Source includes all of the cpp files, and objects are derived from the
115 # source files...
116 # The local Makefile can list other Source files via ExtraSource = ...
117
118 Source  := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
119
120 Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
121 ObjectsO = $(addprefix Release/,$(Objs))
122 ObjectsG = $(addprefix Debug/,$(Objs))
123
124
125 #---------------------------------------------------------
126 # Handle the DIRS option
127 #---------------------------------------------------------
128
129 ifdef DIRS  # Only do this if we're using DIRS!
130
131 all     :: $(addsuffix /.makeall    , $(DIRS))
132 install :: $(addsuffix /.makeinstall, $(DIRS))
133 clean   :: $(addsuffix /.makeclean  , $(DIRS))
134
135 %/.makeall %/.makeclean %/.makeinstall:
136         cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
137 endif
138
139 #---------------------------------------------------------
140 # Handle the LIBRARYNAME option - used when building libs...
141 #---------------------------------------------------------
142 #
143 #  When libraries are built, they are allowed to optionally define the
144 #  DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
145 #  from being built for the library. This .o files may then be linked to by a
146 #  tool if the tool does not need (or want) the semantics a .a file provides
147 #  (linking in only object files that are "needed").  If a library is never to
148 #  be used in this way, it is better to define DONT_BUILD_RELINKED, and define
149 #  BUILD_ARCHIVE instead.
150 #
151 #  Some libraries must be built as .a files (libscalar for example) because if
152 #  it's built as a .o file, then all of the constitent .o files in it will be
153 #  linked into tools (for example gccas) even if they only use one of the parts
154 #  of it.  For this reason, sometimes it's useful to use libraries as .a files.
155
156 ifdef LIBRARYNAME
157
158 LIBNAME_O    := $(LIBRELEASE)/lib$(LIBRARYNAME).so
159 LIBNAME_G    := $(LIBDEBUG)/lib$(LIBRARYNAME).so
160 LIBNAME_AO   := $(LIBRELEASE)/lib$(LIBRARYNAME).a
161 LIBNAME_AG   := $(LIBDEBUG)/lib$(LIBRARYNAME).a
162 LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
163 LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
164
165 BUILD_LIBNAME_G := $(LIBNAME_G)
166 ifndef DONT_BUILD_RELINKED
167 BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
168 endif
169 ifdef BUILD_ARCHIVE
170 BUILD_LIBNAME_AG := $(LIBNAME_AG)
171 endif
172
173 # If optimized builds are enabled...
174 ifdef ENABLE_OPTIMIZED
175 BUILD_LIBNAME_O  := $(LIBNAME_O)
176 ifndef DONT_BUILD_RELINKED
177 BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
178 endif
179 ifdef BUILD_ARCHIVE
180 BUILD_LIBNAME_AO := $(LIBNAME_AO)
181 endif
182 endif
183
184 all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG)      # Debug
185 all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO)      # Release
186 dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O)      # .so files
187
188 $(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
189         @echo ======= Linking $(LIBRARYNAME) release library =======
190         $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
191
192 $(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
193         @echo ======= Linking $(LIBRARYNAME) debug library =======
194         $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
195
196 $(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
197         @echo ======= Linking $(LIBRARYNAME) release library =======
198         @rm -f $@
199         $(MakeLib) $@ $(ObjectsO) $(LibSubDirs)
200
201 $(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
202         @echo ======= Linking $(LIBRARYNAME) debug library =======
203         @rm -f $@
204         $(MakeLib) $@ $(ObjectsG) $(LibSubDirs)
205
206 $(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
207         $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
208
209 $(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
210         $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
211
212 endif
213
214 #------------------------------------------------------------------------
215 # Create a TAGS database for emacs
216 #------------------------------------------------------------------------
217
218 ifeq ($(LEVEL), .)
219
220 tags:
221         etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
222
223 all:: tags
224
225 endif
226
227 #------------------------------------------------------------------------
228 # Handle the TOOLNAME option - used when building tool executables...
229 #------------------------------------------------------------------------
230 #
231 # The TOOLNAME option should be used with a USEDLIBS variable that tells the
232 # libraries (and the order of the libs) that should be linked to the
233 # tool. USEDLIBS should contain a list of library names (some with .a extension)
234 # that are automatically linked in as .o files unless the .a suffix is added.
235 #
236 ifdef TOOLNAME
237
238 # TOOLEXENAME* - These compute the output filenames to generate...
239 TOOLEXENAME_G = $(LEVEL)/tools/Debug/$(TOOLNAME)
240 TOOLEXENAME_O = $(LEVEL)/tools/Release/$(TOOLNAME)
241 TOOLEXENAMES := $(TOOLEXENAME_G)
242 ifdef ENABLE_OPTIMIZED
243 TOOLEXENAMES += $(TOOLEXENAME_O)
244 endif
245
246 # USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
247 USED_LIBS_OPTIONS   := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
248 USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o,  $(USED_LIBS_OPTIONS))
249 USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
250
251
252 # USED_LIB_PATHS - Compute the path of the libraries used so that tools are
253 # rebuilt if libraries change.  This has to make sure to handle .a/.so and .o
254 # files seperately.
255 #
256 STATICUSEDLIBS   := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
257 USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
258 USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
259
260 all::   $(TOOLEXENAMES)
261 clean::
262         rm -f $(TOOLEXENAMES)
263
264 $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(LEVEL)/tools/Debug/.dir
265         $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
266
267 $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(LEVEL)/tools/Release/.dir
268         $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
269
270 endif
271
272
273
274 #---------------------------------------------------------
275 .PRECIOUS: Depend/.dir Debug/.dir Release/.dir
276
277 # Create dependencies for the *.cpp files...
278 Depend/%.d: %.cpp Depend/.dir
279         $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
280
281 # Create dependencies for the *.c files...
282 Depend/%.d: %.c Depend/.dir
283         $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
284
285 # Create .o files in the ObjectFiles directory from the .cpp and .c files...
286 Release/%.o: %.cpp Release/.dir Depend/.dir
287         $(CompileO) $< -o $@
288
289 #Release/%.o: %.c Release/.dir Depend/.dir
290 #       $(CompileOC) $< -o $@
291
292 Debug/%.o: %.cpp Debug/.dir Depend/.dir
293         $(CompileG) $< -o $@
294
295 #Debug/%.o: %.c Debug/.dir Depend/.dir
296 #       $(CompileGC) $< -o $@
297
298 # Create a .cpp source file from a burg input file
299 #Debug/%.cpp: Debug/% Debug/.dir
300 #       $(RunBurg) $< -o $@
301
302 # Create a .cpp source file from a flex input file... this uses sed to cut down
303 # on the warnings emited by GCC...
304 %.cpp: %.l
305         flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
306
307 # Rule for building the bison parsers...
308
309 %.cpp %.h : %.y
310         bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
311         mv -f $(basename $@).tab.c $(basename $@).cpp
312         mv -f $(basename $@).tab.h $(basename $@).h
313
314 # To create the directories...
315 %/.dir:
316         mkdir -p $(@D)
317         @date > $@
318
319 # Clean does not remove the output files... just the temporaries
320 clean::
321         rm -rf Debug Release Depend
322         rm -f core *.o *.d *.so *~ *.flc
323
324 # If dependancies were generated for the file that included this file,
325 # include the dependancies now...
326 #
327 SourceDepend = $(addsuffix .d,$(addprefix Depend/,$(basename $(filter-out Debug/%, $(Source)))))
328 ifneq ($(SourceDepend),)
329 include $(SourceDepend)
330 endif