]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/FMD/Makefile.am
including FMD library into HLT build system
[u/mrichter/AliRoot.git] / HLT / FMD / Makefile.am
CommitLineData
629266d1 1# $Id: Makefile.am 22826 2007-12-07 00:19:58Z richterm $
2# Makefile template for the Alice HLT sample library
3
4# This files defines the autotools-based build system of the
5# libAliHLTSample library. All lines starting with a '#' are comments.
6# Note: Source files definitions must be made in libAliHLTSample.pkg
7# For further information refer to the README.
8
9MODULE = AliHLTFMD
10
11EXTRA_DIST =
12
13# include the pkg definition which actually contains the source
14# file definitions
15MODDIR = $(top_srcdir)
16PKGDEF = $(MODDIR)/libAliHLTFMD.pkg
17include $(top_srcdir)/libAliHLTFMD.pkg
18
19
20# library definition
21# The lib_LTLIBRARIES variable is a fixed variable of the autotools build
22# system. All libraries defined by the Makefile template have to be added
23# here. Since we aim for separated directories for different libraries
24# there will be only one library.
25lib_LTLIBRARIES = libAliHLTFMD.la
26
27# version info for the library
28# The libtool program is used to created the library, a version number can
29# be specified by using the -version-info flag. This flag accepts an argument
30# of the form current[:revision[:age]].
31# If either revision or age are omitted, they default to 0. Also note that
32# age must be less than or equal to the current interface number. Here are a
33# set of rules to help you update your library version information:
34#
35# 1. Start with version information of 0:0:0 for each libtool library.
36# 2. Update the version information only immediately before a public release
37# of your software. More frequent updates are unnecessary, and only
38# guarantee that the current interface number gets larger faster.
39# 3. If the library source code has changed at all since the last update,
40# then increment revision (c:r:a becomes c:r+1:a).
41# 4. If any interfaces have been added, removed, or changed since the last
42# update, increment current, and set revision to 0.
43# 5. If any interfaces have been added since the last public release, then
44# increment age.
45# 6. If any interfaces have been removed since the last public release, then
46# set age to 0.
47LIBRARY_VERSION = '1:0:0'
48
49# library sources
50# The source files are specified in libAliHLTFMD.pkg
51libAliHLTFMD_la_SOURCES = $(MODULE_SRCS)
52
53# library headers
54# The header files are specified in libAliHLTFMD.pkg
55noinst_HEADERS = $(MODULE_HDRS)
56
57# compilation flags of the library
58# This is the place to add further include directories if you are
59# using external modules. The AliRoot/STEER and ROOT directories
60# are the default include directories.
61# Include paths within the HLT modules are automatically taken from the
62# EINCLUDE variable of the pkg definition
63# other AliRoot dependencies might need to added
64AM_CPPFLAGS = -DMODULE=$(MODULE) \
65 @HLTBASE_CPPFLAGS@ \
66 @ALIROOT_CPPFLAGS@ \
67 @ROOTCFLAGS@ \
68 $(foreach i, $(EINCLUDE), \
69 $(shell echo $(i) | sed -e "/HLT\//!d" -e "s|HLT/|-I$(top_srcdir)/|")) \
70 $(foreach i, $(EINCLUDE), \
71 $(shell echo $(i) | sed -e "/HLT\//d" -e "s|^|-I$(ALICE_ROOT)/|"))
72
73# linking flags of the library
74# This is the place to add further libraries if you are
75# using external modules. The AliRoot, ROOT and HLT base libraries
76# are added by default.
77# Also the version of the library
78# FMD libraries have been added here explicitly
79#
80libAliHLTFMD_la_LDFLAGS = -L@ROOTLIBDIR@ \
81 @ROOTLIBS@ \
82 @HLTBASE_LDFLAGS@ \
83 @ALIROOT_LDFLAGS@ \
84 @ALIROOT_LIBS@ \
85 @ALIFMD_LIBS@ \
629266d1 86 -version-info $(LIBRARY_VERSION)
87
88# automatic generation of data and time of library build
89COMPILE_INFO = AliHLTFMDCompileInfo.cxx
90
91# set the file name for the generated root dictionary
92DICTCPP = AliHLTFMD-DICT.cxx
93nodist_libAliHLTFMD_la_SOURCES= $(COMPILE_INFO) \
94 $(DICTCPP)
95
96CLEANFILES = $(COMPILE_INFO)
97
50a3793d 98include $(top_srcdir)/make.dict
629266d1 99
100$(COMPILE_INFO): $(libAliHLTFMD_la_SOURCES) $(pkginclude_HEADERS) $(noinst_HEADERS) Makefile.am
101 @echo '//automatically generated compilation info' > $@
102 @echo '//!!! DO NOT EDIT THIS FILE !!!' >> $@
103 @echo '//add changes in Makefile.am' >> $@
104 @echo 'extern "C" void CompileInfo( char*& date, char*& time)' >> $@
105 @echo '{date=__DATE__; time=__TIME__; return;}' >> $@