]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/MUON/Makefile.am
Minor cleanup of code.
[u/mrichter/AliRoot.git] / HLT / MUON / Makefile.am
1 # $Id$
2 # Makefile for the Alice dimuon HLT library
3
4 MODULE                          = AliHLTMUON
5
6 EXTRA_DIST                      = 
7
8 MODDIR                          = $(top_srcdir)
9 PKGDEF                          = $(MODDIR)/libAliHLTMUON.pkg
10 include $(top_srcdir)/libAliHLTMUON.pkg
11
12 lib_LTLIBRARIES                 =  libAliHLTMUON.la
13
14 LIBRARY_VERSION                 = '0:1:0'
15
16 # library sources
17 # The source files are specified in libAliHLTMUON.pkg
18 libAliHLTMUON_la_SOURCES        =  $(MODULE_SRCS)
19
20 # library headers
21 # The header files are specified in libAliHLTMUON.pkg
22 noinst_HEADERS                  =  $(MODULE_HDRS)
23
24 # compilation flags of the library
25 AM_CPPFLAGS                     = -DMODULE=$(MODULE) \
26                                   @ROOTCFLAGS@ \
27                                   $(foreach i, $(EINCLUDE),  \
28                                         $(shell echo $(i) | sed -e "/HLT\//!d" -e "s|HLT/|-I$(top_srcdir)/|")) \
29                                   $(foreach i, $(EINCLUDE),  \
30                                         $(shell echo $(i) | sed -e "/HLT\//d" -e "s|^|-I$(ALICE_ROOT)/|"))
31
32 # linking flags of the library
33 libAliHLTMUON_la_LDFLAGS        = -L@ROOTLIBDIR@ \
34                                   @ROOTLIBS@ \
35                                   @HLTBASE_LDFLAGS@ \
36                                   @ALIROOT_LDFLAGS@ \
37                                   @ALIROOT_LIBS@ \
38                                   -version-info $(LIBRARY_VERSION)
39
40 # automatic generation of data and time of library build
41 COMPILE_INFO                    =  AliHLTMUONCompileInfo.cxx
42
43 # set the file name for the generated root dictionary
44 DICTCPP                         =  AliHLTMUON-DICT.cxx
45 nodist_libAliHLTMUON_la_SOURCES =  $(COMPILE_INFO) \
46                                    $(DICTCPP)
47
48 CLEANFILES                      = $(COMPILE_INFO)
49
50 include $(top_srcdir)/make.dict
51
52 $(COMPILE_INFO): $(libAliHLTTPC_la_SOURCES) $(pkginclude_HEADERS) $(noinst_HEADERS) Makefile.am
53         @echo '//automatically generated compilation info' > $@
54         @echo '//!!! DO NOT EDIT THIS FILE !!!' >> $@
55         @echo '//add changes in Makefile.am' >> $@
56         @echo 'extern "C" void CompileInfo( char*& date, char*& time)' >> $@
57         @echo '{date=__DATE__; time=__TIME__; return;}' >> $@