]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTTrigger.pkg
write to special output (needed for CAF)
[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 \
e2bb8ddd 17 AliHLTTriggerMenu.h \
18 AliHLTTriggerMenuItem.h \
52f67e50 19 AliHLTTriggerMenuSymbol.h \
1b9a175e 20 AliHLTGlobalTriggerDecision.h \
e2bb8ddd 21 AliHLTGlobalTrigger.h \
52f67e50 22 AliHLTGlobalTriggerConfig.h \
1b9a175e 23 AliHLTGlobalTriggerComponent.h \
89858ccc 24 AliHLTTriggerAgent.h \
2ff24e4c 25 AliHLTEventSummary.h \
26 AliHLTEventSummaryProducerComponent.h \
27 AliHLTRunSummary.h \
28 AliHLTRunSummaryProducerComponent.h \
1b9a175e 29 AliHLTTriggerSelectiveReadoutComponent.h \
1d229444 30 AliHLTTriggerMonitoringComponent.h
2ff24e4c 31
3daf4fbc 32
33# library sources
34MODULE_SRCS:= $(CLASS_HDRS:.h=.cxx)
35
36# library headers
37# in most cases you might have already added all the header files to
38# the CLASS_HDRS variable. So we just use the content of this. You
39# can simply add more header files which don't contain classes with
40# ROOT dictionary support
41MODULE_HDRS:= $(CLASS_HDRS)
42
43# The LinkDef file required by the ROOT dictionary generation can be
44# generated automatically. For the all header files specified in
45# CLASS_HDRS an entry will be generated
46# pragma link C++ class <class-name>+;
47#
48# If the default behavior is not enough, you can provide a custom
49# *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
50# enable automatic generation.
5d79eb88 51MODULE_DHDR:= AliHLTTriggerLinkDef.h
3daf4fbc 52
53EINCLUDE := HLT/BASE HLT/trigger HLT/TPCLib
54
abd75f15 55LIBRARY_DEP := -lHLTbase
56
3daf4fbc 57###############################################################################
58#
59# do not change anything below this line
60#
abd75f15 61include $(MODDIR)/hlt.conf
62
3daf4fbc 63SRCS:=$(patsubst %,trigger/%,$(MODULE_SRCS))
64CINTHDRS:=$(patsubst %,trigger/%,$(CLASS_HDRS))
65HDRS:=$(patsubst %,trigger/%,$(MODULE_HDRS))
66DHDR:=$(patsubst %,trigger/%,$(MODULE_DHDR))
065a34d7 67CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)
3daf4fbc 68
69EDEFINE := ${HLTDEFS}
70PACKCXXFLAGS := ${HLTCXXFLAGS}
71PACKCFLAGS := ${HLTCLFAGS}
72PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
abd75f15 73PACKSOFLAGS := $(HLTSOFLAGS)