]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/Makefile
Option kPyCharmPbMNR added. Produce charm pairs in agreement with MNR
[u/mrichter/AliRoot.git] / EVGEN / Makefile
CommitLineData
fe4da5cc 1############################### EVGEN Makefile ################################
2
3# Include machine specific definitions
4
5include $(ALICE_ROOT)/conf/GeneralDef
6include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
7
8PACKAGE = EVGEN
9
10# C++ sources
11
3a406909 12SRCS = AliGenHIJINGpara.cxx AliGenHIJINGparaBa.cxx \
13 AliGenBox.cxx AliGenFixed.cxx \
8828a23e 14 AliGenCocktail.cxx AliGenFLUKAsource.cxx \
b22ee262 15 AliGenLib.cxx \
fe4da5cc 16 AliGenMUONlib.cxx AliGenParam.cxx AliGenPythia.cxx \
dafbc1c5 17 AliPythia.cxx AliDimuCombinator.cxx AliGenHalo.cxx \
14ab5373 18 AliGenHaloProtvino.cxx \
1c7eb2b8 19 AliGenExtFile.cxx AliGenScan.cxx AliGenPHOSlib.cxx \
014616eb 20 AliGenDoubleScan.cxx AliGenCocktailEntry.cxx \
87f8f72e 21 AliGenGSIlib.cxx AliGenPMDlib.cxx AliGenSTRANGElib.cxx \
56a10437 22 AliGenHijing.cxx \
c0ac61ca 23 AliGenHijingEventHeader.cxx AliGenPythiaEventHeader.cxx \
4005df34 24 AliDecayer.cxx AliDecayerPythia.cxx \
e36044d6 25 AliGenMevSim.cxx AliMevSimParticle.cxx AliMevSimConfig.cxx \
2b9786f4 26 AliGenMC.cxx AliGenCocktailAfterBurner.cxx \
7abc54a0 27 AliGenHBTprocessor.cxx \
3a406909 28 AliGenReader.cxx AliGenReaderCwn.cxx AliGenReaderTreeK.cxx \
29 AliGenReaderEcalHijing.cxx AliGenReaderEcalJets.cxx
fe4da5cc 30# C++ Headers
31
65fb704d 32HDRS = $(SRCS:.cxx=.h) $(ALICE_ROOT)/include/THijing.h \
33 $(ROOTSYS)/include/TF1.h $(ROOTSYS)/include/TChain.h \
ced9217f 34 $(ROOTSYS)/include/TParticle.h \
65fb704d 35 EVGENLinkDef.h
fe4da5cc 36
37# Library dictionary
38
39DICT = EVGENCint.cxx
ced9217f 40DICTH = $(DICT:.cxx=.h)
4adb943a 41DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
fe4da5cc 42
43# FORTRAN Objectrs
44
4adb943a 45FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
fe4da5cc 46
47# C Objects
48
4adb943a 49COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
fe4da5cc 50
51# C++ Objects
52
4adb943a 53OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
fe4da5cc 54
55# C++ compilation flags
56
9e1a0ddb 57CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I$(ALICE_ROOT)/include/ -I$(ALICE_ROOT)/TMevSim -I.
fe4da5cc 58
59# FORTRAN compilation flags
60
61FFLAGS = $(FOPT)
62
63##### TARGETS #####
64
65# Target
66
cb342460 67SLIBRARY = $(LIBDIR)/libEVGEN.$(SL)
68ALIBRARY = $(LIBDIR)/libEVGEN.a
fe4da5cc 69
31ccd13b 70default: $(SLIBRARY)
fe4da5cc 71
cb342460 72$(LIBDIR)/libEVGEN.$(SL): $(OBJS)
fe4da5cc 73
74$(DICT): $(HDRS)
75
76depend: $(SRCS)
77
a5599301 78HEADERS = AliPythia.h AliDecayer.h AliDecayerPythia.h AliGenHijingEventHeader.h
50614497 79
31e7c749 80TOCLEAN = $(OBJS) *Cint.cxx *Cint.h
fe4da5cc 81
e2fe4c02 82CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS))
83
fe4da5cc 84############################### General Macros ################################
85
86include $(ALICE_ROOT)/conf/GeneralMacros
87
88############################ Dependencies #####################################
89
1207d6f2 90-include tgt_$(ALICE_TARGET)/Make-depend
41f6cf69 91
41f6cf69 92
93
94
95
96
97