]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTSample.pkg
- implementation dependence on HAVE_TPC_MAPPING fixed, no defines in header file
[u/mrichter/AliRoot.git] / HLT / libAliHLTSample.pkg
CommitLineData
c48c8c8a 1#-*- Mode: Makefile -*-
2# $Id:
3
49f44941 4include HLT/hlt.conf
5
c48c8c8a 6# This files defines the source and header files for the
7# libAliHLTSample library and additional flags for the compilation
8# and linking process. For further information refer to the
9# README.
10
11# library sources
12MODULE_SRCS= AliHLTSampleComponent1.cxx \
13 AliHLTSampleComponent2.cxx \
14 AliHLTDummyComponent.cxx
15
16# class header files, the link definition for the root dictionary
17# will be created from the names of the header files
18CLASS_HDRS:= AliHLTSampleComponent1.h \
19 AliHLTSampleComponent2.h \
20 AliHLTDummyComponent.h
21
22# library headers
23# in most cases you might have already added all the header files to
24# the CLASS_HDRS variable. So we just use the content of this. You
25# can simply add more header files which don't contain classes with
26# ROOT dictionary support
27MODULE_HDRS:= $(CLASS_HDRS)
28
29# The autotools-based stand-alone built system creates the LinkDef
30# file required by the ROOT dictionary generation for the all header
31# files specified in CLASS_HDRS.
32# When creating a ROOT dictionary in AliRoot you must eventually
33# provide a *LinkDef.h file which tells rootcint what to do with the
34# classes. The *LinkDef.h must be added to DHDR in that case.
35# There might be an extension also in ALIROOT which allows to
36# generate the LinkDef automatically.
37DHDR:=
38CINTAUTOLINK:=
39
40# extra defines and flags for the AliRoot build system. NOTE: include
41# directories and linking flags/options must be specified in
42# Makefile.am (stand-alone build system) and here (AliRoot).
49f44941 43EDEFINE := ${HLTDEFS}
44PACKCXXFLAGS := ${HLTCXXFLAGS}
45PACKCFLAGS := ${HLTCLFAGS}
46PACKDCXXFLAGS:= ${HLTDCXXFLAGS}
c48c8c8a 47
48EINCLUDE := HLT/BASE
49
50###############################################################################
51#
52# do not change anything below this line
53#
54SRCS:=$(patsubst %,SampleLib/%,$(MODULE_SRCS))
55CINTHDRS:=$(patsubst %,SampleLib/%,$(CLASS_HDRS))
56HDRS:=$(patsubst %,SampleLib/%,$(MODULE_HDRS))