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