]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ALIFAST/Makefile
Removal of useless dependencies via forward declarations
[u/mrichter/AliRoot.git] / ALIFAST / Makefile
CommitLineData
65a39007 1############################### ALIFAST Makefile ##################################
2
3# Include machine specific definitions
4
5include $(ALICE_ROOT)/conf/GeneralDef
6include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
7
8PACKAGE = ALIFAST
9
10# C++ sources
11
12SRCS = AliFast.cxx AliFMaker.cxx AliFDet.cxx AliFTrackMaker.cxx \
13 AliFTrack.cxx AliFHistBrowser.cxx AliFBigBang.cxx \
14 AliFBrowsable.cxx AliFVirtualDisplay.cxx
15
16# C++ Headers
17
18HDRS = $(SRCS:.cxx=.h) ALIFASTLinkDef.h
19
20# Library dictionary
21
22DICT = ALIFASTCint.cxx
23DICTH = $(DICT:.cxx=.h)
24DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
25
26# FORTRAN Objectrs
27
28FOBJS = $(FSRCS:.f=.o)
29
30# C Objects
31
32COBJS = $(CSRCS:.c=.o)
33
34# C++ Objects
35
36OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
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
50SLIBRARY = $(LIBDIR)/libALIFAST.$(SL)
51
52default: $(SLIBRARY)
53
54$(LIBDIR)/libALIFAST.$(SL): $(OBJS)
55
56$(DICT): $(HDRS)
57
58depend: $(SRCS)
59
60TOCLEAN = $(OBJS) *Cint.h *Cint.cxx
61
e2fe4c02 62CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS))
63
65a39007 64############################### General Macros ################################
65
66include $(ALICE_ROOT)/conf/GeneralMacros
67
71c8ffe8 68CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS))
69
65a39007 70############################ Dependencies #####################################
71
72-include tgt_$(ALICE_TARGET)/Make-depend
73
74