fe4da5cc |
1 | ############################### MUON 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 = MUON |
9 | |
10 | # C++ sources |
11 | |
a897a37a |
12 | SRCS = AliMUONchamber.cxx AliMUONSegResV0.cxx AliMUONSegResV01.cxx \ |
13 | AliMUONSegResV02.cxx AliMUONSegResV04.cxx AliMUONSegResV05.cxx\ |
14 | AliMUONSegResV1.cxx AliMUON.cxx AliMUONv0.cxx \ |
15 | AliMUONdisplay.cxx AliMUONpoints.cxx \ |
16 | AliMUONClusterFinder.cxx AliMUONClusterFinderv0.cxx \ |
17 | AliMUONHitMap.cxx AliMUONTUBE.cxx |
fe4da5cc |
18 | |
19 | # C++ Headers |
20 | |
21 | HDRS = $(SRCS:.cxx=.h) AliMUONConst.h MUONLinkDef.h |
22 | |
23 | # Library dictionary |
24 | |
25 | DICT = MUONCint.cxx |
26 | DICTH = $(DICT:.cxx=.h) |
4adb943a |
27 | DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT)) |
fe4da5cc |
28 | |
29 | # Fortran sources |
30 | |
a897a37a |
31 | FSRCS = algo.F reco_muon.F |
fe4da5cc |
32 | |
33 | # FORTRAN Objectrs |
34 | |
4adb943a |
35 | FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS)) |
fe4da5cc |
36 | |
37 | # C Objects |
38 | |
4adb943a |
39 | COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS)) |
fe4da5cc |
40 | |
41 | # C++ Objects |
42 | |
4adb943a |
43 | OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO) |
fe4da5cc |
44 | |
45 | # C++ compilation flags |
46 | |
47 | CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/ |
48 | |
49 | # FORTRAN compilation flags |
50 | |
51 | FFLAGS = $(FOPT) |
52 | |
53 | ##### TARGETS ##### |
54 | |
55 | # Target |
56 | |
cb342460 |
57 | SLIBRARY = $(LIBDIR)/libMUON.$(SL) |
58 | ALIBRARY = $(LIBDIR)/libMUON.a |
fe4da5cc |
59 | |
60 | default: $(SLIBRARY) |
61 | |
cb342460 |
62 | $(LIBDIR)/libMUON.$(SL): $(OBJS) $(FOBJS) |
fe4da5cc |
63 | |
64 | $(DICT): $(HDRS) |
65 | |
66 | depend: $(SRCS) |
67 | |
68 | TOCLEAN = $(OBJS) $(FOBJS) *Cint.cxx *Cint.h |
69 | |
70 | ############################### General Macros ################################ |
71 | |
72 | include $(ALICE_ROOT)/conf/GeneralMacros |
73 | |
74 | ############################ Dependencies ##################################### |
75 | |
1207d6f2 |
76 | -include tgt_$(ALICE_TARGET)/Make-depend |
fe4da5cc |
77 | |
41f6cf69 |
78 | |
79 | ### Target check creates violation reports (.viol), which depend on |
80 | ### stripped files (.ii), which in turn depend on preprocessed |
81 | ### files (.i). Dependences are in conf/GeneralDef. |
82 | |
83 | CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS)) |
84 | |
85 | check: $(CHECKS) |
86 | |