]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/Makefile
Remove warnings on HP-UX
[u/mrichter/AliRoot.git] / START / Makefile
CommitLineData
6ca40650 1###############################START Makefile##################################
2
3# Include machine specific definitions
4
5include $(ALICE_ROOT)/conf/GeneralDef
6include $(ALICE_ROOT)/conf/MachineDef.$(ALICE_TARGET)
7
8PACKAGE = START
9
10# C++ sources
11
12SRCS = AliSTART.cxx AliSTARTv0.cxx
13
14# C++ Headers
15
16HDRS = $(SRCS:.cxx=.h) STARTLinkDef.h
17
18# Library dictionary
19
20DICT = STARTCint.cxx
21DICTH = $(DICT:.cxx=.h)
22DICTO = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(DICT))
23
24# FORTRAN Objectrs
25
26FOBJS = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
27
28# C Objects
29
30COBJS = $(patsubst %.c,tgt_$(ALICE_TARGET)/%.o,$(CSRCS))
31
32# C++ Objects
33
34OBJS = $(patsubst %.cxx,tgt_$(ALICE_TARGET)/%.o,$(SRCS)) $(DICTO)
35
36# C++ compilation flags
37
38CXXFLAGS = $(CXXOPTS) -I$(ROOTSYS)/include -I. -I$(ALICE_ROOT)/include/
39
40# FORTRAN compilation flags
41
42FFLAGS = $(FOPT)
43
44##### TARGETS #####
45
46# Target
47
48SLIBRARY = $(LIBDIR)/libSTART.$(SL)
49ALIBRARY = $(LIBDIR)/libSTART.a
50
51default: $(SLIBRARY)
52
53$(LIBDIR)/libSTART.$(SL): $(OBJS)
54
55$(DICT): $(HDRS)
56
57depend: $(SRCS)
58
59TOCLEAN = $(OBJS) *Cint.cxx *Cint.h
60
61############################### General Macros ################################
62
63include $(ALICE_ROOT)/conf/GeneralMacros
64
65############################ Dependencies #####################################
66
67-include tgt_$(ALICE_TARGET)/Make-depend
68
69
70### Target check creates violation reports (.viol), which depend on
71### stripped files (.ii), which in turn depend on preprocessed
72### files (.i). Dependences are in conf/GeneralDef.
73
74CHECKS = $(patsubst %.cxx,check/%.viol,$(SRCS))
75
76check: $(CHECKS)
77