]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/Makefile
Convert geant particle code into pdg code before putting particle on the stack.
[u/mrichter/AliRoot.git] / PHOS / Makefile
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
12 SRCS          =    AliPHOS.cxx AliPHOSv0.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 
21
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)
31 DICTO         = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
32
33 # C++ Objects
34
35 OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
36
37 # C++ compilation flags
38
39 CXXFLAGS      = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
40
41 ALSRCS  = $(SRCS) $(SHSRCS) $(RCSRCS) $(DUSRCS) dummies.c
42
43 ALOBJS  = $(SHOBJS) $(RCOBJS) $(DUOBJS)
44
45 ##### COMMANDS ##### 
46
47 SLIBRARY        = $(LIBDIR)/libPHOS.$(SL)
48
49 default:        $(SLIBRARY)
50
51 $(LIBDIR)/libPHOS.$(SL):                        $(OBJS) $(FOBJS)
52
53 $(DICT):                                        $(HDRS)
54
55 depend:                         $(SRCS) 
56
57 TOCLEAN         =        $(OBJS) *Cint.cxx *Cint.h
58
59 ############################### General Macros ################################
60
61 include $(ALICE_ROOT)/conf/GeneralMacros
62
63 ############################ Dependencies #####################################
64
65 -include tgt_$(ALICE_TARGET)/Make-depend 
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