]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/Makefile.am
Removing html documenation from CVS
[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 if EN_HLT_MUON
22 MUON_DIR=MUON
23 endif
24
25 if EN_HLT_COMP
26 COMP_DIR=comp
27 endif
28
29 SUBDIRS                 = BASE \
30                           sim \
31                           rec \
32                           $(SAMPLE_DIR) \
33                           $(TPC_DIR) \
34                           $(PHOS_DIR) \
35                           $(TRD_DIR) \
36                           $(MUON_DIR) \
37                           $(COMP_DIR) \
38                           doc
39
40 EXTRA_DIST              = libHLTbase.pkg \
41                           libHLTinterface.pkg \
42                           libHLTsim.pkg \
43                           libHLTrec.pkg \
44                           libAliHLTHOMER.pkg \
45                           libAliHLTUtil.pkg \
46                           libAliHLTSample.pkg \
47                           libAliHLTPHOS.pkg \
48                           libAliHLTTPC.pkg \
49                           libAliHLTTRD.pkg \
50                           libAliHLTMUON.pkg \
51                           libAliHLTComp.pkg \
52                           hlt.conf
53
54 DIST_SUBDIRS            = $(SUBDIRS)
55
56 # this is a special target to create a stand-alone package from the SampleLib
57 SampleLibPkg: Makefile $(top_srcdir)/SampleLib/*
58         @tmpdir=/tmp/$(USER)/$@ ; \
59         if test -d $@ ; then \
60           cp -ruv $(top_srcdir)/SampleLib/* $@; \
61           cp -uv $(top_srcdir)/libAliHLTSample.pkg $@; \
62           cp -uv $(top_srcdir)/acinclude.m4 $@; \
63         else \
64           (test ! -d $$tmpdir || rm $$tmpdir); \
65           echo "creating package in tmp dir $$tmpdir" ; \
66           mkdir -p $$tmpdir && \
67           (cp -r $(top_srcdir)/SampleLib/* $$tmpdir ; \
68           cp -uv $(top_srcdir)/libAliHLTSample.pkg $$tmpdir ; \
69           cp -uv $(top_srcdir)/acinclude.m4 $$tmpdir; \
70           (echo 'running autoreconf -f -i' ;cd $$tmpdir ; autoreconf -f -i) ; \
71           echo moving $$tmpdir to `pwd`; mv $$tmpdir . ) \
72         fi
73
74 clean-local: 
75         (test ! -d SampleLibPkg || rm -rf SampleLibPkg)
76
77 #
78 # EOF
79 #