]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/Makefile
New version of AliGeVSim code. New class for flow afterburner (S.Radomski)
[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 \
7816887f 29 AliGenReaderEcalHijing.cxx AliGenReaderEcalJets.cxx \
4966b266 30 AliGeVSimParticle.cxx AliGenGeVSim.cxx \
31 AliGenAfterBurnerFlow.cxx
32
c416706e 33
7816887f 34
fe4da5cc 35# C++ Headers
36
65fb704d 37HDRS = $(SRCS:.cxx=.h) $(ALICE_ROOT)/include/THijing.h \
38 $(ROOTSYS)/include/TF1.h $(ROOTSYS)/include/TChain.h \
ced9217f 39 $(ROOTSYS)/include/TParticle.h \
65fb704d 40 EVGENLinkDef.h
fe4da5cc 41
42# Library dictionary
43
44DICT = EVGENCint.cxx
ced9217f 45DICTH = $(DICT:.cxx=.h)
4adb943a 46DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
fe4da5cc 47
48# FORTRAN Objectrs
49
4adb943a 50FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
fe4da5cc 51
52# C Objects
53
4adb943a 54COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
fe4da5cc 55
56# C++ Objects
57
4adb943a 58OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
fe4da5cc 59
60# C++ compilation flags
61
9e1a0ddb 62CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I$(ALICE_ROOT)/include/ -I$(ALICE_ROOT)/TMevSim -I.
fe4da5cc 63
64# FORTRAN compilation flags
65
66FFLAGS = $(FOPT)
67
68##### TARGETS #####
69
70# Target
71
cb342460 72SLIBRARY = $(LIBDIR)/libEVGEN.$(SL)
73ALIBRARY = $(LIBDIR)/libEVGEN.a
fe4da5cc 74
31ccd13b 75default: $(SLIBRARY)
fe4da5cc 76
cb342460 77$(LIBDIR)/libEVGEN.$(SL): $(OBJS)
fe4da5cc 78
79$(DICT): $(HDRS)
80
81depend: $(SRCS)
82
a5599301 83HEADERS = AliPythia.h AliDecayer.h AliDecayerPythia.h AliGenHijingEventHeader.h
50614497 84
31e7c749 85TOCLEAN = $(OBJS) *Cint.cxx *Cint.h
fe4da5cc 86
e2fe4c02 87CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS))
88
fe4da5cc 89############################### General Macros ################################
90
91include $(ALICE_ROOT)/conf/GeneralMacros
92
93############################ Dependencies #####################################
94
1207d6f2 95-include tgt_$(ALICE_TARGET)/Make-depend
41f6cf69 96
41f6cf69 97
98
99
100
101
102