]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/libAliHLTTRD.pkg
1cd657f9bd35ab8e179ced20e04ac56f69605ddf
[u/mrichter/AliRoot.git] / HLT / libAliHLTTRD.pkg
1 #-*- Mode: Makefile -*-
2 # $Id$
3 # package definition for the libAliHLTTRD library
4
5 include $(MODDIR)/hlt.conf
6
7 # class header files, the link definition for the root dictionary
8 # will be created from the names of the header files
9 CLASS_HDRS:= \
10         AliHLTTRDClusterizerComponent.h \
11         AliHLTTRDDefinitions.h \
12         AliHLTTRDTrackerComponent.h \
13         AliTRDclusterizerHLT.h \
14         AliHLTTRDEsdWriterComponent.h \
15         AliHLTTRDCalibrationComponent.h
16
17 # library sources
18 MODULE_SRCS= \
19         $(CLASS_HDRS:.h=.cxx)
20
21 # library headers
22 # in most cases you might have already added all the header files to
23 # the CLASS_HDRS variable. So we just use the content of this. You
24 # can simply add more header files which don't contain classes with
25 # ROOT dictionary support
26 MODULE_HDRS:=   $(CLASS_HDRS)
27
28 # The LinkDef file required by the ROOT dictionary generation can be
29 # generated automatically. For the all header files specified in
30 # CLASS_HDRS an entry will be generated
31 # pragma link C++ class <class-name>+;
32 #
33 # If the default behavior is not enough, you can provide a custom
34 # *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
35 # enable automatic generation. 
36 MODULE_DHDR:=   AliHLTTRDLinkDef.h              
37
38 # extra defines and flags for the AliRoot build system. NOTE: include
39 # directories and linking flags/options must be specified in 
40 # Makefile.am (stand-alone build system) and here (AliRoot).
41 EDEFINE      := ${HLTDEFS}
42 PACKCXXFLAGS := ${HLTCXXFLAGS}
43 PACKCFLAGS   := ${HLTCLFAGS}
44 PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
45
46 EINCLUDE := HLT/BASE HLT/BASE/util HLT/TRD TRD STEER RAW
47
48 ###############################################################################
49 #
50 # do not change anything below this line
51 #
52 SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS))
53 CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS))
54 HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS))
55 DHDR:=$(patsubst %,TRD/%,$(MODULE_DHDR))
56 CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)