]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/libAliHLTTRD.pkg
Employing AliTRDclusterizerV2
[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         AliHLTTRDClusterizerComponentV2.cxx \
15         AliHLTTRDDefinitions.cxx \
16         AliHLTTRDTrackerComponent.cxx \
17         AliTRDclusterizerV1HLT.cxx \
18         AliTRDclusterizerV2HLT.cxx \
19         AliTRDtrackerHLT.cxx
20
21 # class header files, the link definition for the root dictionary
22 # will be created from the names of the header files
23 CLASS_HDRS:= \
24         AliHLTTRDClusterizerComponent.h \
25         AliHLTTRDClusterizerComponentV2.h \
26         AliHLTTRDDefinitions.h \
27         AliHLTTRDTrackerComponent.h \
28         AliTRDclusterizerV1HLT.h \
29         AliTRDclusterizerV2HLT.h \
30         AliTRDtrackerHLT.h
31
32 # library headers
33 # in most cases you might have already added all the header files to
34 # the CLASS_HDRS variable. So we just use the content of this. You
35 # can simply add more header files which don't contain classes with
36 # ROOT dictionary support
37 MODULE_HDRS:=   $(CLASS_HDRS)
38
39 # The autotools-based stand-alone built system creates  the LinkDef
40 # file required by the ROOT dictionary generation for the all header
41 # files specified in CLASS_HDRS.  
42 # When creating a ROOT dictionary in AliRoot you must eventually
43 # provide a *LinkDef.h file which tells rootcint what to do with the
44 # classes. The *LinkDef.h must be added to DHDR in that case.
45 # There might be an extension also in ALIROOT which allows to 
46 # generate the LinkDef automatically.
47 DHDR:=          TRD/AliHLTTRDLinkDef.h          
48 CINTAUTOLINK:=
49
50 # extra defines and flags for the AliRoot build system. NOTE: include
51 # directories and linking flags/options must be specified in 
52 # Makefile.am (stand-alone build system) and here (AliRoot).
53 EDEFINE      := ${HLTDEFS}
54 PACKCXXFLAGS := ${HLTCXXFLAGS}
55 PACKCFLAGS   := ${HLTCLFAGS}
56 PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
57
58 EINCLUDE := HLT/BASE HLT/TRD TRD RAW
59
60 ###############################################################################
61 #
62 # do not change anything below this line
63 #
64 SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS))
65 CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS))
66 HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS))