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