]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/Makefile
Removal of useless dependecies via forward declarations
[u/mrichter/AliRoot.git] / MUON / Makefile
CommitLineData
fe4da5cc 1############################### MUON Makefile #################################
2
3# Include machine specific definitions
4
5include $(ALICE_ROOT)/conf/GeneralDef
6include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
7
8PACKAGE = MUON
9
10# C++ sources
11
a9e2aefa 12SRCS = 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\
19 AliMUONSegmentationTriggerX.cxx AliMUONSegmentationTriggerY.cxx \
20 AliMUONSegmentationV1.cxx AliMUON.cxx AliMUONv0.cxx AliMUONv1.cxx\
21 AliMUONDisplay.cxx AliMUONPoints.cxx \
fc2ab451 22 AliMUONClusterFinderVS.cxx \
ad1184d9 23 AliMUONHitMapA1.cxx \
a9e2aefa 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 \
30aaba74 34 AliMUONTriggerConstants.cxx AliMUONConstants.cxx \
35 AliMUONClusterInput.cxx
fe4da5cc 36
37# C++ Headers
38
94de3818 39HDRS = $(SRCS:.cxx=.h) $(ROOTSYS)/include/TTree.h \
40 $(ROOTSYS)/include/TMatrix.h MUONLinkDef.h
fe4da5cc 41
42# Library dictionary
43
44DICT = MUONCint.cxx
45DICTH = $(DICT:.cxx=.h)
4adb943a 46DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
fe4da5cc 47
48# Fortran sources
49
a6f03ddb 50FSRCS = reco_muon.F extrap.F
fe4da5cc 51
52# FORTRAN Objectrs
53
4adb943a 54FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
fe4da5cc 55
56# C Objects
57
4adb943a 58COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
fe4da5cc 59
60# C++ Objects
61
4adb943a 62OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
fe4da5cc 63
64# C++ compilation flags
65
66CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
67
68# FORTRAN compilation flags
69
70FFLAGS = $(FOPT)
71
72##### TARGETS #####
73
74# Target
75
cb342460 76SLIBRARY = $(LIBDIR)/libMUON.$(SL)
77ALIBRARY = $(LIBDIR)/libMUON.a
fe4da5cc 78
79default: $(SLIBRARY)
80
cb342460 81$(LIBDIR)/libMUON.$(SL): $(OBJS) $(FOBJS)
fe4da5cc 82
83$(DICT): $(HDRS)
84
85depend: $(SRCS)
86
87TOCLEAN = $(OBJS) $(FOBJS) *Cint.cxx *Cint.h
88
7065831b 89CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS))
90
fe4da5cc 91############################### General Macros ################################
92
93include $(ALICE_ROOT)/conf/GeneralMacros
94
95############################ Dependencies #####################################
96
1207d6f2 97-include tgt_$(ALICE_TARGET)/Make-depend