]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/libAliHLTTrigger.pkg
Fixing memory leaks (Christian)
[u/mrichter/AliRoot.git] / HLT / libAliHLTTrigger.pkg
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
9 include $(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
13 CLASS_HDRS:= \
14                 AliHLTTriggerSelectiveReadoutComponent.h
15
16 # library sources
17 MODULE_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
24 MODULE_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. 
34 MODULE_DHDR:=           
35
36 EINCLUDE := HLT/BASE HLT/trigger HLT/TPCLib
37
38 ###############################################################################
39 #
40 # do not change anything below this line
41 #
42 SRCS:=$(patsubst %,trigger/%,$(MODULE_SRCS))
43 CINTHDRS:=$(patsubst %,trigger/%,$(CLASS_HDRS))
44 HDRS:=$(patsubst %,trigger/%,$(MODULE_HDRS))
45 DHDR:=$(patsubst %,trigger/%,$(MODULE_DHDR))
46 CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" &&! echo 1)
47
48 EDEFINE      := ${HLTDEFS}
49 PACKCXXFLAGS := ${HLTCXXFLAGS}
50 PACKCFLAGS   := ${HLTCLFAGS}
51 PACKDCXXFLAGS:= ${HLTDCXXFLAGS}