]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/Makefile
Initialize decayer before generation. Important if run inside cocktail.
[u/mrichter/AliRoot.git] / MUON / Makefile
1 ############################### MUON 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 = MUON
9
10 # C++ sources
11
12 SRCS         = AliMUONChamber.cxx AliMUONChamberTrigger.cxx \
13                AliMUONSegmentationV0.cxx\
14                AliMUONResponse.cxx AliMUONResponseV0.cxx \
15                AliMUONSegmentationV01.cxx \
16                AliMUONSegmentationV02.cxx AliMUONSegmentationV04.cxx \
17                AliMUONSegmentationV05.cxx\
18                AliMUONSegmentationTrigger.cxx  AliMUONResponseTrigger.cxx\
19                AliMUONResponseTriggerV1.cxx\
20                AliMUONSegmentationTriggerX.cxx AliMUONSegmentationTriggerY.cxx \
21                AliMUONSegmentationV1.cxx AliMUON.cxx AliMUONv0.cxx AliMUONv1.cxx AliMUONvTemp.cxx\
22                AliMUONDisplay.cxx AliMUONPoints.cxx \
23                AliMUONClusterFinderVS.cxx \
24                AliMUONHitMapA1.cxx \
25                AliMUONHit.cxx AliMUONPadHit.cxx AliMUONDigit.cxx \
26                AliMUONTransientDigit.cxx AliMUONRawCluster.cxx \
27                AliMUONReconstHit.cxx \
28                AliMUONTrackReconstructor.cxx \
29                AliMUONEventReconstructor.cxx \
30                AliMUONTriggerDecision.cxx \
31                AliMUONHitForRec.cxx AliMUONSegment.cxx \
32                AliMUONTrack.cxx AliMUONTrackHit.cxx AliMUONTrackParam.cxx \
33                AliMUONTriggerCircuit.cxx AliMUONTriggerLut.cxx \
34                AliMUONGlobalTrigger.cxx AliMUONLocalTrigger.cxx \
35                AliMUONTriggerConstants.cxx  AliMUONConstants.cxx \
36                AliMUONClusterInput.cxx  \
37                AliMUONSegmentationSlatModule.cxx AliMUONSegmentationSlatModuleN.cxx \
38                AliMUONSegmentationSlat.cxx AliMUONSegmentationSlatN.cxx \
39                AliMUONRecoEvent.cxx AliMUONRecoDisplay.cxx \
40                AliMUONMerger.cxx
41
42 # C++ Headers
43
44 HDRS          = $(SRCS:.cxx=.h) \
45                 $(ROOTSYS)/include/TF1.h \
46                 $(ROOTSYS)/include/TH3.h \
47                 $(ROOTSYS)/include/TMarker3DBox.h \
48                 $(ROOTSYS)/include/TMatrix.h \
49                 $(ROOTSYS)/include/TTree.h \
50                 MUONLinkDef.h
51
52 # Library dictionary
53
54 DICT          = MUONCint.cxx
55 DICTH         = $(DICT:.cxx=.h)
56 DICTO         = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
57
58 # Fortran sources
59
60 FSRCS         = reco_muon.F extrap.F
61
62 # FORTRAN Objectrs
63
64 FOBJS         = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
65
66 # C Objects
67
68 COBJS         = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
69
70 # C++ Objects
71
72 OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
73
74 # C++ compilation flags
75
76 CXXFLAGS      = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
77  
78 # FORTRAN compilation flags
79
80 FFLAGS      = $(FOPT)
81
82 ##### TARGETS #####
83  
84 # Target
85
86 SLIBRARY        = $(LIBDIR)/libMUON.$(SL)
87 ALIBRARY        = $(LIBDIR)/libMUON.a
88
89 default:        $(SLIBRARY)
90
91 $(LIBDIR)/libMUON.$(SL):        $(OBJS) $(FOBJS)
92
93 $(DICT):                        $(HDRS)
94
95 depend:                         $(SRCS)
96
97 TOCLEAN         = $(OBJS) $(FOBJS) *Cint.cxx *Cint.h
98
99 CHECKS        = $(patsubst %.cxx,check/%.viol,$(SRCS))
100
101 ############################### General Macros ################################
102
103 include $(ALICE_ROOT)/conf/GeneralMacros
104
105 ############################ Dependencies #####################################
106
107 -include tgt_$(ALICE_TARGET)/Make-depend