]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/Makefile.am
- Changed module names to be the same as the libraries names;
[u/mrichter/AliRoot.git] / HLT / Makefile.am
1 # $Id$
2 # Makefile template for the Alice HLT framework and components
3
4
5 if EN_HLT_SAMPLE
6 SAMPLE_DIR=SampleLib    
7 endif
8
9 if EN_HLT_TPC
10 TPC_DIR=TPCLib  
11 endif
12
13 if EN_HLT_PHOS
14 PHOS_DIR=PHOS
15 endif
16
17 if EN_HLT_TRD
18 TRD_DIR=TRD
19 endif
20
21 SUBDIRS                 = BASE \
22                           $(SAMPLE_DIR) \
23                           $(TPC_DIR) \
24                           $(PHOS_DIR) \
25                           $(TRD_DIR) \
26                           doc
27
28 EXTRA_DIST              = libHLTbase.pkg \
29                           libAliHLTUtil.pkg \
30                           libAliHLTSample.pkg \
31                           libAliHLTPHOS.pkg \
32                           libAliHLTTPC.pkg \
33                           libAliHLTTRD.pkg \
34                           src/AliHLTReconstructor.h \
35                           src/AliHLTReconstructor.cxx \
36                           hlt.conf
37
38 DIST_SUBDIRS            = $(SUBDIRS)
39
40 # this is a special target to create a stand-alone package from the SampleLib
41 SampleLibPkg: Makefile $(top_srcdir)/SampleLib/*
42         @tmpdir=/tmp/$(USER)/$@ ; \
43         if test -d $@ ; then \
44           cp -ruv $(top_srcdir)/SampleLib/* $@; \
45           cp -uv $(top_srcdir)/libAliHLTSample.pkg $@; \
46           cp -uv $(top_srcdir)/acinclude.m4 $@; \
47         else \
48           (test ! -d $$tmpdir || rm $$tmpdir); \
49           echo "creating package in tmp dir $$tmpdir" ; \
50           mkdir -p $$tmpdir && \
51           (cp -r $(top_srcdir)/SampleLib/* $$tmpdir ; \
52           cp -uv $(top_srcdir)/libAliHLTSample.pkg $$tmpdir ; \
53           cp -uv $(top_srcdir)/acinclude.m4 $$tmpdir; \
54           (echo 'running autoreconf -f -i' ;cd $$tmpdir ; autoreconf -f -i) ; \
55           echo moving $$tmpdir to `pwd`; mv $$tmpdir . ) \
56         fi
57
58 clean-local: 
59         (test ! -d SampleLibPkg || rm -rf SampleLibPkg)
60
61 #
62 # EOF
63 #