]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/libAliHLTTrigger.pkg
From Magali: small modifications.
[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 # class header files, the link definition for the root dictionary
10 # will be created from the names of the header files
11 CLASS_HDRS:= \
12                 AliHLTTrigger.h                             \
13                 AliHLTGlobalTrigger.h                       \
14                 AliHLTGlobalTriggerWrapper.h                \
15                 AliHLTGlobalTriggerConfig.h                 \
16                 AliHLTGlobalTriggerComponent.h              \
17                 AliHLTTriggerBarrelMultiplicity.h           \
18                 AliHLTTriggerBarrelCosmic.h                 \
19                 AliHLTTriggerAgent.h                        \
20                 AliHLTEventSummary.h                        \
21                 AliHLTEventSummaryProducerComponent.h       \
22                 AliHLTRunSummary.h                          \
23                 AliHLTRunSummaryProducerComponent.h         \
24                 AliHLTTriggerSelectiveReadoutComponent.h    \
25                 AliHLTTriggerMonitoringComponent.h          \
26                 AliHLTTriggerPhosClusterEnergy.h            \
27                 AliHLTTriggerPhosMip.h                      \
28                 AliHLTTriggerTrdClusterMultiplicity.h       \
29                 AliHLTTriggerBarrelGeomMultiplicity.h       \
30                 AliHLTTriggerDetectorGeom.h                 \
31                 AliHLTTriggerDetectorGeomRectangle.h        \
32                 AliHLTTriggerDecisionParameters.h
33
34 # library sources
35 MODULE_SRCS:=   $(CLASS_HDRS:.h=.cxx)
36
37 # library headers
38 # in most cases you might have already added all the header files to
39 # the CLASS_HDRS variable. So we just use the content of this. You
40 # can simply add more header files which don't contain classes with
41 # ROOT dictionary support
42 MODULE_HDRS:=   $(CLASS_HDRS)
43
44 # The LinkDef file required by the ROOT dictionary generation can be
45 # generated automatically. For the all header files specified in
46 # CLASS_HDRS an entry will be generated
47 # pragma link C++ class <class-name>+;
48 #
49 # If the default behavior is not enough, you can provide a custom
50 # *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
51 # enable automatic generation. 
52 MODULE_DHDR:=   AliHLTTriggerLinkDef.h
53
54 EINCLUDE := HLT/BASE HLT/BASE/util HLT/trigger HLT/TPCLib HLT/TRD TRD
55
56 LIBRARY_DEP := -lHLTbase 
57
58 ###############################################################################
59 #
60 # do not change anything below this line
61 #
62 include $(MODDIR)/hlt.conf
63
64 SRCS:=$(patsubst %,trigger/%,$(MODULE_SRCS))
65 CINTHDRS:=$(patsubst %,trigger/%,$(CLASS_HDRS))
66 CINTSTUBS:=$(patsubst %,trigger/%,$(STUB_HDRS))
67 HDRS:=$(patsubst %,trigger/%,$(MODULE_HDRS))
68 DHDR:=$(patsubst %,trigger/%,$(MODULE_DHDR))
69 CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)
70
71 EDEFINE      := ${HLTDEFS}
72 PACKCXXFLAGS := ${HLTCXXFLAGS}
73 PACKCFLAGS   := ${HLTCLFAGS}
74 PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
75 PACKSOFLAGS  := $(HLTSOFLAGS)