]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/Makefile
New TRD version now inserted in the space frame
[u/mrichter/AliRoot.git] / TRD / Makefile
CommitLineData
fe4da5cc 1############################### TRD Makefile ##################################
2
3# Include machine specific definitions
4
5include $(ALICE_ROOT)/conf/GeneralDef
6include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
7
8# Package name
9
10PACKAGE = TRD
11
12# C++ sources
13
14SRCS = AliTRD.cxx AliTRDv0.cxx AliTRDv1.cxx AliTRDv2.cxx
15
16# C++ Headers
17
18HDRS = $(SRCS:.cxx=.h) TRDLinkDef.h
19
20# Library dictionary
21
22DICT = TRDCint.cxx
23DICTH = $(DICT:.cxx=.h)
4adb943a 24DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
fe4da5cc 25
26# FORTRAN Objectrs
27
4adb943a 28FOBJS = $(patsubst %.f,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
fe4da5cc 29
30# C Objects
31
4adb943a 32COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
fe4da5cc 33
34# C++ Objects
35
4adb943a 36OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
fe4da5cc 37
38# C++ compilation flags
39
40CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include
41
42# FORTRAN compilation flags
43
44FFLAGS = $(FOPT)
45
46##### TARGETS #####
47
48# Target
49
cb342460 50SLIBRARY = $(LIBDIR)/libTRD.$(SL)
51ALIBRARY = $(LIBDIR)/libTRD.a
fe4da5cc 52
31ccd13b 53default: $(SLIBRARY)
fe4da5cc 54
cb342460 55$(LIBDIR)/libTRD.$(SL): $(OBJS)
fe4da5cc 56
57TRDCint.cxx: $(HDRS)
58
fe4da5cc 59depend: $(SRCS)
60
61TOCLEAN = $(OBJS) *Cint.h *Cint.cxx
62
63############################### General Macros ################################
64
65include $(ALICE_ROOT)/conf/GeneralMacros
66
67############################ Dependencies #####################################
68
9f84158c 69-include Make-depend