]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/Makefile
Setting more appropriate TOF resolution for TOF PID
[u/mrichter/AliRoot.git] / HLT / src / Makefile
1 #$Id$
2 #################################
3 # Makefile for HLT Src code.    #
4 #                               #
5 # Author: Anders Vestbo,        #                     
6 #         Constantin Loizides   #
7 #################################
8
9 MODNAME = AliL3Src
10
11 ifndef ALIHLT_TOPDIR
12 ALIHLT_TOPDIR = $(shell pwd)/..
13 endif
14
15 include $(ALIHLT_TOPDIR)/Makefile.conf
16
17 SRCS    = AliL3ConfMapper.cxx AliL3ConfMapPoint.cxx \
18           AliL3ConfMapTrack.cxx AliL3ConfMapFit.cxx AliL3Track.cxx\
19           AliL3Transform.cxx AliL3TrackMerger.cxx AliL3VertexArray.cxx \
20           AliL3Vertex.cxx AliL3VertexFinder.cxx \
21           AliL3Merger.cxx AliL3GlobalMerger.cxx AliL3ClustFinderNew.cxx \
22           AliL3TrackArray.cxx AliL3InterMerger.cxx AliL3Logger.cxx \
23           AliL3MemHandler.cxx AliLevel3.cxx AliL3Benchmark.cxx  \
24           AliL3Fitter.cxx AliL3RawDataFileHandler.cxx AliL3Log.cxx \
25           AliL3TPCBeamTestMemHandler.cxx
26
27 ifeq ($(ARCH),macosx)
28 EXTRA_SRCS = AliL3HoughTrack.cxx AliL3ModelTrack.cxx \
29              AliL3DataCompressorHelper.cxx AliL3DataHandler.cxx \
30              AliL3TransBit.cxx  AliL3DDLDataFileHandler.cxx
31 endif
32
33 SRCS += $(EXTRA_SRCS)
34
35 ifeq ($(ALIHLT_USEPACKAGE),ROOT)
36 SRCS += AliL3Display.cxx
37 HDRS = $(SRCS:.cxx=.h) AliL3SpacePointData.h $(MODNAME)LinkDef.h
38 OBJS = $(patsubst %.cxx,$(OBJDIR)/%.o,$(SRCS)) $(DICTO)
39 endif
40
41 ifeq ($(ALIHLT_USEPACKAGE),ALIROOT)
42 SRCS += AliL3Display.cxx AliL3FileHandler.cxx AliL3Evaluate.cxx AliHLTReconstructor.cxx
43 HDRS = $(SRCS:.cxx=.h) AliL3SpacePointData.h $(MODNAME)LinkDef.h
44 OBJS = $(patsubst %.cxx,$(OBJDIR)/%.o,$(SRCS)) $(DICTO)
45 endif
46
47 include $(ALIHLT_TOPDIR)/Makefile.rules