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