fe4da5cc |
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 | |
a9e2aefa |
12 | SRCS = AliMUONChamber.cxx AliMUONChamberTrigger.cxx \ |
ad1184d9 |
13 | AliMUONSegmentationV0.cxx\ |
a9e2aefa |
14 | AliMUONResponse.cxx AliMUONResponseV0.cxx \ |
15 | AliMUONSegmentationV01.cxx \ |
16 | AliMUONSegmentationV02.cxx AliMUONSegmentationV04.cxx \ |
17 | AliMUONSegmentationV05.cxx\ |
18 | AliMUONSegmentationTrigger.cxx AliMUONResponseTrigger.cxx\ |
9e8ff550 |
19 | AliMUONResponseTriggerV1.cxx\ |
a9e2aefa |
20 | AliMUONSegmentationTriggerX.cxx AliMUONSegmentationTriggerY.cxx \ |
53720afc |
21 | AliMUONSegmentationV1.cxx AliMUON.cxx AliMUONv0.cxx AliMUONv1.cxx \ |
a9e2aefa |
22 | AliMUONDisplay.cxx AliMUONPoints.cxx \ |
fc2ab451 |
23 | AliMUONClusterFinderVS.cxx \ |
ad1184d9 |
24 | AliMUONHitMapA1.cxx \ |
a9e2aefa |
25 | AliMUONHit.cxx AliMUONPadHit.cxx AliMUONDigit.cxx \ |
26 | AliMUONTransientDigit.cxx AliMUONRawCluster.cxx \ |
27 | AliMUONReconstHit.cxx \ |
a9e2aefa |
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 \ |
30aaba74 |
34 | AliMUONTriggerConstants.cxx AliMUONConstants.cxx \ |
4c503756 |
35 | AliMUONClusterInput.cxx \ |
36 | AliMUONSegmentationSlatModule.cxx AliMUONSegmentationSlatModuleN.cxx \ |
c7ba256d |
37 | AliMUONSegmentationSlat.cxx AliMUONSegmentationSlatN.cxx \ |
66f93042 |
38 | AliMUONRecoEvent.cxx AliMUONRecoDisplay.cxx \ |
4b1670dc |
39 | AliMUONMerger.cxx AliMUONFactory.cxx AliMUONDigitizer.cxx \ |
40 | AliMUONDigitContainer.cxx |
fe4da5cc |
41 | |
42 | # C++ Headers |
43 | |
c1a185bf |
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 |
fe4da5cc |
51 | |
52 | # Library dictionary |
53 | |
54 | DICT = MUONCint.cxx |
55 | DICTH = $(DICT:.cxx=.h) |
4adb943a |
56 | DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT)) |
fe4da5cc |
57 | |
0df6418f |
58 | # Fortran sources |
59 | |
60 | FSRCS = extrap.F |
61 | |
fe4da5cc |
62 | # FORTRAN Objectrs |
63 | |
4adb943a |
64 | FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS)) |
fe4da5cc |
65 | |
66 | # C Objects |
67 | |
4adb943a |
68 | COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS)) |
fe4da5cc |
69 | |
70 | # C++ Objects |
71 | |
4adb943a |
72 | OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO) |
fe4da5cc |
73 | |
74 | # C++ compilation flags |
75 | |
53720afc |
76 | CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/ |
fe4da5cc |
77 | |
78 | # FORTRAN compilation flags |
79 | |
80 | FFLAGS = $(FOPT) |
81 | |
82 | ##### TARGETS ##### |
83 | |
84 | # Target |
85 | |
cb342460 |
86 | SLIBRARY = $(LIBDIR)/libMUON.$(SL) |
87 | ALIBRARY = $(LIBDIR)/libMUON.a |
fe4da5cc |
88 | |
89 | default: $(SLIBRARY) |
90 | |
cb342460 |
91 | $(LIBDIR)/libMUON.$(SL): $(OBJS) $(FOBJS) |
fe4da5cc |
92 | |
93 | $(DICT): $(HDRS) |
94 | |
95 | depend: $(SRCS) |
96 | |
97 | TOCLEAN = $(OBJS) $(FOBJS) *Cint.cxx *Cint.h |
98 | |
7065831b |
99 | CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS)) |
100 | |
fe4da5cc |
101 | ############################### General Macros ################################ |
102 | |
103 | include $(ALICE_ROOT)/conf/GeneralMacros |
104 | |
105 | ############################ Dependencies ##################################### |
106 | |
1207d6f2 |
107 | -include tgt_$(ALICE_TARGET)/Make-depend |