]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/Makefile
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / STRUCT / Makefile
CommitLineData
fe4da5cc 1############################### STRUCT Makefile ###############################
2
3# Include machine specific definitions
4
5include $(ALICE_ROOT)/conf/GeneralDef
6include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
7
8PACKAGE = STRUCT
9
10# C++ sources
11
12SRCS = AliMAG.cxx AliABSO.cxx \
13 AliDIPO.cxx AliDIPOv1.cxx AliDIPOv2.cxx \
14 AliFRAME.cxx AliFRAMEv0.cxx AliFRAMEv1.cxx \
15 AliHALL.cxx AliSHIL.cxx \
16 AliPIPE.cxx AliPIPEv0.cxx AliPIPEv1.cxx \
17 AliBODY.cxx
18
19# C++ Headers
20
21HDRS = $(SRCS:.cxx=.h) STRUCTLinkDef.h
22
23# Library dictionary
24
25DICT = STRUCTCint.cxx
26DICTH = $(DICT:.cxx=.h)
27DICTO = $(DICT:.cxx=.o)
28
29# FORTRAN Objectrs
30
31FOBJS = $(FSRCS:.f=.o)
32
33# C Objects
34
35COBJS = $(CSRCS:.c=.o)
36
37# C++ Objects
38
39OBJS = $(SRCS:.cxx=.o) $(DICTO)
40
41# C++ compilation flags
42
43CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
44
45# FORTRAN compilation flags
46
47FFLAGS = $(FOPT)
48
49##### TARGETS #####
50
51# Target
52
53SLIBRARY = $(ALICE_ROOT)/lib/libSTRUCT.$(SL)
54ALIBRARY = $(ALICE_ROOT)/lib/libSTRUCT.a
55
56default: $(SLIBRARY)
57
58$(ALICE_ROOT)/lib/libSTRUCT.$(SL): $(OBJS)
59
60$(DICT): $(HDRS)
61
62depend: $(SRCS)
63
64TOCLEAN = $(OBJS) *Cint.cxx *Cint.h
65
66############################### General Macros ################################
67
68include $(ALICE_ROOT)/conf/GeneralMacros
69
70############################ Dependencies #####################################
71
72include Make-depend