]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/Makefile
Changed default digitisation to all particles.
[u/mrichter/AliRoot.git] / STEER / Makefile
1 ############################### STEER Makefile ################################
2
3 # Include machine specific definitions
4
5 include $(ALICE_ROOT)/conf/GeneralDef
6 include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
7
8 PACKAGE = STEER
9
10 # C++ sources
11
12 SRCS          = AliDetector.cxx AliHeader.cxx   AliMagF.cxx \
13                 AliDigit.cxx    AliHit.cxx      AliPoints.cxx \
14                 AliDisplay.cxx  AliMC.cxx       AliRun.cxx AliGenerator.cxx \
15                 AliLego.cxx     AliModule.cxx   AliDigitNew.cxx \
16                 AliGeometry.cxx AliRecPoint.cxx AliSegmentation.cxx \
17                 AliHitMap.cxx   AliMagFC.cxx    AliMagFCM.cxx \
18                 AliMagFDM.cxx   AliLegoGenerator.cxx AliLegoGeneratorXYZ.cxx\
19                 AliLegoGeneratorEta.cxx \
20                 AliKalmanTrack.cxx              AliCluster.cxx
21
22 # C++ Headers
23
24 HDRS          = $(SRCS:.cxx=.h) AliPDG.h $(ROOTSYS)/include/TH2.h STEERLinkDef.h 
25
26 # Library dictionary
27
28 DICT          = STEERCint.cxx
29 DICTH         = $(DICT:.cxx=.h)
30 DICTO         = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
31
32 # FORTRAN Objectrs
33
34 FOBJS         = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
35
36 # C Objects
37
38 COBJS         = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
39
40 # C++ Objects
41
42 OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
43
44 # C++ compilation flags
45
46 CXXFLAGS      = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
47  
48 # FORTRAN compilation flags
49
50 FFLAGS      = $(FOPT)
51
52 ##### TARGETS #####
53  
54 # Target
55
56 SLIBRARY        = $(LIBDIR)/libSTEER.$(SL)
57 ALIBRARY        = $(LIBDIR)/lib/libSTEER.a
58
59 default:        $(SLIBRARY)
60
61 $(LIBDIR)/libSTEER.$(SL):               $(OBJS)
62
63 $(DICT):                                $(HDRS)
64
65 depend:                                 $(SRCS)
66
67 HEADERS         = $(SRCS:.cxx=.h) AliPDG.h AliConst.h AliCallf77.h 
68
69 TOCLEAN         = $(OBJS) *Cint.cxx *Cint.h
70
71 CHECKS          = $(patsubst %.cxx,check/%.viol,$(SRCS))
72
73 ############################### General Macros ################################
74
75 include $(ALICE_ROOT)/conf/GeneralMacros
76
77 ############################ Dependencies #####################################
78
79 -include tgt_$(ALICE_TARGET)/Make-depend 
80
81
82
83
84
85
86