]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/Makefile.am
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / HLT / Makefile.am
1 # $Id$
2 # Makefile template for the Alice HLT framework and components
3
4
5 if HAVE_ALIROOT
6 ALIROOT_DEP=sim \
7             rec \
8             shuttle \
9             pendolino
10 endif
11
12 if EN_HLT_SAMPLE
13 SAMPLE_DIR=SampleLib    
14 endif
15
16 if EN_HLT_TPC
17 TPC_DIR=TPCLib
18 endif
19
20 if EN_HLT_RCU
21 RCU_DIR=RCU
22 endif
23
24 if EN_HLT_CALO
25 CALO_DIR=CALO
26 endif
27
28 if EN_HLT_PHOS
29 PHOS_DIR=PHOS
30 endif
31
32 if EN_HLT_EMCAL
33 EMCAL_DIR=EMCAL
34 endif
35
36 if EN_HLT_TRD
37 TRD_DIR=TRD
38 endif
39
40 if EN_HLT_FMD
41 FMD_DIR=FMD
42 endif
43
44 if EN_HLT_ZDC
45 ZDC_DIR=ZDC
46 endif
47
48 if EN_HLT_MUON
49 MUON_DIR=MUON
50 endif
51
52 if EN_HLT_COMP
53 COMP_DIR=comp
54 endif
55
56 if EN_HLT_TRIGGER
57 TRIGGER_DIR=trigger
58 endif
59
60 if EN_HLT_ITS
61 ITS_DIR=ITS
62 endif
63
64 if EN_HLT_GLOBAL
65 GLOBAL_DIR=global
66 endif
67
68 if EN_HLT_JET
69 JET_DIR=JET
70 endif
71
72 if EN_HLT_VZERO
73 VZERO_DIR=VZERO
74 endif
75
76 QA_DIR=QA
77
78 SUBDIRS                 = BASE \
79                           $(ALIROOT_DEP) \
80                           $(RCU_DIR) \
81                           $(SAMPLE_DIR) \
82                           $(TPC_DIR) \
83                           $(CALO_DIR) \
84                           $(PHOS_DIR) \
85                           $(EMCAL_DIR) \
86                           $(TRD_DIR) \
87                           $(FMD_DIR) \
88                           $(ZDC_DIR) \
89                           $(MUON_DIR) \
90                           $(COMP_DIR) \
91                           $(TRIGGER_DIR) \
92                           $(ITS_DIR) \
93                           $(GLOBAL_DIR) \
94                           $(JET_DIR) \
95                           $(VZERO_DIR) \
96                           $(QA_DIR) \
97                           doc
98
99 EXTRA_DIST              = libHLTbase.pkg \
100                           libHLTinterface.pkg \
101                           libHLTsim.pkg \
102                           libHLTrec.pkg \
103                           libHLTshuttle.pkg \
104                           libHLTpendolino.pkg \
105                           libHLTqadm.pkg \
106                           libAliHLTHOMER.pkg \
107                           libAliHLTUtil.pkg \
108                           libAliHLTSample.pkg \
109                           libAliHLTPHOS.pkg \
110                           libAliHLTTPC.pkg \
111                           libAliHLTTRD.pkg \
112                           libAliHLTFMD.pkg \
113                           libAliHLTZDC.pkg \
114                           libAliHLTMUON.pkg \
115                           libAliHLTComp.pkg \
116                           libAliHLTTrigger.pkg \
117                           libAliHLTRCU.pkg \
118                           libAliHLTITS.pkg \
119                           libAliHLTEMCAL.pkg \
120                           libAliHLTGlobal.pkg \
121                           libAliHLTJet.pkg \
122                           libAliHLTVZERO.pkg \
123                           exa/sample-component1.C \
124                           exa/monitoring.C \
125                           hlt.conf \
126                           .revision
127
128 DIST_SUBDIRS            = $(SUBDIRS)
129
130 # this is a special target to create a stand-alone package from the SampleLib
131 SampleLibPkg: Makefile $(top_srcdir)/SampleLib/*
132         @tmpdir=/tmp/$(USER)/$@ ; \
133         if test -d $@ ; then \
134           cp -ruv $(top_srcdir)/SampleLib/* $@; \
135           cp -uv $(top_srcdir)/libAliHLTSample.pkg $@; \
136           cp -uv $(top_srcdir)/acinclude.m4 $@; \
137         else \
138           (test ! -d $$tmpdir || rm $$tmpdir); \
139           echo "creating package in tmp dir $$tmpdir" ; \
140           mkdir -p $$tmpdir && \
141           (cp -r $(top_srcdir)/SampleLib/* $$tmpdir ; \
142           cp -uv $(top_srcdir)/libAliHLTSample.pkg $$tmpdir ; \
143           cp -uv $(top_srcdir)/acinclude.m4 $$tmpdir; \
144           (echo 'running autoreconf -f -i' ;cd $$tmpdir ; autoreconf -f -i) ; \
145           echo moving $$tmpdir to `pwd`; mv $$tmpdir . ) \
146         fi
147
148 clean-local: 
149         (test ! -d SampleLibPkg || rm -rf SampleLibPkg)
150
151 svn-update:
152         @cd $(top_srcdir) ;\
153         revision=`svn info 2> /dev/null | grep "Revision:" | cut -d ' ' -f 2 | tr -d '\n'` ;\
154         last=`svn info 2> /dev/null | grep "Last Changed Rev:" | cut -d ' ' -f 4 | cut -d '/' -f 4 | tr -d '\n'` ;\
155         if test "x$$revision" != "x" && test $$last -gt $$revision; then \
156                 echo "The SVN copy is not up-to-date (revision $$revision - last update $$last), please 'svn update'"; \
157                 exit -1; \
158         fi
159
160 .revision: svn-update
161         @cd $(top_srcdir) ;\
162         svn info 2> /dev/null | grep "Revision:" | cut -d ' ' -f 2 | tr -d '\n' > $@
163 #
164 # EOF
165 #