]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/libAliHLTTRD.pkg
Due to developments in the Off-line code there is an impact on the HLT DA algorithms...
[u/mrichter/AliRoot.git] / HLT / libAliHLTTRD.pkg
1 #-*- Mode: Makefile -*-
2 # $Id: 
3
4 include $(MODDIR)/hlt.conf
5
6 # This files defines the source and header files for the
7 # libAliHLTSample library and additional flags for the compilation
8 # and linking process. For further information refer to the 
9 # README.
10
11 # library sources
12 MODULE_SRCS= \
13         AliHLTTRDClusterizerComponent.cxx \
14         AliHLTTRDDefinitions.cxx \
15         AliHLTTRDTrackerComponent.cxx \
16         AliTRDclusterizerV1HLT.cxx \
17         AliTRDtrackerHLT.cxx
18
19 # class header files, the link definition for the root dictionary
20 # will be created from the names of the header files
21 CLASS_HDRS:= \
22         AliHLTTRDClusterizerComponent.h \
23         AliHLTTRDDefinitions.h \
24         AliHLTTRDTrackerComponent.h \
25         AliTRDclusterizerV1HLT.h \
26         AliTRDtrackerHLT.h
27
28 # library headers
29 # in most cases you might have already added all the header files to
30 # the CLASS_HDRS variable. So we just use the content of this. You
31 # can simply add more header files which don't contain classes with
32 # ROOT dictionary support
33 MODULE_HDRS:=   $(CLASS_HDRS)
34
35 # The autotools-based stand-alone built system creates  the LinkDef
36 # file required by the ROOT dictionary generation for the all header
37 # files specified in CLASS_HDRS.  
38 # When creating a ROOT dictionary in AliRoot you must eventually
39 # provide a *LinkDef.h file which tells rootcint what to do with the
40 # classes. The *LinkDef.h must be added to DHDR in that case.
41 # There might be an extension also in ALIROOT which allows to 
42 # generate the LinkDef automatically.
43 DHDR:=          TRD/AliHLTTRDLinkDef.h          
44 CINTAUTOLINK:=
45
46 # extra defines and flags for the AliRoot build system. NOTE: include
47 # directories and linking flags/options must be specified in 
48 # Makefile.am (stand-alone build system) and here (AliRoot).
49 EDEFINE      := ${HLTDEFS}
50 PACKCXXFLAGS := ${HLTCXXFLAGS}
51 PACKCFLAGS   := ${HLTCLFAGS}
52 PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
53
54 EINCLUDE := HLT/BASE HLT/TRD TRD RAW
55
56 ###############################################################################
57 #
58 # do not change anything below this line
59 #
60 SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS))
61 CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS))
62 HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS))