]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/libAliHLTSample.pkg
still keep old AliCFGrid implementation in AliCFContainer's example, for the moment
[u/mrichter/AliRoot.git] / HLT / libAliHLTSample.pkg
CommitLineData
c48c8c8a 1#-*- Mode: Makefile -*-
fc455fba 2# $Id$
c48c8c8a 3
4# This files defines the source and header files for the
5# libAliHLTSample library and additional flags for the compilation
6# and linking process. For further information refer to the
7# README.
8
9# library sources
10MODULE_SRCS= AliHLTSampleComponent1.cxx \
11 AliHLTSampleComponent2.cxx \
242bb794 12 AliHLTAgentSample.cxx \
90ebac25 13 AliHLTSampleOfflineSinkComponent.cxx \
c48c8c8a 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 \
242bb794 20 AliHLTAgentSample.h \
90ebac25 21 AliHLTSampleOfflineSinkComponent.h \
c48c8c8a 22 AliHLTDummyComponent.h
23
24# library headers
25# in most cases you might have already added all the header files to
26# the CLASS_HDRS variable. So we just use the content of this. You
27# can simply add more header files which don't contain classes with
28# ROOT dictionary support
29MODULE_HDRS:= $(CLASS_HDRS)
30
014e1e83 31# The LinkDef file required by the ROOT dictionary generation can be
32# generated automatically. For the all header files specified in
33# CLASS_HDRS an entry will be generated
34# pragma link C++ class <class-name>+;
35#
36# If the default behavior is not enough, you can provide a custom
37# *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to
38# enable automatic generation.
39MODULE_DHDR:=
c48c8c8a 40
41# extra defines and flags for the AliRoot build system. NOTE: include
42# directories and linking flags/options must be specified in
43# Makefile.am (stand-alone build system) and here (AliRoot).
49f44941 44EDEFINE := ${HLTDEFS}
2d7ff710 45PACKCXXFLAGS := $(filter-out -ansi,$(filter-out -pedantic-errors, $(CXXFLAGS)))
46PACKCFLAGS := $(filter-out -ansi, $(filter-out -pedantic-errors, $(CFLAGS)))
47PACKDCXXFLAGS:= $(filter-out -pedantic-errors, $(CXXFLAGS))
c48c8c8a 48
49EINCLUDE := HLT/BASE
50
51###############################################################################
52#
53# do not change anything below this line
54#
55SRCS:=$(patsubst %,SampleLib/%,$(MODULE_SRCS))
56CINTHDRS:=$(patsubst %,SampleLib/%,$(CLASS_HDRS))
57HDRS:=$(patsubst %,SampleLib/%,$(MODULE_HDRS))
014e1e83 58DHDR:=$(patsubst %,SampleLib/%,$(MODULE_DHDR))
59CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1)