]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/Makefile.am
bugfix: loop was relying on uninitialized variable
[u/mrichter/AliRoot.git] / HLT / Makefile.am
CommitLineData
b521659f 1# $Id$
2# Makefile template for the Alice HLT framework and components
3
4
7233bc62 5if HAVE_ALIROOT
6ALIROOT_DEP=sim \
7 rec \
ff4edcee 8 shuttle \
9 pendolino
7233bc62 10endif
11
b521659f 12if EN_HLT_SAMPLE
13SAMPLE_DIR=SampleLib
14endif
15
16if EN_HLT_TPC
3daf4fbc 17TPC_DIR=TPCLib
b521659f 18endif
19
5e3820e2 20if EN_HLT_RCU
21RCU_DIR=RCU
22endif
23
c160eda8 24if EN_HLT_PHOS
25PHOS_DIR=PHOS
26endif
27
0f51f5b8 28if EN_HLT_TRD
29TRD_DIR=TRD
30endif
31
50a3793d 32if EN_HLT_FMD
33FMD_DIR=FMD
34endif
35
5c561c5b 36if EN_HLT_MUON
37MUON_DIR=MUON
38endif
39
e89e6b23 40if EN_HLT_COMP
41COMP_DIR=comp
42endif
43
d6e2c707 44if EN_HLT_TRIGGER
3daf4fbc 45TRIGGER_DIR=trigger
d6e2c707 46endif
47
48if EN_HLT_ITS
49ITS_DIR=ITS
50endif
3daf4fbc 51
b521659f 52SUBDIRS = BASE \
7233bc62 53 $(ALIROOT_DEP) \
c3800c65 54 $(RCU_DIR) \
b521659f 55 $(SAMPLE_DIR) \
56 $(TPC_DIR) \
c160eda8 57 $(PHOS_DIR) \
0f51f5b8 58 $(TRD_DIR) \
50a3793d 59 $(FMD_DIR) \
5c561c5b 60 $(MUON_DIR) \
e89e6b23 61 $(COMP_DIR) \
3daf4fbc 62 $(TRIGGER_DIR) \
d6e2c707 63 $(ITS_DIR) \
b521659f 64 doc
65
2d7ff710 66EXTRA_DIST = libHLTbase.pkg \
d098ebd4 67 libHLTinterface.pkg \
4cbaf07b 68 libHLTsim.pkg \
69 libHLTrec.pkg \
8f471af0 70 libHLTshuttle.pkg \
a3c9b745 71 libHLTpendolino.pkg \
4cbaf07b 72 libAliHLTHOMER.pkg \
242bb794 73 libAliHLTUtil.pkg \
2d7ff710 74 libAliHLTSample.pkg \
3cde846d 75 libAliHLTPHOS.pkg \
dfaa582a 76 libAliHLTTPC.pkg \
0f51f5b8 77 libAliHLTTRD.pkg \
5c561c5b 78 libAliHLTMUON.pkg \
e89e6b23 79 libAliHLTComp.pkg \
3daf4fbc 80 libAliHLTTrigger.pkg \
8f471af0 81 libAliHLTRCU.pkg \
82 libAliHLTITS.pkg \
83 exa/sample-component1.C \
84 exa/monitoring.C \
7233bc62 85 hlt.conf \
86 .revision
2d7ff710 87
b521659f 88DIST_SUBDIRS = $(SUBDIRS)
89
242bb794 90# this is a special target to create a stand-alone package from the SampleLib
2d7ff710 91SampleLibPkg: Makefile $(top_srcdir)/SampleLib/*
92 @tmpdir=/tmp/$(USER)/$@ ; \
93 if test -d $@ ; then \
94 cp -ruv $(top_srcdir)/SampleLib/* $@; \
95 cp -uv $(top_srcdir)/libAliHLTSample.pkg $@; \
96 cp -uv $(top_srcdir)/acinclude.m4 $@; \
97 else \
98 (test ! -d $$tmpdir || rm $$tmpdir); \
99 echo "creating package in tmp dir $$tmpdir" ; \
100 mkdir -p $$tmpdir && \
101 (cp -r $(top_srcdir)/SampleLib/* $$tmpdir ; \
102 cp -uv $(top_srcdir)/libAliHLTSample.pkg $$tmpdir ; \
103 cp -uv $(top_srcdir)/acinclude.m4 $$tmpdir; \
104 (echo 'running autoreconf -f -i' ;cd $$tmpdir ; autoreconf -f -i) ; \
105 echo moving $$tmpdir to `pwd`; mv $$tmpdir . ) \
106 fi
107
108clean-local:
109 (test ! -d SampleLibPkg || rm -rf SampleLibPkg)
110
7233bc62 111svn-update:
112 @cd $(top_srcdir) ;\
113 revision=`svn info 2> /dev/null | grep "Revision:" | cut -d ' ' -f 2 | tr -d '\n'` ;\
114 last=`svn info 2> /dev/null | grep "Last Changed Rev:" | cut -d ' ' -f 4 | cut -d '/' -f 4 | tr -d '\n'` ;\
115 if test "x$$revision" != "x" && test $$last -gt $$revision; then \
116 echo "The SVN copy is not up-to-date (revision $$revision - last update $$last), please 'svn update'"; \
117 exit -1; \
118 fi
119
120.revision: svn-update
121 @cd $(top_srcdir) ;\
122 svn info 2> /dev/null | grep "Revision:" | cut -d ' ' -f 2 | tr -d '\n' > $@
b521659f 123#
124# EOF
125#