]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTTRD.pkg
bugfix: resolving error code
[u/mrichter/AliRoot.git] / HLT / libAliHLTTRD.pkg
CommitLineData
0f51f5b8 1#-*- Mode: Makefile -*-
95316e9f 2# $Id$
3# package definition for the libAliHLTTRD library
0f51f5b8 4
5include $(MODDIR)/hlt.conf
6
0f51f5b8 7# class header files, the link definition for the root dictionary
8# will be created from the names of the header files
0af7cb2e 9CLASS_HDRS:= \
0af7cb2e 10 AliHLTTRDClusterizerComponent.h \
11 AliHLTTRDDefinitions.h \
12 AliHLTTRDTrackerComponent.h \
051a0e2d 13 AliTRDclusterizerHLT.h \
95259bbb 14 AliHLTTRDEsdWriterComponent.h \
15 AliHLTTRDCalibrationComponent.h
95316e9f 16
17# library sources
18MODULE_SRCS= \
19 $(CLASS_HDRS:.h=.cxx)
20
0f51f5b8 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
26MODULE_HDRS:= $(CLASS_HDRS)
27
014e1e83 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.
4634c1e4 36MODULE_DHDR:=
0f51f5b8 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).
41EDEFINE := ${HLTDEFS}
42PACKCXXFLAGS := ${HLTCXXFLAGS}
43PACKCFLAGS := ${HLTCLFAGS}
44PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
45
95316e9f 46EINCLUDE := HLT/BASE HLT/BASE/util HLT/TRD TRD STEER RAW
0f51f5b8 47
48###############################################################################
49#
50# do not change anything below this line
51#
0af7cb2e 52SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS))
53CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS))
54HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS))
014e1e83 55DHDR:=$(patsubst %,TRD/%,$(MODULE_DHDR))
56CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)