]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTTrigger.pkg
adding map include file to solve compilation issue (bug https://savannah.cern.ch...
[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 \
e2bb8ddd 13 AliHLTGlobalTrigger.h \
81d62bb4 14 AliHLTGlobalTriggerWrapper.h \
52f67e50 15 AliHLTGlobalTriggerConfig.h \
1b9a175e 16 AliHLTGlobalTriggerComponent.h \
cafc1a86 17 AliHLTTriggerBarrelMultiplicity.h \
c1550d2c 18 AliHLTD0Trigger.h \
19 AliHLTD0toKpi.h \
20 AliHLTTriggerITSMultiplicity.h \
cafc1a86 21 AliHLTTriggerBarrelCosmic.h \
89858ccc 22 AliHLTTriggerAgent.h \
2ff24e4c 23 AliHLTEventSummary.h \
24 AliHLTEventSummaryProducerComponent.h \
25 AliHLTRunSummary.h \
26 AliHLTRunSummaryProducerComponent.h \
1b9a175e 27 AliHLTTriggerSelectiveReadoutComponent.h \
765d85f8 28 AliHLTTriggerMonitoringComponent.h \
ce5a42b9 29 AliHLTTriggerCaloClusterEnergy.h \
f86ecd3e 30 AliHLTTriggerPhosClusterEnergy.h \
ce5a42b9 31 AliHLTTriggerEmcalClusterEnergy.h \
495570cd 32 AliHLTTriggerPhosMip.h \
4e199fe2 33 AliHLTTriggerTrdClusterMultiplicity.h \
34 AliHLTTriggerBarrelGeomMultiplicity.h \
fde46e9e 35 AliHLTTriggerDetectorGeom.h \
36 AliHLTTriggerDetectorGeomRectangle.h \
fc2b0c6d 37 AliHLTTriggerDecisionParameters.h \
c1550d2c 38 AliHLTTriggerGammaConversion.h \
39 AliHLTMuonSpectroScalars.h \
4d097162 40 AliHLTMuonSpectroTriggerComponent.h \
41 AliHLTUpcTriggerComponent.h
2ff24e4c 42
3daf4fbc 43# library sources
44MODULE_SRCS:= $(CLASS_HDRS:.h=.cxx)
45
46# library headers
47# in most cases you might have already added all the header files to
48# the CLASS_HDRS variable. So we just use the content of this. You
49# can simply add more header files which don't contain classes with
50# ROOT dictionary support
51MODULE_HDRS:= $(CLASS_HDRS)
52
53# The LinkDef file required by the ROOT dictionary generation can be
54# generated automatically. For the all header files specified in
55# CLASS_HDRS an entry will be generated
56# pragma link C++ class <class-name>+;
57#
58# If the default behavior is not enough, you can provide a custom
59# *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
60# enable automatic generation.
5d79eb88 61MODULE_DHDR:= AliHLTTriggerLinkDef.h
3daf4fbc 62
c1550d2c 63EINCLUDE := HLT/BASE HLT/BASE/util HLT/trigger HLT/TPCLib HLT/TRD TRD HLT/ITS HLT/MUON MUON
3daf4fbc 64
495570cd 65LIBRARY_DEP := -lHLTbase
abd75f15 66
3daf4fbc 67###############################################################################
68#
69# do not change anything below this line
70#
abd75f15 71include $(MODDIR)/hlt.conf
72
3daf4fbc 73SRCS:=$(patsubst %,trigger/%,$(MODULE_SRCS))
74CINTHDRS:=$(patsubst %,trigger/%,$(CLASS_HDRS))
81d62bb4 75CINTSTUBS:=$(patsubst %,trigger/%,$(STUB_HDRS))
3daf4fbc 76HDRS:=$(patsubst %,trigger/%,$(MODULE_HDRS))
77DHDR:=$(patsubst %,trigger/%,$(MODULE_DHDR))
065a34d7 78CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)
3daf4fbc 79
80EDEFINE := ${HLTDEFS}
81PACKCXXFLAGS := ${HLTCXXFLAGS}
82PACKCFLAGS := ${HLTCLFAGS}
83PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
abd75f15 84PACKSOFLAGS := $(HLTSOFLAGS)