fe4da5cc |
1 | ############################### PHOS 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 = PHOS |
9 | |
10 | # C++ sources |
11 | |
cce428fe |
12 | SRCS = AliPHOS.cxx AliPHOSv0.cxx AliPHOSv0_hits.cxx AliPHOSv1.cxx AliPHOSHit.cxx \ |
13 | AliPHOSGeometry.cxx \ |
14 | AliPHOSDigit.cxx \ |
15 | AliPHOSRecPoint.cxx AliPHOSEmcRecPoint.cxx AliPHOSPpsdRecPoint.cxx \ |
16 | AliPHOSClusterizer.cxx AliPHOSClusterizerv1.cxx AliPHOSLink.cxx \ |
17 | AliPHOSReconstructioner.cxx AliPHOSTrackSegment.cxx \ |
18 | AliPHOSTrackSegmentMaker.cxx AliPHOSTrackSegmentMakerv1.cxx \ |
19 | AliPHOSRecParticle.cxx AliPHOSPID.cxx AliPHOSPIDv1.cxx \ |
20 | AliPHOSAnalyze.cxx AliPHOSvFast.cxx AliPHOSFastRecParticle.cxx \ |
21 | AliPHOSIndexToObject.cxx \ |
fe4da5cc |
22 | |
23 | # C++ Headers |
24 | |
25 | HDRS = $(SRCS:.cxx=.h) PHOSLinkDef.h |
26 | |
27 | # Library dictionary |
28 | |
29 | DICT = PHOSCint.cxx |
30 | DICTH = $(DICT:.cxx=.h) |
4adb943a |
31 | DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT)) |
fe4da5cc |
32 | |
fe4da5cc |
33 | # C++ Objects |
34 | |
4adb943a |
35 | OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO) |
fe4da5cc |
36 | |
37 | # C++ compilation flags |
38 | |
39 | CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/ |
fe4da5cc |
40 | |
d15a28e7 |
41 | ALSRCS = $(SRCS) $(SHSRCS) $(RCSRCS) $(DUSRCS) dummies.c |
fe4da5cc |
42 | |
d15a28e7 |
43 | ALOBJS = $(SHOBJS) $(RCOBJS) $(DUOBJS) |
fe4da5cc |
44 | |
45 | ##### COMMANDS ##### |
46 | |
52005fc3 |
47 | SLIBRARY = $(LIBDIR)/libPHOS.$(SL) |
fe4da5cc |
48 | |
49 | default: $(SLIBRARY) |
50 | |
cb342460 |
51 | $(LIBDIR)/libPHOS.$(SL): $(OBJS) $(FOBJS) |
fe4da5cc |
52 | |
53 | $(DICT): $(HDRS) |
54 | |
52005fc3 |
55 | depend: $(SRCS) |
fe4da5cc |
56 | |
d15a28e7 |
57 | TOCLEAN = $(OBJS) *Cint.cxx *Cint.h |
fe4da5cc |
58 | |
59 | ############################### General Macros ################################ |
60 | |
61 | include $(ALICE_ROOT)/conf/GeneralMacros |
62 | |
63 | ############################ Dependencies ##################################### |
64 | |
1207d6f2 |
65 | -include tgt_$(ALICE_TARGET)/Make-depend |
41f6cf69 |
66 | |
67 | ### Target check creates violation reports (.viol), which depend on |
68 | ### stripped files (.ii), which in turn depend on preprocessed |
69 | ### files (.i). Dependences are in conf/GeneralDef. |
70 | |
71 | CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS)) |
72 | |
73 | check: $(CHECKS) |
74 | |
75 | |
76 | |
77 | |
78 | |
79 | |
80 | |