]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/Makefile.am
Adding CreateIterator(void) and GetNeighbours() pure virtual methods,
[u/mrichter/AliRoot.git] / HLT / Makefile.am
CommitLineData
b521659f 1# $Id$
2# Makefile template for the Alice HLT framework and components
3
4
5if EN_HLT_SAMPLE
6SAMPLE_DIR=SampleLib
7endif
8
9if EN_HLT_TPC
10TPC_DIR=TPCLib
11endif
12
c160eda8 13if EN_HLT_PHOS
14PHOS_DIR=PHOS
15endif
16
b521659f 17SUBDIRS = BASE \
18 $(SAMPLE_DIR) \
19 $(TPC_DIR) \
c160eda8 20 $(PHOS_DIR) \
b521659f 21 doc
22
2d7ff710 23EXTRA_DIST = libHLTbase.pkg \
24 libAliHLTSample.pkg \
25 hlt.conf
26
b521659f 27DIST_SUBDIRS = $(SUBDIRS)
28
2d7ff710 29SampleLibPkg: Makefile $(top_srcdir)/SampleLib/*
30 @tmpdir=/tmp/$(USER)/$@ ; \
31 if test -d $@ ; then \
32 cp -ruv $(top_srcdir)/SampleLib/* $@; \
33 cp -uv $(top_srcdir)/libAliHLTSample.pkg $@; \
34 cp -uv $(top_srcdir)/acinclude.m4 $@; \
35 else \
36 (test ! -d $$tmpdir || rm $$tmpdir); \
37 echo "creating package in tmp dir $$tmpdir" ; \
38 mkdir -p $$tmpdir && \
39 (cp -r $(top_srcdir)/SampleLib/* $$tmpdir ; \
40 cp -uv $(top_srcdir)/libAliHLTSample.pkg $$tmpdir ; \
41 cp -uv $(top_srcdir)/acinclude.m4 $$tmpdir; \
42 (echo 'running autoreconf -f -i' ;cd $$tmpdir ; autoreconf -f -i) ; \
43 echo moving $$tmpdir to `pwd`; mv $$tmpdir . ) \
44 fi
45
46clean-local:
47 (test ! -d SampleLibPkg || rm -rf SampleLibPkg)
48
b521659f 49#
50# EOF
51#