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