]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TRD/Makefile.am
Hough tracking temporarily disabled; legacy files removed
[u/mrichter/AliRoot.git] / HLT / TRD / Makefile.am
CommitLineData
0f51f5b8 1# $Id$
2# Makefile template for the Alice HLT TRD library
3
0f51f5b8 4MODULE = AliHLTTRD
5
014e1e83 6EXTRA_DIST =
76286e4c 7
0af7cb2e 8AM_CPPFLAGS = @ALIROOT_CPPFLAGS@ \
9 -I$(top_srcdir)/BASE \
808618f5 10 -I$(top_srcdir)/BASE/util \
0af7cb2e 11 -I$(ALICE_ROOT)/TRD
0f51f5b8 12
0f51f5b8 13# library definition
0f51f5b8 14lib_LTLIBRARIES = libAliHLTTRD.la
15
808618f5 16# version info for the library
17LIBRARY_VERSION = '1:0:0'
18
0f51f5b8 19# library sources
051a0e2d 20libAliHLTTRD_la_SOURCES = AliTRDclusterizerHLT.cxx \
0af7cb2e 21 AliHLTTRDDefinitions.cxx \
22 AliHLTTRDClusterizerComponent.cxx \
23 AliHLTTRDTrackerComponent.cxx \
95259bbb 24 AliHLTTRDEsdWriterComponent.cxx \
25 AliHLTTRDCalibrationComponent.cxx
0af7cb2e 26
27# class header files, the link definition for the root dictionary
28# will be created from the names of the header files
051a0e2d 29CLASS_HDRS = AliTRDclusterizerHLT.h \
0af7cb2e 30 AliHLTTRDDefinitions.h \
31 AliHLTTRDClusterizerComponent.h \
32 AliHLTTRDTrackerComponent.h \
95259bbb 33 AliHLTTRDEsdWriterComponent.h \
34 AliHLTTRDCalibrationComponent.h
0af7cb2e 35
36pkginclude_HEADERS = $(CLASS_HDRS)
0f51f5b8 37
808618f5 38libAliHLTTRD_la_LIBADD = $(top_builddir)/BASE/util/libAliHLTUtil.la
0af7cb2e 39# version info for the library
0f51f5b8 40libAliHLTTRD_la_LDFLAGS = -L@ROOTLIBDIR@ \
41 @ROOTLIBS@ \
0f51f5b8 42 @ALIROOT_LDFLAGS@ \
43 @ALIROOT_LIBS@ \
808618f5 44 -version-info $(LIBRARY_VERSION)
0f51f5b8 45
842fd76a 46# automatic generation of data and time of library build
47COMPILE_INFO = AliHLTTRDCompileInfo.cxx
48
0f51f5b8 49# set the file name for the generated root dictionary
50DICTCPP = AliHLTTRD-DICT.cxx
842fd76a 51nodist_libAliHLTTRD_la_SOURCES = $(COMPILE_INFO) \
52 $(DICTCPP)
0f51f5b8 53
842fd76a 54CLEANFILES = $(COMPILE_INFO)
0f51f5b8 55
842fd76a 56include $(top_srcdir)/make.dict
0f51f5b8 57
808618f5 58SUBDIRS = .
59
842fd76a 60$(COMPILE_INFO): $(libAliHLTTPC_la_SOURCES) $(pkginclude_HEADERS) $(noinst_HEADERS) Makefile.am
61 @echo '//automatically generated compilation info' > $@
62 @echo '//!!! DO NOT EDIT THIS FILE !!!' >> $@
63 @echo '//add changes in Makefile.am' >> $@
64 @echo 'extern "C" void CompileInfo( char*& date, char*& time)' >> $@
65 @echo '{date=__DATE__; time=__TIME__; return;}' >> $@