]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/Makefile
30e58a7a9892ef5fde85fcbe1eac44246c82dfeb
[u/mrichter/AliRoot.git] / RICH / Makefile
1 ############################### RICH 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 = RICH
9
10 # C++ sources
11
12 SRCS          = AliRICH.cxx
13
14 # C++ Headers
15
16 HDRS          = $(SRCS:.cxx=.h) RICHLinkDef.h
17
18 # Library dictionary
19
20 DICT          = RICHCint.cxx
21 DICTH         = $(DICT:.cxx=.h)
22 DICTO         = $(DICT:.cxx=.o)
23
24 # FORTRAN Objectrs
25
26 FOBJS         = $(FSRCS:.f=.o)
27
28 # C Objects
29
30 COBJS         = $(CSRCS:.c=.o)
31
32 # C++ Objects
33
34 OBJS          = $(SRCS:.cxx=.o) $(DICTO)
35
36 # C++ compilation flags
37
38 CXXFLAGS      = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
39  
40 # FORTRAN compilation flags
41
42 FFLAGS      = $(FOPT)
43
44 ##### TARGETS #####
45  
46 # Target
47
48 SLIBRARY        = $(ALICE_ROOT)/lib/libRICH.$(SL)
49 ALIBRARY        = $(ALICE_ROOT)/lib/libRICH.a
50
51 default:        $(SLIBRARY)
52
53 $(ALICE_ROOT)/lib/libRICH.$(SL):                $(OBJS)
54
55 $(DICT):                                $(HDRS)
56
57 depend:                                 $(SRCS)
58
59 TOCLEAN         = $(OBJS) *Cint.cxx *Cint.h
60
61 ############################### General Macros ################################
62
63 include $(ALICE_ROOT)/conf/GeneralMacros
64
65 ############################ Dependencies #####################################
66
67 -include Make-depend