]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTTrigger.pkg
Adding custom linkdef file so that dictionaries are correctly generated for AliHLTTri...
[u/mrichter/AliRoot.git] / HLT / libAliHLTTrigger.pkg
CommitLineData
3daf4fbc 1#-*- Mode: Makefile -*-
2# $Id$
3
4# This files defines the source and header files for the
5# libAliHLTTrigger library and additional flags for the compilation
6# and linking process. For further information refer to the
7# README.
8
3daf4fbc 9# class header files, the link definition for the root dictionary
10# will be created from the names of the header files
11CLASS_HDRS:= \
1d229444 12 AliHLTTrigger.h \
1b9a175e 13 AliHLTTriggerDecision.h \
14 AliHLTTriggerDomain.h \
15 AliHLTDomainEntry.h \
16 AliHLTReadoutList.h \
17 AliHLTGlobalTriggerDecision.h \
18 AliHLTGlobalTriggerComponent.h \
89858ccc 19 AliHLTTriggerAgent.h \
2ff24e4c 20 AliHLTEventSummary.h \
21 AliHLTEventSummaryProducerComponent.h \
22 AliHLTRunSummary.h \
23 AliHLTRunSummaryProducerComponent.h \
1b9a175e 24 AliHLTTriggerSelectiveReadoutComponent.h \
1d229444 25 AliHLTTriggerMonitoringComponent.h
2ff24e4c 26
3daf4fbc 27
28# library sources
29MODULE_SRCS:= $(CLASS_HDRS:.h=.cxx)
30
31# library headers
32# in most cases you might have already added all the header files to
33# the CLASS_HDRS variable. So we just use the content of this. You
34# can simply add more header files which don't contain classes with
35# ROOT dictionary support
36MODULE_HDRS:= $(CLASS_HDRS)
37
38# The LinkDef file required by the ROOT dictionary generation can be
39# generated automatically. For the all header files specified in
40# CLASS_HDRS an entry will be generated
41# pragma link C++ class <class-name>+;
42#
43# If the default behavior is not enough, you can provide a custom
44# *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
45# enable automatic generation.
5d79eb88 46MODULE_DHDR:= AliHLTTriggerLinkDef.h
3daf4fbc 47
48EINCLUDE := HLT/BASE HLT/trigger HLT/TPCLib
49
abd75f15 50LIBRARY_DEP := -lHLTbase
51
3daf4fbc 52###############################################################################
53#
54# do not change anything below this line
55#
abd75f15 56include $(MODDIR)/hlt.conf
57
3daf4fbc 58SRCS:=$(patsubst %,trigger/%,$(MODULE_SRCS))
59CINTHDRS:=$(patsubst %,trigger/%,$(CLASS_HDRS))
60HDRS:=$(patsubst %,trigger/%,$(MODULE_HDRS))
61DHDR:=$(patsubst %,trigger/%,$(MODULE_DHDR))
065a34d7 62CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)
3daf4fbc 63
64EDEFINE := ${HLTDEFS}
65PACKCXXFLAGS := ${HLTCXXFLAGS}
66PACKCFLAGS := ${HLTCLFAGS}
67PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
abd75f15 68PACKSOFLAGS := $(HLTSOFLAGS)