]> git.uio.no Git - u/mrichter/AliRoot.git/blob - Makefile
AliCollisionGeometry moved to STEER
[u/mrichter/AliRoot.git] / Makefile
1 # Top level Makefile for AliRoot System
2 #
3 # Author: Jan-Erik Revsbech (revsbech@fys.ku.dk)
4 #         Developed on idea of Boris Polichtchouk (Boris.Polichtchouk@cern.ch), 15/4/2001
5
6
7 ##### include general path/location macros #####
8 override ALICE_ROOT=$(shell pwd)
9
10 ifdef ALIVERBOSE
11 MUTE:=
12 else
13 MUTE:=@
14 endif
15
16 # IRST coding rule check
17 IRST_INSTALLDIR=$(ALICE)/local/IRST
18 CLASSPATH=$(IRST_INSTALLDIR)
19 export CLASSPATH IRST_INSTALLDIR
20 CODE_CHECK=java rules.ALICE.ALICERuleChecker
21 REV_ENG=$(IRST_INSTALLDIR)/scripts/revEng.sh
22
23
24 include build/Makefile.config
25 ################################################################## 
26
27 #            Where to install libraries and binaries 
28 #                 and common header files
29
30 LIBPATH=lib/tgt_$(ALICE_TARGET)
31 BINPATH=bin/tgt_$(ALICE_TARGET)
32 EXPORTDIR = $(ALICE_ROOT)/include
33 ##################################################################
34
35 ##################################################################
36 # include machine dependent macros 
37
38 -include build/Makefile.$(ALICE_TARGET)
39 ##################################################################
40
41 ##################################################################
42
43 #               Check if called with debug
44
45 ifeq ($(ALIDEBUG),YES)
46 override ALICE_TARGET:=$(ALICE_TARGET)DEBUG
47 FFLAGS := -g $(filter-out -O%,$(FFLAGS))
48 CXXFLAGS := -g $(filter-out -O%,$(CXXLAGS))
49 CFLAGS := -g $(filter-out -O%,$(CLAGS))
50 SOFLAGS := -g $(filter-out -O%,$(SOFLAGS))
51 LDFLAGS := -g $(filter-out -O%,$(LDFLAGS))
52 endif
53 ##################################################################
54
55 ##################################################################
56
57 #               Check if called with profile
58
59 ifeq ($(ALIPROFILE),YES)
60 override ALICE_TARGET:=$(ALICE_TARGET)PROF
61 FFLAGS += -pg
62 CXXFLAGS += -pg
63 CFLAGS += -pg
64 SOFLAGS += -pg
65 LDFLAGS += -pg
66 endif
67 ##################################################################
68
69 ##################################################################
70 #
71 #                   Modules to build 
72
73 # Uncomment to show some output
74 #$(warning MAKECMDGOALS=$(MAKECMDGOALS))
75
76 ALIROOTMODULES:= STEER PHOS TRD TPC ZDC MUON PMD FMD TOF ITS \
77       CRT RICH START STRUCT EVGEN RALICE ALIFAST VZERO \
78           THijing CONTAINERS MEVSIM TMEVSIM THbtp HBTP EMCAL HBTAN \
79       THerwig TEPEMGEN EPEMGEN FASTSIM
80
81 CERNMODULES:= PDF PYTHIA PYTHIA6 HIJING MICROCERN HERWIG
82
83 MODULES:=$(ALIROOTMODULES) $(CERNMODULES) 
84
85 ifeq ($(findstring TFluka,$(MAKECMDGOALS)),TFluka)
86 MODULES += TFluka
87 endif
88
89 ifeq ($(findstring Flugg,$(MAKECMDGOALS)),Flugg)
90 MODULES += Flugg
91 endif
92
93 ##################################################################
94
95 MODULES += ALIROOT 
96
97 MODDIRS := $(MODULES)
98
99 #############################################################
100
101 #               Default include dirs for 
102 #          C++, Fortran, Cint, and dependencies 
103 #      The module directory will be added by each module
104 #
105
106 CXXFLAGS += -I$(ALICE_ROOT)/include
107 CXXFLAGS += $(patsubst %,-I%,$(ROOTSYS)/include)
108
109 CINTFLAGS += -I$(ALICE_ROOT)/include
110 CINTFLAGS += $(patsubst %,-I%,$(ROOTSYS)/include)
111
112 DEPINC  += -I$(ALICE_ROOT)/include
113 DEPINC += $(patsubst %,-I%,$(ROOTSYS)/include)
114 #############################################################
115
116
117 #############################################################
118 #
119 #             Libraries to link binaries against
120 #            Libraries will be linked againstSHLIB
121 LIBS := $(GLIBS) $(ROOTLIBS) $(SYSLIBS)
122 #############################################################
123
124
125 # default target
126 default:     alilibs  aliroot
127
128
129 #############################################################
130 #
131 #            Each module will add to this
132
133 ALLLIBS      :=
134 ALLEXECS     :=
135 INCLUDEFILES :=
136 BINLIBS      := 
137 EXPORTFILES  := 
138 #############################################################
139
140 BINLIBDIRS   := -L$(ALICE_ROOT)/$(LIBPATH)
141
142
143 #Dependencies of module.mk files
144
145 include build/module.dep
146
147 #############################################################
148
149 #        Check if module.mk is present for the library
150 %.mk: build/module.tpl
151 ifndef ALIQUIET
152         @echo "***** Creating $@ file *****";
153 endif
154         @share/alibtool mkmodule  $(patsubst %/module.mk,%,$@) > $@;
155 #############################################################
156
157 # **************************************************************************
158 #
159 #               If cleaning, do not include 
160 #             dependencies or module.mk files.
161
162 ifeq ($(findstring $(MAKECMDGOALS), clean clean-all clean-dicts clean-modules clean-depend clean-objects clean-libs clean-bins),)
163
164 #            If making modules, not not include
165 #                       anything
166
167 ifneq ($(findstring modules,$(MAKECMDGOALS)),modules)
168
169 #############################################################
170
171 #                Include the modules
172 -include $(patsubst %,%/module.mk,$(MODULES)) 
173
174 #
175 #
176 #############################################################
177
178 #############################################################
179 #
180 #          include dependencies if not making them!
181 ifneq ($(MAKECMDGOALS),depend )
182 #           Don't include if cleaning of any sort
183 ifneq ($(findstring clean,$(MAKECMDGOALS)),clean)
184 #$(warning INCLUDEFILES=$(INCLUDEFILES))
185 include $(INCLUDEFILES)
186 endif
187 endif
188 #############################################################
189
190 endif
191 endif
192 # **************************************************************************
193
194 #############################################################
195 #
196 #              include dummy dependency file
197 #               *MUST* be last includefile
198 include build/dummy.d
199 #############################################################
200
201
202 # targets
203
204 .PHONY:         alilibs aliroot makedistr clean htmldoc profile
205
206 modules: $(patsubst %,%/module.mk,$(MODULES))   
207
208
209 aliroot: $(BINPATH) $(ALLEXECS) alilibs bin
210
211 ifeq ($(ALIPROFILE),YES)
212 alilibs: $(LIBPATH) $(ALLLIBS) $(ALLALIBS) lib modules
213 else
214 alilibs: $(LIBPATH) $(ALLLIBS) lib modules
215 endif
216
217 # Single Makefile "distribution": Makefile + modules + mkdepend scripts
218 makedistr: $(MODULES)    
219          tar -cvf MakeDistr.tar $(patsubst %,%/*.pkg,$(MODULES)) \
220                 Makefile create build/* 
221
222 all: aliroot
223
224
225 depend: $(INCLUDEFILES) 
226
227 debug:
228 ifndef ALIQUIET
229         @echo "***** Entering DEBUG mode. *****"
230 endif
231         @(export ALIDEBUG=YES && $(MAKE))
232 profile:
233 ifndef ALIQUIET
234         @echo "***** Entering PROFILE mode. *****"
235 endif
236         @(export ALIPROFILE=YES && $(MAKE))
237 lib: 
238         @mkdir lib
239         @mkdir lib/tgt_$(ALICE_TARGET)
240
241 bin: 
242         @mkdir bin
243         @mkdir bin/tgt_$(ALICE_TARGET)
244
245 $(MODULES):
246 ifndef ALIQUIET
247         @echo "***** Making $@ *****"
248 endif
249         @mkdir -p $@
250
251 $(BINPATH):
252 ifndef ALIQUIET
253         @echo "***** Making $@ *****"
254 endif
255         @mkdir -p $@
256
257 $(LIBPATH):
258 ifndef ALIQUIET
259         @echo "***** Making $@ *****"
260 endif
261         @mkdir -p $@
262
263 build/dummy.d: $(EXPORTFILES)
264         @(if [ ! -f $@ ] ; then \
265            touch $@; \
266         fi)
267
268 clean:
269         @echo "***** No targen clean, use one of these *****"
270         @echo " clean-aliroot     : Clean up all aliroot libraries"
271         @echo " clean-MODULENAME  : Clean everything from module MODULENAME"
272         @echo " clean-all         : Cleans up everything, including cern libraires"
273         @echo " clean-modules     : Clean all module.mk file in all modules"
274         @echo " clean-libs        : Clean all libraries (not object files)"
275         @echo "********************************************"
276
277 clean-all: clean-modules clean-libs clean-bins
278 ifndef ALIQUIET
279         @echo "***** Cleaning up everything ****"
280 endif
281         $(MUTE)rm -rf $(patsubst %,%/tgt_$(ALICE_TARGET),$(MODULES))
282         $(MUTE)rm -rf $(EXPORTDIR)
283
284 #This cleans only libraries that are not CERN-libraries
285
286 clean-aliroot:   $(patsubst %,%/module.mk,$(ALIROOTMODULES)) $(patsubst %,clean-%,$(ALIROOTMODULES))
287
288 CHECKMODULES := $(ALIROOTMODULES)
289 CHECKMODULES := $(filter-out HBTP,$(CHECKMODULES))
290 CHECKMODULES := $(filter-out MEVSIM,$(CHECKMODULES))
291 CHECKMODULES := $(filter-out EPEMGEN,$(CHECKMODULES))
292
293 check-all:                      $(patsubst %,%/module.mk,$(CHECKMODULES)) $(patsubst %,check-%,$(CHECKMODULES))
294
295 reveng-all:                     $(patsubst %,%/module.mk,$(CHECKMODULES)) $(patsubst %,reveng-%,$(CHECKMODULES))
296
297 revdisp-all:            $(patsubst %,%/module.mk,$(CHECKMODULES)) $(patsubst %,revdisp-%,$(CHECKMODULES))
298
299 clean-dicts:
300 ifndef ALIQUIET
301         @echo "***** Cleaning up G__ files *****"
302 endif
303         $(MUTE)rm -rf */tgt_$(ALICE_TARGET)/G__*
304
305 clean-modules:
306 ifndef ALIQUIET
307         @echo "***** Cleaning up module.mk files *****"
308 endif
309         $(MUTE)rm -rf $(patsubst %,%/module.mk,$(MODULES)) 
310
311 clean-depend:
312 ifndef ALIQUIET
313         @echo "***** Cleaning up dependencies *****"
314 endif
315         $(MUTE)echo rm `find . -name "*.d"`
316
317 clean-objects:
318 ifndef ALIQUIET
319         @echo "***** Cleaning up .o files *****"
320 endif
321         $(MUTE)echo rm `find . -name "*.o"`
322
323 clean-libs:
324 ifndef ALIQUIET
325         @echo "***** Cleaning up library files *****"
326 endif
327         $(MUTE)rm -rf lib/tgt_$(ALICE_TARGET)/*
328
329 clean-bins:
330 ifndef ALIQUIET
331         @echo "***** Cleaning up binary files *****"
332 endif
333         $(MUTE)rm -rf bin/tgt_$(ALICE_TARGET)
334
335 clean-check-all:                        $(patsubst %,%/module.mk,$(CHECKMODULES)) $(patsubst %,clean-check-%,$(CHECKMODULES))
336
337 clean-reveng-all:                       $(patsubst %,%/module.mk,$(CHECKMODULES)) $(patsubst %,clean-reveng-%,$(CHECKMODULES))
338
339 htmldoc:
340         @rm -rf html/roothtml
341         @rm -f  html/picts
342         @rm -f /tmp/macros
343         @cd html ;\
344         aliroot -q -b "mkhtml.C(0,1)" ;\
345         ls ../macros/*.C > /tmp/macros ;\
346         for i in $(ALIROOTMODULES) ; do \
347                 ls ../$$i/*.C 2>/dev/null >> /tmp/macros ;\
348         done ;\
349         for i in `cat /tmp/macros` ; do \
350                 echo $$i ; \
351                 aliroot -b -q "mkhtml.C(\"$$i\")" > /dev/null ;\
352         done ;\
353         ./makeExampleList ;
354         @ln -s ../picts html/picts
355         @ln -s ../../picts html/roothtml/picts
356         @ln -s ../../../picts html/roothtml/src/picts
357         @ln -s ../../../picts html/roothtml/examples/picts