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