]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTTRD.pkg
Temporary disable the raw version, it will be taken from FEE
[u/mrichter/AliRoot.git] / HLT / libAliHLTTRD.pkg
CommitLineData
0f51f5b8 1#-*- Mode: Makefile -*-
2# $Id:
3
4include $(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
0af7cb2e 12MODULE_SRCS= \
0af7cb2e 13 AliHLTTRDClusterizerComponent.cxx \
e7269b81 14 AliHLTTRDClusterizerComponentV2.cxx \
0af7cb2e 15 AliHLTTRDDefinitions.cxx \
16 AliHLTTRDTrackerComponent.cxx \
17 AliTRDclusterizerV1HLT.cxx \
e7269b81 18 AliTRDclusterizerV2HLT.cxx \
0af7cb2e 19 AliTRDtrackerHLT.cxx
0f51f5b8 20
21# class header files, the link definition for the root dictionary
22# will be created from the names of the header files
0af7cb2e 23CLASS_HDRS:= \
0af7cb2e 24 AliHLTTRDClusterizerComponent.h \
e7269b81 25 AliHLTTRDClusterizerComponentV2.h \
0af7cb2e 26 AliHLTTRDDefinitions.h \
27 AliHLTTRDTrackerComponent.h \
28 AliTRDclusterizerV1HLT.h \
e7269b81 29 AliTRDclusterizerV2HLT.h \
0af7cb2e 30 AliTRDtrackerHLT.h
0f51f5b8 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
37MODULE_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.
47DHDR:= TRD/AliHLTTRDLinkDef.h
48CINTAUTOLINK:=
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).
53EDEFINE := ${HLTDEFS}
54PACKCXXFLAGS := ${HLTCXXFLAGS}
55PACKCFLAGS := ${HLTCLFAGS}
56PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
57
0af7cb2e 58EINCLUDE := HLT/BASE HLT/TRD TRD RAW
0f51f5b8 59
60###############################################################################
61#
62# do not change anything below this line
63#
0af7cb2e 64SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS))
65CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS))
66HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS))