]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/Makefile.am
enhanced HLT build system: EINCLUDE from pkg definition determines include paths
[u/mrichter/AliRoot.git] / HLT / TPCLib / Makefile.am
CommitLineData
b521659f 1# $Id$
2# Makefile template for the Alice HLT TPC library
3
4MODULE = AliHLTTPC
5
014e1e83 6EXTRA_DIST =
0f51f5b8 7
db16520a 8# generation of the TPC Pad mapping tables for the
9# AliHLTTPCDigitReaderRaw reader
10if USE_TPC_MAPPING
11TPC_MAPPING_NOINST_SRC = mapping2array.cxx
12TPC_MAPPING_INC = mapping_array_out.inc
13TPC_MAPPING_NOINST_PGM = mapping2array
14TPC_MAPPING_COMPONENTS = AliHLTTPCDigitReaderRaw.cxx
15endif
16
17noinst_PROGRAMS = $(TPC_MAPPING_NOINST_PGM)
18if USE_TPC_MAPPING
19mapping2array_SOURCES = $(TPC_MAPPING_NOINST_SRC)
20endif
21
b521659f 22# library definition
23lib_LTLIBRARIES = libAliHLTTPC.la
24
fc455fba 25# version info for the library
312160d3 26LIBRARY_VERSION = '4:0:1'
fc455fba 27
28# MODDIR is set by the AliRoot build system and denotes the topdir
29# of the module, we must set it since the package definition libAliHLTTPC.pkg
30# includes another common configuration file
31MODDIR = $(top_srcdir)
312160d3 32PKGDEF = $(MODDIR)/libAliHLTTPC.pkg
fc455fba 33include $(top_srcdir)/libAliHLTTPC.pkg
34
34e89120 35# compiler flags
36AM_CPPFLAGS = -DMODULE=$(MODULE) \
37 $(foreach i, $(EINCLUDE), \
38 $(shell echo $(i) | sed -e "/HLT\//!d" -e "s|HLT/|-I$(top_srcdir)/|")) \
39 $(foreach i, $(EINCLUDE), \
40 $(shell echo $(i) | sed -e "/HLT\//d" -e "s|^|-I$(ALICE_ROOT)/|"))
41
b521659f 42# library sources
fc455fba 43libAliHLTTPC_la_SOURCES = $(MODULE_SRCS)
b521659f 44
fc455fba 45# library headers
46pkginclude_HEADERS = $(MODULE_HDRS)
b521659f 47
fc455fba 48# linker flags
242bb794 49libAliHLTTPC_la_LIBADD = $(top_builddir)/BASE/util/libAliHLTUtil.la
db16520a 50libAliHLTTPC_la_LDFLAGS = -L@ROOTLIBDIR@ \
51 @ROOTLIBS@ \
52 @ALIROOT_LDFLAGS@ \
74c73e5a 53 @ALIROOT_LIBS@ \
fc455fba 54 -version-info $(LIBRARY_VERSION)
b521659f 55
842fd76a 56# automatic generation of data and time of library build
57COMPILE_INFO = AliHLTTPCCompileInfo.cxx
58
b521659f 59# set the file name for the generated root dictionary
60DICTCPP = AliHLTTPC-DICT.cxx
842fd76a 61nodist_libAliHLTTPC_la_SOURCES = $(COMPILE_INFO) \
62 $(DICTCPP)
b521659f 63
db16520a 64BUILT_SOURCES = $(TPC_MAPPING_INC)
842fd76a 65CLEANFILES = $(COMPILE_INFO) \
66 $(BUILT_SOURCES)
b521659f 67
68include $(top_srcdir)/make.dict
69
78b557c2 70SUBDIRS = . OnlineDisplay
db16520a 71
72$(TPC_MAPPING_INC): $(TPC_MAPPING_NOINST_PGM)
73 ./$<
842fd76a 74
75$(COMPILE_INFO): $(libAliHLTTPC_la_SOURCES) $(pkginclude_HEADERS) $(noinst_HEADERS) Makefile.am
76 @echo '//automatically generated compilation info' > $@
77 @echo '//!!! DO NOT EDIT THIS FILE !!!' >> $@
78 @echo '//add changes in Makefile.am' >> $@
79 @echo 'extern "C" void CompileInfo( char*& date, char*& time)' >> $@
80 @echo '{date=__DATE__; time=__TIME__; return;}' >> $@