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 | |
12 | SRCS = AliSimpleGen.cxx AliGenCocktail.cxx AliGenFLUKAsource.cxx \ |
13 | AliGenMUONlib.cxx AliGenParam.cxx AliGenPythia.cxx \ |
dafbc1c5 |
14 | AliPythia.cxx AliDimuCombinator.cxx AliGenHalo.cxx \ |
829cce29 |
15 | AliGenExtFile.cxx AliGenScan.cxx |
fe4da5cc |
16 | # C++ Headers |
17 | |
18 | HDRS = $(SRCS:.cxx=.h) EVGENLinkDef.h |
19 | |
20 | # Library dictionary |
21 | |
22 | DICT = EVGENCint.cxx |
23 | DICTH = $(DICT:.cxx=.h) |
4adb943a |
24 | DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT)) |
fe4da5cc |
25 | |
26 | # FORTRAN Objectrs |
27 | |
4adb943a |
28 | FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS)) |
fe4da5cc |
29 | |
30 | # C Objects |
31 | |
4adb943a |
32 | COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS)) |
fe4da5cc |
33 | |
34 | # C++ Objects |
35 | |
4adb943a |
36 | OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO) |
fe4da5cc |
37 | |
38 | # C++ compilation flags |
39 | |
40 | CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/ |
41 | |
42 | # FORTRAN compilation flags |
43 | |
44 | FFLAGS = $(FOPT) |
45 | |
46 | ##### TARGETS ##### |
47 | |
48 | # Target |
49 | |
cb342460 |
50 | SLIBRARY = $(LIBDIR)/libEVGEN.$(SL) |
51 | ALIBRARY = $(LIBDIR)/libEVGEN.a |
fe4da5cc |
52 | |
31ccd13b |
53 | default: $(SLIBRARY) |
fe4da5cc |
54 | |
cb342460 |
55 | $(LIBDIR)/libEVGEN.$(SL): $(OBJS) |
fe4da5cc |
56 | |
57 | $(DICT): $(HDRS) |
58 | |
59 | depend: $(SRCS) |
60 | |
61 | HEADERS = $(filter-out %LinkDef.h,$(HDRS)) |
62 | |
63 | TOCLEAN = $(OBJS) *Cint.cxx *Cint.h |
64 | |
65 | ############################### General Macros ################################ |
66 | |
67 | include $(ALICE_ROOT)/conf/GeneralMacros |
68 | |
69 | ############################ Dependencies ##################################### |
70 | |
f2bd4a7f |
71 | -include Make-depend |