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