]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TIsajet/Makefile
First commit.
[u/mrichter/AliRoot.git] / TIsajet / Makefile
1 ############################### THijing 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 = TIsajet
9
10 # FORTRAN sources
11
12 FSRCS        = 
13
14 # C++ sources
15
16 SRCS          = TIsajet.cxx 
17
18 # C++ Headers
19
20 HDRS          = $(SRCS:.cxx=.h) TIsajetLinkDef.h
21
22 # Library dictionary
23
24 DICT          = TIsajetCint.cxx
25 DICTH         = $(DICT:.cxx=.h)
26 DICTO         = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
27
28 # Objects
29
30 OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(FOBJS) $(DICTO)
31
32 # FORTRAN Objectrs
33
34 FOBJS         = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
35
36 # C Objects
37
38 COBJS         = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
39
40 # C++ Objects
41
42 OBJS          = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
43
44 # C++ compilation flags
45
46 CXXFLAGS      = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
47  
48 # FORTRAN compilation flags
49
50 FFLAGS      = $(FOPT)
51
52 ##### TARGETS #####
53  
54 # Target
55
56 SLIBRARY        = $(LIBDIR)/libTIsajet.$(SL)
57 ALIBRARY        = $(LIBDIR)/libTIsajet.a
58
59 default:        $(SLIBRARY)
60
61 $(LIBDIR)/libTIsajet.$(SL):             $(OBJS)
62
63 $(DICT):                                $(HDRS)
64
65 depend:                 $(SRCS) $(FSRCS)
66
67 HEADERS         = TIsajet.h
68
69 TOCLEAN         = $(OBJS) *Cint.cxx *Cint.h
70
71 CHECKS        = $(patsubst %.cxx,check/%.viol,$(SRCS))
72
73 ############################### General Macros ################################
74
75 include $(ALICE_ROOT)/conf/GeneralMacros
76
77 ############################ Dependencies #####################################
78
79 -include tgt_$(ALICE_TARGET)/Make-depend 
80
81
82
83
84
85
86
87