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