]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/debug/Makefile
Update of ITS tracking check task and related macros
[u/mrichter/AliRoot.git] / HLT / PHOS / debug / Makefile
1 include Makefile.arch
2
3 ROOTLIBS         = `root-config --libs`  -lVMC -lGeom -lEG
4 ALIROOTLIBS      = -L$(ALICE_ROOT)/lib/tgt_linux  -lESD -lRAWDatarec -lRAWDatabase -lSTEERBase
5
6
7 #LIBS            = $(LIBS) $(ROOTLIBS) $(ALIROOTLIBS)
8 LIBS             = $(ROOTLIBS) $(ALIROOTLIBS)
9
10 ROOTINCLUDE      = -I$(ROOTSYS)/include
11 ALIROOTINCLUDE   = -I$(ALICE_ROOT)/include  -I$(ALICE_ROOT)/RAW
12 INCLUDES         =  $(ROOTINCLUDE) $(ALIROOTINCLUDE)
13
14 #MAINO       = testDecoder.$(ObjSuf) AliHLTAltroData.$(ObjSuf)  AliHLTAltroBunch.$(ObjSuf) AliHLTDDLDecoder.$(ObjSuf)
15 #MAINS       = testDecoder.$(SrcSuf) AliHLTAltroData.$(SrcSuf)  AliHLTAltroBunch.$(SrcSuf) AliHLTDDLDecoder.$(SrcSuf)
16
17 MAINO       = testDecoder.$(ObjSuf)
18 MAINS       = testDecoder.$(SrcSuf) 
19 MAIN        = testDecoder$(ExeSuf)
20
21 OBJS          = $(MAINO) 
22 PROGRAMS      = $(MAIN) 
23
24
25 .SUFFIXES: .$(SrcSuf) .$(ObjSuf) .$(DllSuf)
26
27 all:            $(PROGRAMS)
28
29
30 $(MAIN):        $(MAINO)
31                 $(LD) $(LDFLAGS) $(INCLUDES) $^ $(LIBS) $(GLIBS) -lTreePlayer -lMathCore -lThread -lpthread $(OutPutOpt)$(MAIN)
32                 @echo "$@ done"
33
34
35 clean:
36                 @rm -f $(OBJS) core
37
38 distclean:      clean
39                 -@mv -f linearIO.root linearIO.roott
40                 @rm -f $(PROGRAMS) $(EVENTSO) $(EVENTLIB) *Dict.* *.def *.exp \
41                    *.root *.ps *.so *.lib *.dll *.d .def so_locations
42                 @rm -rf cxx_repository
43                 -@mv -f linearIO.roott linearIO.root
44                 -@cd RootShower && $(MAKE) distclean
45
46 .SUFFIXES: .$(SrcSuf)
47
48
49 #AliHLTAltroData.$(ObjSuf): AliHLTAltroData.h
50 #AliHLTDDLDecoder.$(ObjSuf): AliHLTDDLDecoder.h
51 #testDecoder.$(ObjSuf): AliHLTAltroData.h AliHLTDDLDecoder.h
52 testDecoder.$(ObjSuf): 
53
54 .$(SrcSuf).$(ObjSuf):
55         $(CXX) $(CXXFLAGS) $(INCLUDES) -c $<