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