fe4da5cc |
1 | ############################### EVGEN 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 = EVGEN |
9 | |
10 | # C++ sources |
11 | |
8828a23e |
12 | SRCS = AliGenHIJINGpara.cxx AliGenBox.cxx AliGenFixed.cxx \ |
13 | AliGenCocktail.cxx AliGenFLUKAsource.cxx \ |
fe4da5cc |
14 | AliGenMUONlib.cxx AliGenParam.cxx AliGenPythia.cxx \ |
dafbc1c5 |
15 | AliPythia.cxx AliDimuCombinator.cxx AliGenHalo.cxx \ |
1c7eb2b8 |
16 | AliGenExtFile.cxx AliGenScan.cxx AliGenPHOSlib.cxx \ |
014616eb |
17 | AliGenDoubleScan.cxx AliGenCocktailEntry.cxx \ |
34ae4501 |
18 | AliGenGSIlib.cxx \ |
56a10437 |
19 | AliGenHijing.cxx \ |
20 | AliGenEventHeader.cxx AliGenHijingEventHeader.cxx |
fe4da5cc |
21 | # C++ Headers |
22 | |
23 | HDRS = $(SRCS:.cxx=.h) EVGENLinkDef.h |
24 | |
25 | # Library dictionary |
26 | |
27 | DICT = EVGENCint.cxx |
28 | DICTH = $(DICT:.cxx=.h) |
4adb943a |
29 | DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT)) |
fe4da5cc |
30 | |
31 | # FORTRAN Objectrs |
32 | |
4adb943a |
33 | FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS)) |
fe4da5cc |
34 | |
35 | # C Objects |
36 | |
4adb943a |
37 | COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS)) |
fe4da5cc |
38 | |
39 | # C++ Objects |
40 | |
4adb943a |
41 | OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO) |
fe4da5cc |
42 | |
43 | # C++ compilation flags |
44 | |
45 | CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/ |
46 | |
47 | # FORTRAN compilation flags |
48 | |
49 | FFLAGS = $(FOPT) |
50 | |
51 | ##### TARGETS ##### |
52 | |
53 | # Target |
54 | |
cb342460 |
55 | SLIBRARY = $(LIBDIR)/libEVGEN.$(SL) |
56 | ALIBRARY = $(LIBDIR)/libEVGEN.a |
fe4da5cc |
57 | |
31ccd13b |
58 | default: $(SLIBRARY) |
fe4da5cc |
59 | |
cb342460 |
60 | $(LIBDIR)/libEVGEN.$(SL): $(OBJS) |
fe4da5cc |
61 | |
62 | $(DICT): $(HDRS) |
63 | |
64 | depend: $(SRCS) |
65 | |
66 | HEADERS = $(filter-out %LinkDef.h,$(HDRS)) |
67 | |
68 | TOCLEAN = $(OBJS) *Cint.cxx *Cint.h |
69 | |
e2fe4c02 |
70 | CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS)) |
71 | |
fe4da5cc |
72 | ############################### General Macros ################################ |
73 | |
74 | include $(ALICE_ROOT)/conf/GeneralMacros |
75 | |
76 | ############################ Dependencies ##################################### |
77 | |
1207d6f2 |
78 | -include tgt_$(ALICE_TARGET)/Make-depend |
41f6cf69 |
79 | |
41f6cf69 |
80 | |
81 | |
82 | |
83 | |
84 | |
85 | |