]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/Makefile.am
- compined HLT/AliRoot build system adapted to phos and trd library
[u/mrichter/AliRoot.git] / HLT / PHOS / Makefile.am
1 # $Id$
2 # Makefile template for the Alice HLT PHOS library
3
4 MODULE                          = AliHLTPHOS
5
6 EXTRA_DIST                      = 
7
8 # library definition
9 lib_LTLIBRARIES                 =  libAliHLTPHOS.la
10
11 # version info for the library
12 LIBRARY_VERSION                 = '0:0:0'
13
14 # MODDIR is set by the AliRoot build system and denotes the topdir
15 # of the module, we must set it since the package definition libAliHLTPHOS.pkg
16 # includes another common configuration file
17 MODDIR                          = $(top_srcdir)
18 PKGDEF                          = $(MODDIR)/libAliHLTPHOS.pkg
19 include $(top_srcdir)/libAliHLTPHOS.pkg
20
21 # compiler flags
22 AM_CPPFLAGS                     = -DMODULE=$(MODULE) \
23                                   $(PACKCXXFLAGS) \
24                                   $(foreach i, $(EINCLUDE),  \
25                                         $(shell echo $(i) | sed -e "/HLT\//!d" -e "s|HLT/|-I$(top_srcdir)/|")) \
26                                   $(foreach i, $(EINCLUDE),  \
27                                         $(shell echo $(i) | sed -e "/HLT\//d" -e "s|^|-I$(ALICE_ROOT)/|"))
28 # library sources
29 libAliHLTPHOS_la_SOURCES        = $(MODULE_SRCS)
30
31 # library headers
32 pkginclude_HEADERS              = $(MODULE_HDRS)
33
34 # additional link def file
35 EXTRA_DIST                      +=$(MODULE_DHDR)
36
37 # version info and linking flags for the library
38 libAliHLTPHOS_la_LIBADD         = $(top_builddir)/BASE/util/libAliHLTUtil.la
39 libAliHLTPHOS_la_LDFLAGS        = -L@ROOTLIBDIR@ \
40                                   @ROOTLIBS@ \
41                                   @ALIROOT_LDFLAGS@ \
42                                   @ALIROOT_LIBS@ \
43                                   @ALIPHOS_LIBS@ \
44                                   -version-info $(LIBRARY_VERSION)
45
46 # automatic generation of data and time of library build
47 COMPILE_INFO                    =  AliHLTPHOSCompileInfo.cxx
48
49 # set the file name for the generated root dictionary
50 DICTCPP                         =  AliHLTPHOS-DICT.cxx
51 # add additional include files which are necessary for the compilation of the 
52 # dictionary files and which are not part of the CLASS_HDRS
53 DICTINCLUDE                     = 
54
55 nodist_libAliHLTPHOS_la_SOURCES = $(COMPILE_INFO) \
56                                   $(DICTCPP)
57
58 CLEANFILES                      = $(COMPILE_INFO)
59
60 include $(top_srcdir)/make.dict
61
62 $(COMPILE_INFO): $(libAliHLTPHOS_la_SOURCES) $(pkginclude_HEADERS) $(noinst_HEADERS) Makefile.am
63         @echo '//automatically generated compilation info' > $@
64         @echo '//!!! DO NOT EDIT THIS FILE !!!' >> $@
65         @echo '//add changes in Makefile.am' >> $@
66         @echo '#include <iostream>' >> $@
67         @echo 'void $(MODULE)CompileInfo( char*& date, char*& time)' >> $@
68         @echo '{date=__DATE__; time=__TIME__; return;}' >> $@
69         @echo >> $@
70         @echo 'void __init()'>> $@
71         @echo '{std::cout << "lib$(MODULE) build on " << __DATE__ << " - " << __TIME__ << std::endl;}'>> $@