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