]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTTRD.pkg
Minor script fixes
[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 \
6c3bc982 17 AliHLTTRDTrackerComponentV2.cxx \
0af7cb2e 18 AliTRDclusterizerV1HLT.cxx \
e7269b81 19 AliTRDclusterizerV2HLT.cxx \
0af7cb2e 20 AliTRDtrackerHLT.cxx
0f51f5b8 21
22# class header files, the link definition for the root dictionary
23# will be created from the names of the header files
0af7cb2e 24CLASS_HDRS:= \
0af7cb2e 25 AliHLTTRDClusterizerComponent.h \
e7269b81 26 AliHLTTRDClusterizerComponentV2.h \
0af7cb2e 27 AliHLTTRDDefinitions.h \
28 AliHLTTRDTrackerComponent.h \
6c3bc982 29 AliHLTTRDTrackerComponentV2.h \
0af7cb2e 30 AliTRDclusterizerV1HLT.h \
e7269b81 31 AliTRDclusterizerV2HLT.h \
0af7cb2e 32 AliTRDtrackerHLT.h
0f51f5b8 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
39MODULE_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.
49DHDR:= TRD/AliHLTTRDLinkDef.h
50CINTAUTOLINK:=
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).
55EDEFINE := ${HLTDEFS}
56PACKCXXFLAGS := ${HLTCXXFLAGS}
57PACKCFLAGS := ${HLTCLFAGS}
58PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
59
0af7cb2e 60EINCLUDE := HLT/BASE HLT/TRD TRD RAW
0f51f5b8 61
62###############################################################################
63#
64# do not change anything below this line
65#
0af7cb2e 66SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS))
67CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS))
68HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS))