]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/Makefile
c860b179a21115b8e75e82640b45080cb0b278c6
[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                AliMUONSegmentation.cxx  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 AliMUONClusterFinder.cxx \
23                AliMUONHitMap.cxx 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        
35
36 # C++ Headers
37
38 HDRS          = $(SRCS:.cxx=.h) MUONLinkDef.h
39
40 # Library dictionary
41
42 DICT          = MUONCint.cxx
43 DICTH         = $(DICT:.cxx=.h)
44 DICTO         = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
45
46 # Fortran sources
47
48 FSRCS         = reco_muon.F
49
50 # FORTRAN Objectrs
51
52 FOBJS         = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
53
54 # C Objects
55
56 COBJS         = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
57
58 # C++ Objects
59
60 OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
61
62 # C++ compilation flags
63
64 CXXFLAGS      = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
65  
66 # FORTRAN compilation flags
67
68 FFLAGS      = $(FOPT)
69
70 ##### TARGETS #####
71  
72 # Target
73
74 SLIBRARY        = $(LIBDIR)/libMUON.$(SL)
75 ALIBRARY        = $(LIBDIR)/libMUON.a
76
77 default:        $(SLIBRARY)
78
79 $(LIBDIR)/libMUON.$(SL):        $(OBJS) $(FOBJS)
80
81 $(DICT):                        $(HDRS)
82
83 depend:                         $(SRCS)
84
85 TOCLEAN         = $(OBJS) $(FOBJS) *Cint.cxx *Cint.h
86
87 ############################### General Macros ################################
88
89 include $(ALICE_ROOT)/conf/GeneralMacros
90
91 ############################ Dependencies #####################################
92
93 -include tgt_$(ALICE_TARGET)/Make-depend 
94  
95
96 ### Target check creates violation reports (.viol), which depend on
97 ### stripped files (.ii), which in turn depend on preprocessed
98 ### files (.i). Dependences are in conf/GeneralDef.
99
100 CHECKS        = $(patsubst %.cxx,check/%.viol,$(SRCS))
101
102 check:          $(CHECKS)
103
104 # DO NOT DELETE