]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HLT/Makefile.am
implemented TPCDigitDump and AltroChannelSelector
[u/mrichter/AliRoot.git] / HLT / Makefile.am
... / ...
CommitLineData
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
13if EN_HLT_PHOS
14PHOS_DIR=PHOS
15endif
16
17if EN_HLT_TRD
18TRD_DIR=TRD
19endif
20
21if EN_HLT_MUON
22MUON_DIR=MUON
23endif
24
25if EN_HLT_COMP
26COMP_DIR=comp
27endif
28
29SUBDIRS = 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
40EXTRA_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
54DIST_SUBDIRS = $(SUBDIRS)
55
56# this is a special target to create a stand-alone package from the SampleLib
57SampleLibPkg: 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
74clean-local:
75 (test ! -d SampleLibPkg || rm -rf SampleLibPkg)
76
77#
78# EOF
79#