]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/BASE/Makefile.am
- code version from TPC commissioning merged
[u/mrichter/AliRoot.git] / HLT / BASE / Makefile.am
1 # $Id$
2 # Makefile template for the Alice HLT framework
3
4 MODULE                          = HLTbase
5
6 AM_CPPFLAGS                     = -DMODULE=$(MODULE)
7
8 # library definition
9 lib_LTLIBRARIES                 =  libHLTbase.la
10
11 # library sources
12 libHLTbase_la_SOURCES           =  AliHLTComponent.cxx \
13                                    AliHLTComponentHandler.cxx \
14                                    AliHLTSystem.cxx \
15                                    AliHLT_C_Component_WrapperInterface.cxx \
16                                    AliHLTProcessor.cxx \
17                                    AliHLTConfiguration.cxx \
18                                    AliHLTLogging.cxx \
19                                    AliHLTDataBuffer.cxx \
20                                    AliHLTDataSource.cxx \
21                                    AliHLTDataSink.cxx
22
23 # class header files, the link definition for the root dictionary
24 # will be created from the names of the header files
25 CLASS_HDRS                      =  AliHLTComponent.h \
26                                    AliHLTComponentHandler.h \
27                                    AliHLTSystem.h \
28                                    AliHLTProcessor.h \
29                                    AliHLTConfiguration.h \
30                                    AliHLTConfigurationHandler.h \
31                                    AliHLTTask.h \
32                                    AliHLTLogging.h \
33                                    AliHLTDataBuffer.h \
34                                    AliHLTDataSource.h \
35                                    AliHLTDataSink.h
36 pkginclude_HEADERS              =  $(CLASS_HDRS) \
37                                    AliHLTDataTypes.h \
38                                    AliHLT_C_Component_WrapperInterface.h \
39                                    AliHLTDefinitions.h
40
41 noinst_HEADERS                  =  AliHLTStdIncludes.h
42
43 # version info for the library
44 libHLTbase_la_LDFLAGS           =  -version-info 1:0:0
45
46 # automatic generation of data and time of library build
47 COMPILE_INFO                    =  HLTBaseCompileInfo.cxx
48
49 # set the file name for the generated root dictionary
50 DICTCPP                         =  HLTbase-DICT.cxx
51 nodist_libHLTbase_la_SOURCES    =  $(COMPILE_INFO) \
52                                    $(DICTCPP)
53
54 CLEANFILES                      =  $(COMPILE_INFO)
55
56 include $(top_srcdir)/make.dict
57
58 $(COMPILE_INFO): $(libHLTbase_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 'void $(MODULE)CompileInfo( char*& date, char*& time)' >> $@
63         @echo '{date=__DATE__; time=__TIME__; return;}' >> $@
64