fe4da5cc |
1 | ############################### STEER 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 = STEER |
9 | |
10 | # C++ sources |
11 | |
2a33668d |
12 | SRCS = AliDetector.cxx AliHeader.cxx AliMagF.cxx \ |
13 | AliDigit.cxx AliHit.cxx AliPoints.cxx \ |
14 | AliDisplay.cxx AliMC.cxx AliRun.cxx AliGenerator.cxx \ |
15 | AliLego.cxx AliModule.cxx AliDigitNew.cxx \ |
d9d543ab |
16 | AliGeometry.cxx AliRecPoint.cxx AliSegmentation.cxx \ |
aee8290b |
17 | AliHitMap.cxx AliMagFC.cxx AliMagFCM.cxx \ |
c5ca52b2 |
18 | AliMagFDM.cxx AliLegoGenerator.cxx AliLegoGeneratorXYZ.cxx\ |
56050439 |
19 | AliLegoGeneratorPhiZ.cxx AliLegoGeneratorEta.cxx \ |
20 | AliRndm.cxx \ |
be9c5115 |
21 | AliKalmanTrack.cxx AliCluster.cxx AliTracker.cxx\ |
9e1a0ddb |
22 | AliMCQA.cxx AliPDG.cxx AliDebugVolume.cxx \ |
6a3d29f5 |
23 | AliGenEventHeader.cxx AliStack.cxx AliConfig.cxx \ |
3b57baa7 |
24 | AliRunDigitizer.cxx AliDigitizer.cxx\ |
25 | AliStream.cxx AliMergeCombi.cxx \ |
740ebff3 |
26 | AliMagFMaps.cxx AliFieldMap.cxx \ |
137133f5 |
27 | AliGausCorr.cxx AliTrackReference.cxx AliESD.cxx \ |
28 | AliTrackMap.cxx AliTrackMapper.cxx |
be7e3cf6 |
29 | |
fe4da5cc |
30 | # C++ Headers |
31 | |
65fb704d |
32 | HDRS = $(SRCS:.cxx=.h) AliPDG.h $(ROOTSYS)/include/TH2.h \ |
33 | $(ROOTSYS)/include/TRandom.h STEERLinkDef.h |
fe4da5cc |
34 | |
35 | # Library dictionary |
36 | |
37 | DICT = STEERCint.cxx |
38 | DICTH = $(DICT:.cxx=.h) |
4adb943a |
39 | DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT)) |
fe4da5cc |
40 | |
41 | # FORTRAN Objectrs |
42 | |
4adb943a |
43 | FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS)) |
fe4da5cc |
44 | |
45 | # C Objects |
46 | |
4adb943a |
47 | COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS)) |
fe4da5cc |
48 | |
49 | # C++ Objects |
50 | |
4adb943a |
51 | OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO) |
fe4da5cc |
52 | |
53 | # C++ compilation flags |
54 | |
55 | CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/ |
56 | |
57 | # FORTRAN compilation flags |
58 | |
59 | FFLAGS = $(FOPT) |
60 | |
61 | ##### TARGETS ##### |
62 | |
63 | # Target |
64 | |
cb342460 |
65 | SLIBRARY = $(LIBDIR)/libSTEER.$(SL) |
66 | ALIBRARY = $(LIBDIR)/lib/libSTEER.a |
fe4da5cc |
67 | |
31ccd13b |
68 | default: $(SLIBRARY) |
fe4da5cc |
69 | |
cb342460 |
70 | $(LIBDIR)/libSTEER.$(SL): $(OBJS) |
fe4da5cc |
71 | |
72 | $(DICT): $(HDRS) |
73 | |
74 | depend: $(SRCS) |
75 | |
81fab828 |
76 | HEADERS = $(SRCS:.cxx=.h) AliPDG.h AliConst.h AliCallf77.h AliMCProcess.h AliConfig.h AliGenEventHeader.h AliGausCorr.h |
fe4da5cc |
77 | |
78 | TOCLEAN = $(OBJS) *Cint.cxx *Cint.h |
79 | |
94de3818 |
80 | CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS)) |
e2fe4c02 |
81 | |
fe4da5cc |
82 | ############################### General Macros ################################ |
83 | |
84 | include $(ALICE_ROOT)/conf/GeneralMacros |
85 | |
86 | ############################ Dependencies ##################################### |
87 | |
1207d6f2 |
88 | -include tgt_$(ALICE_TARGET)/Make-depend |
41f6cf69 |
89 | |
90 | |
91 | |
92 | |
93 | |
94 | |
95 | |