]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/Makefile.am
Add class to access simulation parameters, AliEMCALSimParam, to be set in configurati...
[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_MUON
45 MUON_DIR=MUON
46 endif
47
48 if EN_HLT_COMP
49 COMP_DIR=comp
50 endif
51
52 if EN_HLT_TRIGGER
53 TRIGGER_DIR=trigger
54 endif
55
56 if EN_HLT_ITS
57 ITS_DIR=ITS
58 endif
59
60 if EN_HLT_GLOBAL
61 GLOBAL_DIR=global
62 endif
63
64 if EN_HLT_JET
65 JET_DIR=JET
66 endif
67
68 if EN_HLT_QA
69 QA_DIR=QA
70 endif
71
72 SUBDIRS                 = BASE \
73                           $(ALIROOT_DEP) \
74                           $(RCU_DIR) \
75                           $(SAMPLE_DIR) \
76                           $(TPC_DIR) \
77                           $(CALO_DIR) \
78                           $(PHOS_DIR) \
79                           $(EMCAL_DIR) \
80                           $(TRD_DIR) \
81                           $(FMD_DIR) \
82                           $(MUON_DIR) \
83                           $(COMP_DIR) \
84                           $(TRIGGER_DIR) \
85                           $(ITS_DIR) \
86                           $(GLOBAL_DIR) \
87                           $(JET_DIR) \
88                           $(QA_DIR) \
89                           doc
90
91 EXTRA_DIST              = libHLTbase.pkg \
92                           libHLTinterface.pkg \
93                           libHLTsim.pkg \
94                           libHLTrec.pkg \
95                           libHLTshuttle.pkg \
96                           libHLTpendolino.pkg \
97                           libHLTqadm.pkg \
98                           libAliHLTHOMER.pkg \
99                           libAliHLTUtil.pkg \
100                           libAliHLTSample.pkg \
101                           libAliHLTPHOS.pkg \
102                           libAliHLTTPC.pkg \
103                           libAliHLTTRD.pkg \
104                           libAliHLTFMD.pkg \
105                           libAliHLTMUON.pkg \
106                           libAliHLTComp.pkg \
107                           libAliHLTTrigger.pkg \
108                           libAliHLTRCU.pkg \
109                           libAliHLTITS.pkg \
110                           libAliHLTEMCAL.pkg \
111                           libAliHLTGlobal.pkg \
112                           libAliHLTJet.pkg \
113                           exa/sample-component1.C \
114                           exa/monitoring.C \
115                           hlt.conf \
116                           .revision
117
118 DIST_SUBDIRS            = $(SUBDIRS)
119
120 # this is a special target to create a stand-alone package from the SampleLib
121 SampleLibPkg: Makefile $(top_srcdir)/SampleLib/*
122         @tmpdir=/tmp/$(USER)/$@ ; \
123         if test -d $@ ; then \
124           cp -ruv $(top_srcdir)/SampleLib/* $@; \
125           cp -uv $(top_srcdir)/libAliHLTSample.pkg $@; \
126           cp -uv $(top_srcdir)/acinclude.m4 $@; \
127         else \
128           (test ! -d $$tmpdir || rm $$tmpdir); \
129           echo "creating package in tmp dir $$tmpdir" ; \
130           mkdir -p $$tmpdir && \
131           (cp -r $(top_srcdir)/SampleLib/* $$tmpdir ; \
132           cp -uv $(top_srcdir)/libAliHLTSample.pkg $$tmpdir ; \
133           cp -uv $(top_srcdir)/acinclude.m4 $$tmpdir; \
134           (echo 'running autoreconf -f -i' ;cd $$tmpdir ; autoreconf -f -i) ; \
135           echo moving $$tmpdir to `pwd`; mv $$tmpdir . ) \
136         fi
137
138 clean-local: 
139         (test ! -d SampleLibPkg || rm -rf SampleLibPkg)
140
141 svn-update:
142         @cd $(top_srcdir) ;\
143         revision=`svn info 2> /dev/null | grep "Revision:" | cut -d ' ' -f 2 | tr -d '\n'` ;\
144         last=`svn info 2> /dev/null | grep "Last Changed Rev:" | cut -d ' ' -f 4 | cut -d '/' -f 4 | tr -d '\n'` ;\
145         if test "x$$revision" != "x" && test $$last -gt $$revision; then \
146                 echo "The SVN copy is not up-to-date (revision $$revision - last update $$last), please 'svn update'"; \
147                 exit -1; \
148         fi
149
150 .revision: svn-update
151         @cd $(top_srcdir) ;\
152         svn info 2> /dev/null | grep "Revision:" | cut -d ' ' -f 2 | tr -d '\n' > $@
153 #
154 # EOF
155 #