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