]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HIJING/Makefile
Change of argument list of methods GetPadCxy, GetPadIxy, SetHit and FirstPad
[u/mrichter/AliRoot.git] / HIJING / Makefile
1 ############################### PYTHIA 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 = HIJING
9
10 # C++ sources
11
12 SRCS          =
13 ##### MACROS #####
14
15 FSRCS   = $(wildcard hipyset1_35/*.F) $(wildcard hijing1_36/*.F)
16
17 FOBJS   = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(FSRCS))
18
19 SRCS    = $(FSRCS)
20 OBJS    = $(FOBJS)
21
22 DSRCS   = dummyhijing.F
23
24 DOBJS   = $(patsubst %.F,tgt_$(ALICE_TARGET)/%.o,$(DSRCS))
25
26 # C++ compilation flags
27
28 CXXFLAGS      = $(CXXOPTS) $(CLIBCXXOPTS) $(CLIBDEFS)
29  
30 # C compilation flags
31
32 CFLAGS      = $(COPT) (CLIBCOPT) $(CLIBDEFS)
33  
34 # FORTRAN compilation flags
35
36 FFLAGS      = $(FOPT) $(CLIBFOPT) $(CLIBDEFS) -Ihijing
37  
38 ##### TARGETS #####
39  
40 # Target
41
42 SLIBRARY        = $(LIBDIR)/libhijing.$(SL) $(LIBDIR)/libdummyhijing.$(SL)
43 ALIBRARY        = $(LIBDIR)/libhijing.a
44
45 default:        $(SLIBRARY)
46
47 $(LIBDIR)/libhijing.$(SL):  $(OBJS)
48 $(LIBDIR)/libdummyhijing.$(SL):  $(DOBJS)
49
50 depend:                 $(SRCS) $(DSRCS)
51
52 TOCLEAN         = $(OBJS) $(DOBJS) *Cint.cxx *Cint.h
53
54 ############################### General Macros ################################
55
56 include $(ALICE_ROOT)/conf/GeneralMacros
57
58 ############################ Dependencies #####################################
59
60 -include tgt_$(ALICE_TARGET)/Make-depend 
61