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