Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ e37f47d3

History | View | Annotate | Download (51.3 kB)

1 e8230860 Michael Hanselmann
# Ganeti makefile
2 e8230860 Michael Hanselmann
# - Indent with tabs only.
3 e8230860 Michael Hanselmann
# - Keep files sorted; one line per file.
4 e8230860 Michael Hanselmann
# - Directories in lib/ must have their own *dir variable (see hypervisor).
5 e8230860 Michael Hanselmann
# - All directories must be listed DIRS.
6 0a7bed64 Michael Hanselmann
# - Use autogen.sh to generate Makefile.in and configure script.
7 e8230860 Michael Hanselmann
8 e8230860 Michael Hanselmann
# Automake doesn't export these variables before version 1.10.
9 e8230860 Michael Hanselmann
abs_top_builddir = @abs_top_builddir@
10 e8230860 Michael Hanselmann
abs_top_srcdir = @abs_top_srcdir@
11 e8230860 Michael Hanselmann
12 08366664 Michael Hanselmann
# Helper values for calling builtin functions
13 08366664 Michael Hanselmann
empty :=
14 08366664 Michael Hanselmann
space := $(empty) $(empty)
15 08366664 Michael Hanselmann
comma := ,
16 08366664 Michael Hanselmann
17 a01dd3c6 Iustin Pop
# Use bash in order to be able to use pipefail
18 a01dd3c6 Iustin Pop
SHELL=/bin/bash
19 a01dd3c6 Iustin Pop
20 6e06b36c Iustin Pop
ACLOCAL_AMFLAGS = -I autotools
21 4f3d5b76 Michael Hanselmann
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
22 b959138f Michael Hanselmann
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
23 eed5c5df Michael Hanselmann
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
24 5d3c30df Michael Hanselmann
CHECK_HEADER = $(top_srcdir)/autotools/check-header
25 c55cc346 Iustin Pop
CHECK_MAN_DASHES = $(top_srcdir)/autotools/check-man-dashes
26 73d0e218 Iustin Pop
CHECK_MAN_WARNINGS = $(top_srcdir)/autotools/check-man-warnings
27 96602be4 Michael Hanselmann
CHECK_VERSION = $(top_srcdir)/autotools/check-version
28 7385c51d Michael Hanselmann
CHECK_NEWS = $(top_srcdir)/autotools/check-news
29 f6cbcc06 Michael Hanselmann
CHECK_IMPORTS = $(top_srcdir)/autotools/check-imports
30 95eb4188 Michael Hanselmann
DOCPP = $(top_srcdir)/autotools/docpp
31 e8230860 Michael Hanselmann
REPLACE_VARS_SED = autotools/replace_vars.sed
32 d99d1e36 Iustin Pop
CONVERT_CONSTANTS = $(top_srcdir)/autotools/convert-constants
33 d5a2a550 Michael Hanselmann
BUILD_RPC = $(top_srcdir)/autotools/build-rpc
34 6e3bf290 Michael Hanselmann
SHELL_ENV_INIT = autotools/shell-env-init
35 e8230860 Michael Hanselmann
36 22c5390d Iustin Pop
# Note: these are automake-specific variables, and must be named after
37 22c5390d Iustin Pop
# the directory + 'dir' suffix
38 2d48a3a2 Michael Hanselmann
clientdir = $(pkgpythondir)/client
39 e8230860 Michael Hanselmann
hypervisordir = $(pkgpythondir)/hypervisor
40 ff9efc03 Michael Hanselmann
httpdir = $(pkgpythondir)/http
41 dc101ecc Michael Hanselmann
masterddir = $(pkgpythondir)/masterd
42 12426ae1 Guido Trotter
confddir = $(pkgpythondir)/confd
43 8c229cc7 Oleksiy Mishchenko
rapidir = $(pkgpythondir)/rapi
44 899c4d2c Michael Hanselmann
serverdir = $(pkgpythondir)/server
45 9f4bb951 Michael Hanselmann
watcherdir = $(pkgpythondir)/watcher
46 bb44b1ae Michael Hanselmann
impexpddir = $(pkgpythondir)/impexpd
47 c047a981 Michael Hanselmann
utilsdir = $(pkgpythondir)/utils
48 e8230860 Michael Hanselmann
toolsdir = $(pkglibdir)/tools
49 7617fd6b Iustin Pop
iallocatorsdir = $(pkglibdir)/iallocators
50 0d2bf835 René Nussbaumer
pytoolsdir = $(pkgpythondir)/tools
51 e8230860 Michael Hanselmann
docdir = $(datadir)/doc/$(PACKAGE)
52 b8fe7ca6 Iustin Pop
myexeclibdir = $(pkglibdir)
53 e8230860 Michael Hanselmann
54 a4f12da4 Michael Hanselmann
# Delete output file if an error occurred while building it
55 a4f12da4 Michael Hanselmann
.DELETE_ON_ERROR:
56 a4f12da4 Michael Hanselmann
57 d5506465 Iustin Pop
HTOOLS_DIRS = \
58 d5506465 Iustin Pop
	htools \
59 d5506465 Iustin Pop
	htools/Ganeti \
60 3c1915df Michele Tartara
	htools/Ganeti/Block \
61 3c1915df Michele Tartara
	htools/Ganeti/Block/Drbd \
62 358a0a8f Iustin Pop
	htools/Ganeti/Confd \
63 332b1340 Michele Tartara
	htools/Ganeti/DataCollectors \
64 458a286a Iustin Pop
	htools/Ganeti/HTools \
65 879d9290 Iustin Pop
	htools/Ganeti/HTools/Backend \
66 4cbe9bda Iustin Pop
	htools/Ganeti/HTools/Program \
67 f0f3a6df Iustin Pop
	htools/Ganeti/Query \
68 e5a29b6c Iustin Pop
	htest \
69 e5a29b6c Iustin Pop
	htest/Test \
70 2733df51 Iustin Pop
	htest/Test/Ganeti \
71 a52f8e72 Michele Tartara
	htest/Test/Ganeti/Block \
72 a52f8e72 Michele Tartara
	htest/Test/Ganeti/Block/Drbd \
73 aed2325f Iustin Pop
	htest/Test/Ganeti/Confd \
74 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools \
75 879d9290 Iustin Pop
	htest/Test/Ganeti/HTools/Backend \
76 aed2325f Iustin Pop
	htest/Test/Ganeti/Query
77 d5506465 Iustin Pop
78 e8230860 Michael Hanselmann
DIRS = \
79 dad26941 Iustin Pop
	$(HTOOLS_DIRS) \
80 e8230860 Michael Hanselmann
	autotools \
81 e8230860 Michael Hanselmann
	daemons \
82 e8230860 Michael Hanselmann
	devel \
83 e8230860 Michael Hanselmann
	doc \
84 e8230860 Michael Hanselmann
	doc/examples \
85 c51580b3 Guido Trotter
	doc/examples/gnt-debug \
86 dad26941 Iustin Pop
	doc/examples/hooks \
87 dad26941 Iustin Pop
	htest/data \
88 dad26941 Iustin Pop
	htest/data/rapi \
89 dad26941 Iustin Pop
	htest/shelltests \
90 e8230860 Michael Hanselmann
	lib \
91 f9897b6d Michael Hanselmann
	lib/build \
92 dad26941 Iustin Pop
	lib/client \
93 2f16ea8f Michael Hanselmann
	lib/confd \
94 ff9efc03 Michael Hanselmann
	lib/http \
95 e8230860 Michael Hanselmann
	lib/hypervisor \
96 bb44b1ae Michael Hanselmann
	lib/impexpd \
97 dc101ecc Michael Hanselmann
	lib/masterd \
98 8c229cc7 Oleksiy Mishchenko
	lib/rapi \
99 899c4d2c Michael Hanselmann
	lib/server \
100 0d2bf835 René Nussbaumer
	lib/tools \
101 c047a981 Michael Hanselmann
	lib/utils \
102 9f4bb951 Michael Hanselmann
	lib/watcher \
103 e8230860 Michael Hanselmann
	man \
104 e8230860 Michael Hanselmann
	qa \
105 e8230860 Michael Hanselmann
	test \
106 e8230860 Michael Hanselmann
	test/data \
107 1e6fab60 Agata Murawska
	test/data/ovfdata \
108 d92518d3 Agata Murawska
	test/data/ovfdata/other \
109 e8230860 Michael Hanselmann
	tools
110 e8230860 Michael Hanselmann
111 cbcd9144 Michele Tartara
ALL_APIDOC_HS_DIRS = \
112 22c5390d Iustin Pop
	$(APIDOC_HS_DIR) \
113 358a0a8f Iustin Pop
	$(APIDOC_HS_DIR)/Ganeti \
114 3c1915df Michele Tartara
	$(APIDOC_HS_DIR)/Ganeti/Block \
115 3c1915df Michele Tartara
	$(APIDOC_HS_DIR)/Ganeti/Block/Drbd \
116 358a0a8f Iustin Pop
	$(APIDOC_HS_DIR)/Ganeti/Confd \
117 332b1340 Michele Tartara
	$(APIDOC_HS_DIR)/Ganeti/DataCollectors \
118 358a0a8f Iustin Pop
	$(APIDOC_HS_DIR)/Ganeti/HTools \
119 879d9290 Iustin Pop
	$(APIDOC_HS_DIR)/Ganeti/HTools/Backend \
120 458a286a Iustin Pop
	$(APIDOC_HS_DIR)/Ganeti/HTools/Program \
121 a2d7ea09 Iustin Pop
	$(APIDOC_HS_DIR)/Ganeti/Query
122 cbcd9144 Michele Tartara
123 cbcd9144 Michele Tartara
BUILDTIME_DIR_AUTOCREATE = \
124 cbcd9144 Michele Tartara
	scripts \
125 cbcd9144 Michele Tartara
	$(APIDOC_DIR) \
126 cbcd9144 Michele Tartara
	$(ALL_APIDOC_HS_DIRS) \
127 dad26941 Iustin Pop
	$(APIDOC_PY_DIR) \
128 22c5390d Iustin Pop
	$(COVERAGE_DIR) \
129 22c5390d Iustin Pop
	$(COVERAGE_HS_DIR) \
130 dad26941 Iustin Pop
	$(COVERAGE_PY_DIR) \
131 b91e9518 Iustin Pop
	.hpc
132 2750b299 Michael Hanselmann
133 2750b299 Michael Hanselmann
BUILDTIME_DIRS = \
134 2750b299 Michael Hanselmann
	$(BUILDTIME_DIR_AUTOCREATE) \
135 6b997854 Michael Hanselmann
	doc/html
136 6b997854 Michael Hanselmann
137 6b997854 Michael Hanselmann
DIRCHECK_EXCLUDE = \
138 6b997854 Michael Hanselmann
	$(BUILDTIME_DIRS) \
139 6b997854 Michael Hanselmann
	ganeti-[0-9]*.[0-9]*.[0-9]* \
140 a2d7ea09 Iustin Pop
	doc/html/_* \
141 a2d7ea09 Iustin Pop
	autom4te.cache
142 6b997854 Michael Hanselmann
143 22c5390d Iustin Pop
# some helper vars
144 22c5390d Iustin Pop
COVERAGE_DIR = doc/coverage
145 22c5390d Iustin Pop
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
146 22c5390d Iustin Pop
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
147 22c5390d Iustin Pop
APIDOC_DIR = doc/api
148 22c5390d Iustin Pop
APIDOC_PY_DIR = $(APIDOC_DIR)/py
149 22c5390d Iustin Pop
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
150 22c5390d Iustin Pop
151 2ab2b9f5 Iustin Pop
MAINTAINERCLEANFILES = \
152 d17e74b4 Iustin Pop
	$(docpng) \
153 b76aac08 Michael Hanselmann
	$(maninput) \
154 cbf3d64b Michael Hanselmann
	doc/install-quick.rst \
155 84a12e40 Iustin Pop
	doc/news.rst \
156 7a03d293 Michael Hanselmann
	doc/upgrade.rst \
157 84a12e40 Iustin Pop
	vcs-version
158 2ab2b9f5 Iustin Pop
159 d17e74b4 Iustin Pop
maintainer-clean-local:
160 6b997854 Michael Hanselmann
	rm -rf $(BUILDTIME_DIRS)
161 d17e74b4 Iustin Pop
162 e8230860 Michael Hanselmann
CLEANFILES = \
163 2f16ea8f Michael Hanselmann
	$(addsuffix /*.py[co],$(DIRS)) \
164 d5506465 Iustin Pop
	$(addsuffix /*.hi,$(HTOOLS_DIRS)) \
165 d5506465 Iustin Pop
	$(addsuffix /*.o,$(HTOOLS_DIRS)) \
166 2d48a3a2 Michael Hanselmann
	$(PYTHON_BOOTSTRAP) \
167 f774bd03 Michael Hanselmann
	epydoc.conf \
168 5098afd1 Iustin Pop
	$(REPLACE_VARS_SED) \
169 6e3bf290 Michael Hanselmann
	$(SHELL_ENV_INIT) \
170 f154a7a3 Michael Hanselmann
	daemons/daemon-util \
171 fc3fd894 Michael Hanselmann
	daemons/ganeti-cleaner \
172 656a7fdf Iustin Pop
	$(BUILT_EXAMPLES) \
173 f72f8622 Iustin Pop
	doc/examples/bash_completion \
174 e80aeb89 Michael Hanselmann
	doc/examples/bash_completion-debug \
175 d5a2a550 Michael Hanselmann
	lib/_generated_rpc.py \
176 2ab2b9f5 Iustin Pop
	$(man_MANS) \
177 2ab2b9f5 Iustin Pop
	$(manhtml) \
178 26916aad Apollon Oikonomopoulos
	tools/kvm-ifup \
179 e5afb848 Michael Hanselmann
	tools/vcluster-setup \
180 3735787e Iustin Pop
	stamp-directories \
181 dd1dfd9a Michael Hanselmann
	stamp-srclinks \
182 d6159933 Iustin Pop
	$(nodist_pkgpython_PYTHON) \
183 c3f67183 Iustin Pop
	$(HS_ALL_PROGS) $(HS_BUILT_SRCS) \
184 3096524e Iustin Pop
	$(HS_BUILT_TEST_HELPERS) \
185 b0dcdc10 Iustin Pop
	htools/ganeti-confd \
186 f0f3a6df Iustin Pop
	.hpc/*.mix htools/*.tix htest/*.tix \
187 191ff68c Iustin Pop
	doc/hs-lint.html
188 e8230860 Michael Hanselmann
189 4c3d5fb6 Iustin Pop
GENERATED_FILES = \
190 5098afd1 Iustin Pop
	$(built_base_sources) \
191 96a7481d Michael Hanselmann
	$(BUILT_PYTHON_SOURCES) \
192 96a7481d Michael Hanselmann
	$(PYTHON_BOOTSTRAP)
193 96a7481d Michael Hanselmann
194 ada0e680 Iustin Pop
HTOOLS_GENERATED_FILES =
195 ada0e680 Iustin Pop
if WANT_HTOOLS
196 ada0e680 Iustin Pop
HTOOLS_GENERATED_FILES += $(HS_PROGS)
197 04520998 Iustin Pop
if ENABLE_CONFD
198 f8d01158 Iustin Pop
HTOOLS_GENERATED_FILES += htools/hconfd htools/ganeti-confd
199 ada0e680 Iustin Pop
endif
200 ada0e680 Iustin Pop
endif
201 ada0e680 Iustin Pop
202 96a7481d Michael Hanselmann
built_base_sources = \
203 3735787e Iustin Pop
	stamp-directories \
204 3735787e Iustin Pop
	stamp-srclinks
205 2d1f248e Michael Hanselmann
206 96a7481d Michael Hanselmann
built_python_base_sources = \
207 13aeae6a Iustin Pop
	lib/_autoconf.py \
208 96a7481d Michael Hanselmann
	lib/_vcsversion.py
209 96a7481d Michael Hanselmann
210 96a7481d Michael Hanselmann
BUILT_PYTHON_SOURCES = \
211 96a7481d Michael Hanselmann
	$(built_python_base_sources) \
212 d5a2a550 Michael Hanselmann
	lib/_generated_rpc.py
213 e8230860 Michael Hanselmann
214 5098afd1 Iustin Pop
# Generating the RPC wrappers depends on many things, so make sure
215 5098afd1 Iustin Pop
# it's built at the end of the built sources
216 96a7481d Michael Hanselmann
lib/_generated_rpc.py: | $(built_base_sources) $(built_python_base_sources)
217 96a7481d Michael Hanselmann
218 656a7fdf Iustin Pop
# these are all built from the underlying %.in sources
219 656a7fdf Iustin Pop
BUILT_EXAMPLES = \
220 656a7fdf Iustin Pop
	doc/examples/ganeti-kvm-poweroff.initd \
221 656a7fdf Iustin Pop
	doc/examples/ganeti.cron \
222 656a7fdf Iustin Pop
	doc/examples/ganeti.initd \
223 aa75500a Guido Trotter
	doc/examples/ganeti-master-role.ocf \
224 17071597 Guido Trotter
	doc/examples/ganeti-node-role.ocf \
225 656a7fdf Iustin Pop
	doc/examples/gnt-config-backup \
226 656a7fdf Iustin Pop
	doc/examples/hooks/ipsec
227 656a7fdf Iustin Pop
228 08366664 Michael Hanselmann
nodist_pkgpython_PYTHON = \
229 08366664 Michael Hanselmann
	$(BUILT_PYTHON_SOURCES)
230 08366664 Michael Hanselmann
231 f9897b6d Michael Hanselmann
noinst_PYTHON = \
232 5f43f393 Michael Hanselmann
	lib/build/__init__.py \
233 dad26941 Iustin Pop
	lib/build/shell_example_lexer.py \
234 dad26941 Iustin Pop
	lib/build/sphinx_ext.py
235 f9897b6d Michael Hanselmann
236 e8230860 Michael Hanselmann
pkgpython_PYTHON = \
237 e8230860 Michael Hanselmann
	lib/__init__.py \
238 a8a76bc2 Guido Trotter
	lib/asyncnotifier.py \
239 e8230860 Michael Hanselmann
	lib/backend.py \
240 e8230860 Michael Hanselmann
	lib/bdev.py \
241 e8230860 Michael Hanselmann
	lib/bootstrap.py \
242 e8230860 Michael Hanselmann
	lib/cli.py \
243 e8230860 Michael Hanselmann
	lib/cmdlib.py \
244 cea881e5 Michael Hanselmann
	lib/compat.py \
245 e8230860 Michael Hanselmann
	lib/config.py \
246 e8230860 Michael Hanselmann
	lib/constants.py \
247 821d9e43 Michael Hanselmann
	lib/daemon.py \
248 e8230860 Michael Hanselmann
	lib/errors.py \
249 62e0e880 Iustin Pop
	lib/ht.py \
250 e8230860 Michael Hanselmann
	lib/jqueue.py \
251 8b537bb0 Michael Hanselmann
	lib/jstore.py \
252 e8230860 Michael Hanselmann
	lib/locking.py \
253 e8230860 Michael Hanselmann
	lib/luxi.py \
254 e8230860 Michael Hanselmann
	lib/mcpu.py \
255 a744b676 Manuel Franceschini
	lib/netutils.py \
256 e8230860 Michael Hanselmann
	lib/objects.py \
257 32683096 René Nussbaumer
	lib/objectutils.py \
258 e8230860 Michael Hanselmann
	lib/opcodes.py \
259 ced78a66 Agata Murawska
	lib/ovf.py \
260 3329f4de Michael Hanselmann
	lib/pathutils.py \
261 a123dc19 Michael Hanselmann
	lib/qlang.py \
262 4ca96421 Michael Hanselmann
	lib/query.py \
263 e8230860 Michael Hanselmann
	lib/rpc.py \
264 6648cb36 Michael Hanselmann
	lib/rpc_defs.py \
265 f12e1736 René Nussbaumer
	lib/runtime.py \
266 e8230860 Michael Hanselmann
	lib/serializer.py \
267 e8230860 Michael Hanselmann
	lib/ssconf.py \
268 e8230860 Michael Hanselmann
	lib/ssh.py \
269 ac2d0fe4 Michael Hanselmann
	lib/storage.py \
270 1338f2b4 Balazs Lecz
	lib/uidpool.py \
271 05e733b4 Michael Hanselmann
	lib/vcluster.py \
272 4e4b6b7a Apollon Oikonomopoulos
	lib/network.py \
273 76094e37 Michael Hanselmann
	lib/workerpool.py
274 e8230860 Michael Hanselmann
275 2d48a3a2 Michael Hanselmann
client_PYTHON = \
276 c2855a12 Michael Hanselmann
	lib/client/__init__.py \
277 02266fe0 Michael Hanselmann
	lib/client/gnt_backup.py \
278 7b3e7d41 Michael Hanselmann
	lib/client/gnt_cluster.py \
279 6d50f5f9 Michael Hanselmann
	lib/client/gnt_debug.py \
280 667dbd6b Adeodato Simo
	lib/client/gnt_group.py \
281 e792102d Michael Hanselmann
	lib/client/gnt_instance.py \
282 a09b9e3d Michael Hanselmann
	lib/client/gnt_job.py \
283 37494fa4 Michael Hanselmann
	lib/client/gnt_node.py \
284 4e4b6b7a Apollon Oikonomopoulos
	lib/client/gnt_network.py \
285 6d50f5f9 Michael Hanselmann
	lib/client/gnt_os.py
286 2d48a3a2 Michael Hanselmann
287 e8230860 Michael Hanselmann
hypervisor_PYTHON = \
288 e8230860 Michael Hanselmann
	lib/hypervisor/__init__.py \
289 e8230860 Michael Hanselmann
	lib/hypervisor/hv_base.py \
290 48297fa2 Iustin Pop
	lib/hypervisor/hv_chroot.py \
291 e8230860 Michael Hanselmann
	lib/hypervisor/hv_fake.py \
292 eb58f9b1 Guido Trotter
	lib/hypervisor/hv_kvm.py \
293 4b5e40a5 Iustin Pop
	lib/hypervisor/hv_lxc.py \
294 e8230860 Michael Hanselmann
	lib/hypervisor/hv_xen.py
295 e8230860 Michael Hanselmann
296 8c229cc7 Oleksiy Mishchenko
rapi_PYTHON = \
297 8c229cc7 Oleksiy Mishchenko
	lib/rapi/__init__.py \
298 10b207d4 Oleksiy Mishchenko
	lib/rapi/baserlib.py \
299 95ab4de9 David Knowles
	lib/rapi/client.py \
300 20b509de Michael Hanselmann
	lib/rapi/client_utils.py \
301 10b207d4 Oleksiy Mishchenko
	lib/rapi/connector.py \
302 a85f23fa Michael Hanselmann
	lib/rapi/rlib2.py \
303 a85f23fa Michael Hanselmann
	lib/rapi/testutils.py
304 8c229cc7 Oleksiy Mishchenko
305 ff9efc03 Michael Hanselmann
http_PYTHON = \
306 02cab3e7 Michael Hanselmann
	lib/http/__init__.py \
307 be500c29 Michael Hanselmann
	lib/http/auth.py \
308 02cab3e7 Michael Hanselmann
	lib/http/client.py \
309 02cab3e7 Michael Hanselmann
	lib/http/server.py
310 ff9efc03 Michael Hanselmann
311 12426ae1 Guido Trotter
confd_PYTHON = \
312 71f27d19 Guido Trotter
	lib/confd/__init__.py \
313 b0dcdc10 Iustin Pop
	lib/confd/client.py
314 8c229cc7 Oleksiy Mishchenko
315 dc101ecc Michael Hanselmann
masterd_PYTHON = \
316 033a1d00 Michael Hanselmann
	lib/masterd/__init__.py \
317 0fcd0cad René Nussbaumer
	lib/masterd/iallocator.py \
318 033a1d00 Michael Hanselmann
	lib/masterd/instance.py
319 dc101ecc Michael Hanselmann
320 bb44b1ae Michael Hanselmann
impexpd_PYTHON = \
321 bb44b1ae Michael Hanselmann
	lib/impexpd/__init__.py
322 bb44b1ae Michael Hanselmann
323 9f4bb951 Michael Hanselmann
watcher_PYTHON = \
324 9ca87fb3 Michael Hanselmann
	lib/watcher/__init__.py \
325 adf6301e Michael Hanselmann
	lib/watcher/nodemaint.py \
326 adf6301e Michael Hanselmann
	lib/watcher/state.py
327 9f4bb951 Michael Hanselmann
328 899c4d2c Michael Hanselmann
server_PYTHON = \
329 29d91329 Michael Hanselmann
	lib/server/__init__.py \
330 5119f2ec Michael Hanselmann
	lib/server/masterd.py \
331 d9c82a4e Michael Hanselmann
	lib/server/noded.py \
332 d9c82a4e Michael Hanselmann
	lib/server/rapi.py
333 899c4d2c Michael Hanselmann
334 0d2bf835 René Nussbaumer
pytools_PYTHON = \
335 0d2bf835 René Nussbaumer
	lib/tools/__init__.py \
336 d12b9f66 Michael Hanselmann
	lib/tools/ensure_dirs.py \
337 d5fe5fa9 Michael Hanselmann
	lib/tools/node_cleanup.py \
338 69e5fefc Michael Hanselmann
	lib/tools/node_daemon_setup.py \
339 d12b9f66 Michael Hanselmann
	lib/tools/prepare_node_join.py
340 0d2bf835 René Nussbaumer
341 c047a981 Michael Hanselmann
utils_PYTHON = \
342 4fd029cf Michael Hanselmann
	lib/utils/__init__.py \
343 79d22269 Michael Hanselmann
	lib/utils/algo.py \
344 9d1b963f Michael Hanselmann
	lib/utils/filelock.py \
345 f21bb4b7 Michael Hanselmann
	lib/utils/hash.py \
346 3865ca48 Michael Hanselmann
	lib/utils/io.py \
347 1ae4c5a1 Michael Hanselmann
	lib/utils/log.py \
348 8dc76d54 Guido Trotter
	lib/utils/mlock.py \
349 17b97ab3 Michael Hanselmann
	lib/utils/nodesetup.py \
350 a4ccecf6 Michael Hanselmann
	lib/utils/process.py \
351 7fcffe27 Michael Hanselmann
	lib/utils/retry.py \
352 7831fc5f Michael Hanselmann
	lib/utils/text.py \
353 c50645c0 Michael Hanselmann
	lib/utils/wrapper.py \
354 c50645c0 Michael Hanselmann
	lib/utils/x509.py
355 c047a981 Michael Hanselmann
356 f05c99f3 Michael Hanselmann
docrst = \
357 ffa6869f Iustin Pop
	doc/admin.rst \
358 dad26941 Iustin Pop
	doc/cluster-merge.rst \
359 5c0c1eeb Iustin Pop
	doc/design-2.0.rst \
360 4f366caf Michael Hanselmann
	doc/design-2.1.rst \
361 e56bb0e8 Guido Trotter
	doc/design-2.2.rst \
362 1eb85930 Guido Trotter
	doc/design-2.3.rst \
363 78b40c5e Michael Hanselmann
	doc/design-2.4.rst \
364 d774ce92 Michael Hanselmann
	doc/design-2.5.rst \
365 40309ed7 Michael Hanselmann
	doc/design-2.6.rst \
366 97aac894 Michael Hanselmann
	doc/design-2.7.rst \
367 dad26941 Iustin Pop
	doc/design-autorepair.rst \
368 dad26941 Iustin Pop
	doc/design-bulk-create.rst \
369 dad26941 Iustin Pop
	doc/design-chained-jobs.rst \
370 ae9b5e0f Tsachy Shacham
	doc/design-cpu-pinning.rst \
371 dad26941 Iustin Pop
	doc/design-draft.rst \
372 dad26941 Iustin Pop
	doc/design-htools-2.3.rst \
373 278ddaa9 Michael Hanselmann
	doc/design-http-server.rst \
374 1375e1d9 Michael Hanselmann
	doc/design-impexp2.rst \
375 ed9fda24 Michael Hanselmann
	doc/design-lu-generated-jobs.rst \
376 d55b80b0 Guido Trotter
	doc/design-linuxha.rst \
377 4055b109 Adeodato Simo
	doc/design-multi-reloc.rst \
378 eec83a95 Apollon Oikonomopoulos
	doc/design-network.rst \
379 7742b03c Michael Hanselmann
	doc/design-node-add.rst \
380 dad26941 Iustin Pop
	doc/design-oob.rst \
381 64ea845e Michael Hanselmann
	doc/design-ovf-support.rst \
382 0cc3f0d7 Michael Hanselmann
	doc/design-opportunistic-locking.rst \
383 dad26941 Iustin Pop
	doc/design-partitioned.rst \
384 dad26941 Iustin Pop
	doc/design-query-splitting.rst \
385 dad26941 Iustin Pop
	doc/design-query2.rst \
386 2ff01d78 Michael Hanselmann
	doc/design-remote-commands.rst \
387 d85f01e7 Iustin Pop
	doc/design-resource-model.rst \
388 a997cec5 Apollon Oikonomopoulos
	doc/design-shared-storage.rst \
389 109e07c2 Guido Trotter
	doc/design-monitoring-agent.rst \
390 6b898285 Iustin Pop
	doc/design-virtual-clusters.rst \
391 dad26941 Iustin Pop
	doc/design-x509-ca.rst \
392 62947ebb Michael Hanselmann
	doc/devnotes.rst \
393 e2078d28 Iustin Pop
	doc/glossary.rst \
394 4d6443f4 Iustin Pop
	doc/hooks.rst \
395 876860a3 Iustin Pop
	doc/iallocator.rst \
396 d17e74b4 Iustin Pop
	doc/index.rst \
397 cbf3d64b Michael Hanselmann
	doc/install-quick.rst \
398 28e15341 Iustin Pop
	doc/install.rst \
399 9725b53d Michael Hanselmann
	doc/locking.rst \
400 6bf273d5 Michael Hanselmann
	doc/move-instance.rst \
401 c71a1a3d Iustin Pop
	doc/news.rst \
402 a47dc554 René Nussbaumer
	doc/ovfconverter.rst \
403 6d81475c Iustin Pop
	doc/rapi.rst \
404 b76aac08 Michael Hanselmann
	doc/security.rst \
405 35dd762d Michael Hanselmann
	doc/upgrade.rst \
406 ab171697 Michael Hanselmann
	doc/virtual-cluster.rst \
407 c71a1a3d Iustin Pop
	doc/walkthrough.rst
408 f05c99f3 Michael Hanselmann
409 332b1340 Michele Tartara
HS_PROGS = htools/htools htools/mon-collector
410 22e513e7 Agata Murawska
HS_BIN_ROLES = hbal hscan hspace hinfo hcheck
411 ada0e680 Iustin Pop
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
412 d6159933 Iustin Pop
413 19e21a6c Iustin Pop
HS_ALL_PROGS = \
414 19e21a6c Iustin Pop
	$(HS_PROGS) \
415 19e21a6c Iustin Pop
	htest/hpc-htools \
416 cefd4a4a Michele Tartara
	htest/hpc-mon-collector \
417 19e21a6c Iustin Pop
	htest/test \
418 19e21a6c Iustin Pop
	htools/hconfd \
419 19e21a6c Iustin Pop
	htools/rpc-test
420 19e21a6c Iustin Pop
421 c3f67183 Iustin Pop
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
422 189b51fa Iustin Pop
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=htest/%) htest/hail
423 3096524e Iustin Pop
424 39f0eea5 Iustin Pop
HFLAGS = \
425 39f0eea5 Iustin Pop
	-O -Wall -Werror -ihtools \
426 39f0eea5 Iustin Pop
	-fwarn-monomorphism-restriction \
427 39f0eea5 Iustin Pop
	-fwarn-tabs \
428 39f0eea5 Iustin Pop
	$(GHC_BYVERSION_FLAGS)
429 39f0eea5 Iustin Pop
430 74e60746 Iustin Pop
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
431 d6159933 Iustin Pop
HEXTRA =
432 f0f3a6df Iustin Pop
# internal extra flags (used for htest/test mainly)
433 c7ec3025 Iustin Pop
HEXTRA_INT =
434 b91e9518 Iustin Pop
# exclude options for coverage reports
435 9822b1dd Iustin Pop
HPCEXCL = --exclude Main \
436 98b33d0e Iustin Pop
	--exclude Ganeti.Constants \
437 9822b1dd Iustin Pop
	--exclude Ganeti.HTools.QC \
438 dad26941 Iustin Pop
	--exclude Ganeti.THH \
439 2997cb0a Iustin Pop
	--exclude Ganeti.Version \
440 4349c24d Michele Tartara
	--exclude Test.Ganeti.Attoparsec \
441 2733df51 Iustin Pop
	--exclude Test.Ganeti.TestCommon \
442 e1ee7d5a Iustin Pop
	--exclude Test.Ganeti.TestHTools \
443 e1ee7d5a Iustin Pop
	--exclude Test.Ganeti.TestHelper \
444 b88fcdd0 Iustin Pop
	--exclude Test.Ganeti.TestImports \
445 51309138 Iustin Pop
	$(patsubst htools.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
446 d6159933 Iustin Pop
447 c3f67183 Iustin Pop
HS_LIB_SRCS = \
448 3c1915df Michele Tartara
	htools/Ganeti/Block/Drbd/Types.hs \
449 3c1915df Michele Tartara
	htools/Ganeti/Block/Drbd/Parser.hs \
450 dad26941 Iustin Pop
	htools/Ganeti/BasicTypes.hs \
451 dad26941 Iustin Pop
	htools/Ganeti/Common.hs \
452 dad26941 Iustin Pop
	htools/Ganeti/Compat.hs \
453 dad26941 Iustin Pop
	htools/Ganeti/Confd/Server.hs \
454 cdc2392b Iustin Pop
	htools/Ganeti/Confd/Types.hs \
455 dad26941 Iustin Pop
	htools/Ganeti/Confd/Utils.hs \
456 dad26941 Iustin Pop
	htools/Ganeti/Config.hs \
457 dad26941 Iustin Pop
	htools/Ganeti/Daemon.hs \
458 332b1340 Michele Tartara
	htools/Ganeti/DataCollectors/Drbd.hs \
459 332b1340 Michele Tartara
	htools/Ganeti/DataCollectors/Program.hs \
460 ef3ad027 Iustin Pop
	htools/Ganeti/Errors.hs \
461 879d9290 Iustin Pop
	htools/Ganeti/HTools/Backend/IAlloc.hs \
462 879d9290 Iustin Pop
	htools/Ganeti/HTools/Backend/Luxi.hs \
463 879d9290 Iustin Pop
	htools/Ganeti/HTools/Backend/Rapi.hs \
464 879d9290 Iustin Pop
	htools/Ganeti/HTools/Backend/Simu.hs \
465 879d9290 Iustin Pop
	htools/Ganeti/HTools/Backend/Text.hs \
466 d6159933 Iustin Pop
	htools/Ganeti/HTools/CLI.hs \
467 d6159933 Iustin Pop
	htools/Ganeti/HTools/Cluster.hs \
468 d6159933 Iustin Pop
	htools/Ganeti/HTools/Container.hs \
469 d6159933 Iustin Pop
	htools/Ganeti/HTools/ExtLoader.hs \
470 8e6623c8 Guido Trotter
	htools/Ganeti/HTools/Graph.hs \
471 d6159933 Iustin Pop
	htools/Ganeti/HTools/Group.hs \
472 d6159933 Iustin Pop
	htools/Ganeti/HTools/Instance.hs \
473 d6159933 Iustin Pop
	htools/Ganeti/HTools/Loader.hs \
474 d6159933 Iustin Pop
	htools/Ganeti/HTools/Node.hs \
475 d6159933 Iustin Pop
	htools/Ganeti/HTools/PeerMap.hs \
476 9f13be88 Iustin Pop
	htools/Ganeti/HTools/Program.hs \
477 458a286a Iustin Pop
	htools/Ganeti/HTools/Program/Hail.hs \
478 201b6c34 Iustin Pop
	htools/Ganeti/HTools/Program/Hbal.hs \
479 22e513e7 Agata Murawska
	htools/Ganeti/HTools/Program/Hcheck.hs \
480 2922d2c5 René Nussbaumer
	htools/Ganeti/HTools/Program/Hinfo.hs \
481 7b695a0d Iustin Pop
	htools/Ganeti/HTools/Program/Hscan.hs \
482 1494a4cc Iustin Pop
	htools/Ganeti/HTools/Program/Hspace.hs \
483 dad26941 Iustin Pop
	htools/Ganeti/HTools/Types.hs \
484 21dc8694 Iustin Pop
	htools/Ganeti/Hash.hs \
485 f3baf5ef Iustin Pop
	htools/Ganeti/JSON.hs \
486 dad26941 Iustin Pop
	htools/Ganeti/Jobs.hs \
487 ba4e38e8 Iustin Pop
	htools/Ganeti/Logging.hs \
488 d6159933 Iustin Pop
	htools/Ganeti/Luxi.hs \
489 76a0266e Helga Velroyen
	htools/Ganeti/Network.hs \
490 b1e81520 Iustin Pop
	htools/Ganeti/Objects.hs \
491 e9aaa3c6 Iustin Pop
	htools/Ganeti/OpCodes.hs \
492 92f51573 Iustin Pop
	htools/Ganeti/OpParams.hs \
493 9eeb0aa5 Michael Hanselmann
	htools/Ganeti/Path.hs \
494 046fe3f5 Iustin Pop
	htools/Ganeti/Query/Common.hs \
495 8a65c02b Iustin Pop
	htools/Ganeti/Query/Filter.hs \
496 40246fa0 Agata Murawska
	htools/Ganeti/Query/Group.hs \
497 4cab6703 Iustin Pop
	htools/Ganeti/Query/Language.hs \
498 046fe3f5 Iustin Pop
	htools/Ganeti/Query/Node.hs \
499 4cbe9bda Iustin Pop
	htools/Ganeti/Query/Query.hs \
500 4cab6703 Iustin Pop
	htools/Ganeti/Query/Server.hs \
501 046fe3f5 Iustin Pop
	htools/Ganeti/Query/Types.hs \
502 4cab6703 Iustin Pop
	htools/Ganeti/Rpc.hs \
503 7946c25d Iustin Pop
	htools/Ganeti/Runtime.hs \
504 aa3adf35 Iustin Pop
	htools/Ganeti/Ssconf.hs \
505 26d62e4c Iustin Pop
	htools/Ganeti/THH.hs \
506 5e9deac0 Iustin Pop
	htools/Ganeti/Types.hs \
507 26d62e4c Iustin Pop
	htools/Ganeti/Utils.hs
508 51309138 Iustin Pop
509 51309138 Iustin Pop
HS_TEST_SRCS = \
510 43b3b5c1 Michele Tartara
	htest/Test/Ganeti/Attoparsec.hs \
511 1493a93b Iustin Pop
	htest/Test/Ganeti/BasicTypes.hs \
512 a52f8e72 Michele Tartara
	htest/Test/Ganeti/Block/Drbd/Parser.hs \
513 9de303af Michele Tartara
	htest/Test/Ganeti/Block/Drbd/Types.hs \
514 51000365 Iustin Pop
	htest/Test/Ganeti/Common.hs \
515 305e174c Iustin Pop
	htest/Test/Ganeti/Confd/Utils.hs \
516 dad26941 Iustin Pop
	htest/Test/Ganeti/Daemon.hs \
517 ef3ad027 Iustin Pop
	htest/Test/Ganeti/Errors.hs \
518 879d9290 Iustin Pop
	htest/Test/Ganeti/HTools/Backend/Simu.hs \
519 879d9290 Iustin Pop
	htest/Test/Ganeti/HTools/Backend/Text.hs \
520 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools/CLI.hs \
521 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools/Cluster.hs \
522 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools/Container.hs \
523 8e6623c8 Guido Trotter
	htest/Test/Ganeti/HTools/Graph.hs \
524 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools/Instance.hs \
525 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools/Loader.hs \
526 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools/Node.hs \
527 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools/PeerMap.hs \
528 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/HTools/Types.hs \
529 2d87bd0a Iustin Pop
	htest/Test/Ganeti/JSON.hs \
530 2d87bd0a Iustin Pop
	htest/Test/Ganeti/Jobs.hs \
531 aed2325f Iustin Pop
	htest/Test/Ganeti/Luxi.hs \
532 76a0266e Helga Velroyen
	htest/Test/Ganeti/Network.hs \
533 2733df51 Iustin Pop
	htest/Test/Ganeti/Objects.hs \
534 aed2325f Iustin Pop
	htest/Test/Ganeti/OpCodes.hs \
535 90171729 Iustin Pop
	htest/Test/Ganeti/Query/Filter.hs \
536 aed2325f Iustin Pop
	htest/Test/Ganeti/Query/Language.hs \
537 b9bdc10e Iustin Pop
	htest/Test/Ganeti/Query/Query.hs \
538 aed2325f Iustin Pop
	htest/Test/Ganeti/Rpc.hs \
539 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/Ssconf.hs \
540 f51eacf3 Iustin Pop
	htest/Test/Ganeti/THH.hs \
541 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/TestCommon.hs \
542 e1ee7d5a Iustin Pop
	htest/Test/Ganeti/TestHTools.hs \
543 26d62e4c Iustin Pop
	htest/Test/Ganeti/TestHelper.hs \
544 5e9deac0 Iustin Pop
	htest/Test/Ganeti/Types.hs \
545 26d62e4c Iustin Pop
	htest/Test/Ganeti/Utils.hs
546 e4cc4c11 Iustin Pop
547 51309138 Iustin Pop
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
548 d6159933 Iustin Pop
549 b88fcdd0 Iustin Pop
HS_BUILT_SRCS = \
550 b88fcdd0 Iustin Pop
	htest/Test/Ganeti/TestImports.hs \
551 b88fcdd0 Iustin Pop
	htools/Ganeti/Constants.hs \
552 2997cb0a Iustin Pop
	htools/Ganeti/Version.hs
553 c3f67183 Iustin Pop
HS_BUILT_SRCS_IN = $(patsubst %,%.in,$(HS_BUILT_SRCS))
554 d6159933 Iustin Pop
555 3735787e Iustin Pop
$(RUN_IN_TEMPDIR): | stamp-directories
556 c964d962 Michael Hanselmann
557 a2d917f3 Iustin Pop
# Note: we use here an order-only prerequisite, as the contents of
558 a2d917f3 Iustin Pop
# _autoconf.py are not actually influencing the html build output: it
559 a2d917f3 Iustin Pop
# has to exist in order for the sphinx module to be loaded
560 a2d917f3 Iustin Pop
# successfully, but we certainly don't want the docs to be rebuilt if
561 a2d917f3 Iustin Pop
# it changes
562 c964d962 Michael Hanselmann
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
563 7142485a Iustin Pop
	$(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
564 7142485a Iustin Pop
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
565 08366664 Michael Hanselmann
	| $(BUILT_PYTHON_SOURCES)
566 d17e74b4 Iustin Pop
	@test -n "$(SPHINX)" || \
567 d17e74b4 Iustin Pop
	    { echo 'sphinx-build' not found during configure; exit 1; }
568 2750b299 Michael Hanselmann
	@mkdir_p@ $(dir $@)
569 e7f6524c Michael Hanselmann
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
570 13de7d59 Michael Hanselmann
	    -d . \
571 d17e74b4 Iustin Pop
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
572 d17e74b4 Iustin Pop
	    -D release="$(PACKAGE_VERSION)" \
573 13de7d59 Michael Hanselmann
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
574 13de7d59 Michael Hanselmann
	rm -f doc/html/.buildinfo doc/html/objects.inv
575 13de7d59 Michael Hanselmann
	touch $@
576 13de7d59 Michael Hanselmann
577 c964d962 Michael Hanselmann
doc/html: doc/html/index.html
578 2ab2b9f5 Iustin Pop
579 cbf3d64b Michael Hanselmann
doc/install-quick.rst: INSTALL
580 b76aac08 Michael Hanselmann
doc/news.rst: NEWS
581 7a03d293 Michael Hanselmann
doc/upgrade.rst: UPGRADE
582 b76aac08 Michael Hanselmann
583 e8deef56 Michael Hanselmann
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
584 cbf3d64b Michael Hanselmann
	set -e; \
585 cbf3d64b Michael Hanselmann
	{ echo '.. This file is automatically updated at build time from $<.'; \
586 cbf3d64b Michael Hanselmann
	  echo '.. Do not edit.'; \
587 cbf3d64b Michael Hanselmann
	  echo; \
588 cbf3d64b Michael Hanselmann
	  cat $<; \
589 cbf3d64b Michael Hanselmann
	} > $@
590 cbf3d64b Michael Hanselmann
591 b8195800 Iustin Pop
docdot = \
592 ca9ccea8 Michael Hanselmann
	doc/arch-2.0.dot \
593 ca9ccea8 Michael Hanselmann
	doc/design-2.1-lock-acquire.dot \
594 ca9ccea8 Michael Hanselmann
	doc/design-2.1-lock-release.dot
595 b8195800 Iustin Pop
596 d17e74b4 Iustin Pop
docpng = $(patsubst %.dot,%.png,$(docdot))
597 e8230860 Michael Hanselmann
598 7e1ccbe0 Michael Hanselmann
# Things to build but not to install (add it to EXTRA_DIST if it should be
599 7e1ccbe0 Michael Hanselmann
# distributed)
600 7e1ccbe0 Michael Hanselmann
noinst_DATA = \
601 7e1ccbe0 Michael Hanselmann
	doc/html \
602 656a7fdf Iustin Pop
	$(BUILT_EXAMPLES) \
603 7e1ccbe0 Michael Hanselmann
	doc/examples/bash_completion \
604 e80aeb89 Michael Hanselmann
	doc/examples/bash_completion-debug \
605 7e1ccbe0 Michael Hanselmann
	$(manhtml)
606 f29266b4 Iustin Pop
607 4f3d5b76 Michael Hanselmann
gnt_scripts = \
608 e8230860 Michael Hanselmann
	scripts/gnt-backup \
609 e8230860 Michael Hanselmann
	scripts/gnt-cluster \
610 e8230860 Michael Hanselmann
	scripts/gnt-debug \
611 667dbd6b Adeodato Simo
	scripts/gnt-group \
612 e8230860 Michael Hanselmann
	scripts/gnt-instance \
613 e8230860 Michael Hanselmann
	scripts/gnt-job \
614 4e4b6b7a Apollon Oikonomopoulos
	scripts/gnt-network \
615 e8230860 Michael Hanselmann
	scripts/gnt-node \
616 e8230860 Michael Hanselmann
	scripts/gnt-os
617 e8230860 Michael Hanselmann
618 0d2bf835 René Nussbaumer
PYTHON_BOOTSTRAP_SBIN = \
619 29d91329 Michael Hanselmann
	daemons/ganeti-masterd \
620 5119f2ec Michael Hanselmann
	daemons/ganeti-noded \
621 d9c82a4e Michael Hanselmann
	daemons/ganeti-rapi \
622 dad26941 Iustin Pop
	daemons/ganeti-watcher \
623 656a7fdf Iustin Pop
	$(gnt_scripts)
624 2d48a3a2 Michael Hanselmann
625 0d2bf835 René Nussbaumer
PYTHON_BOOTSTRAP = \
626 0d2bf835 René Nussbaumer
	$(PYTHON_BOOTSTRAP_SBIN) \
627 d12b9f66 Michael Hanselmann
	tools/ensure-dirs \
628 d5fe5fa9 Michael Hanselmann
	tools/node-cleanup \
629 69e5fefc Michael Hanselmann
	tools/node-daemon-setup \
630 d12b9f66 Michael Hanselmann
	tools/prepare-node-join
631 0d2bf835 René Nussbaumer
632 a8c68e44 Michael Hanselmann
qa_scripts = \
633 a0c3e726 Michael Hanselmann
	qa/__init__.py \
634 a8c68e44 Michael Hanselmann
	qa/ganeti-qa.py \
635 a8c68e44 Michael Hanselmann
	qa/qa_cluster.py \
636 a8c68e44 Michael Hanselmann
	qa/qa_config.py \
637 a8c68e44 Michael Hanselmann
	qa/qa_daemon.py \
638 a8c68e44 Michael Hanselmann
	qa/qa_env.py \
639 a8c68e44 Michael Hanselmann
	qa/qa_error.py \
640 21bf2e2e Andrea Spadaccini
	qa/qa_group.py \
641 a8c68e44 Michael Hanselmann
	qa/qa_instance.py \
642 09470dd8 Michael Hanselmann
	qa/qa_job.py \
643 a8c68e44 Michael Hanselmann
	qa/qa_node.py \
644 a8c68e44 Michael Hanselmann
	qa/qa_os.py \
645 a8c68e44 Michael Hanselmann
	qa/qa_rapi.py \
646 a8c68e44 Michael Hanselmann
	qa/qa_tags.py \
647 a8c68e44 Michael Hanselmann
	qa/qa_utils.py
648 a8c68e44 Michael Hanselmann
649 d6159933 Iustin Pop
bin_SCRIPTS =
650 d6159933 Iustin Pop
if WANT_HTOOLS
651 c3f67183 Iustin Pop
bin_SCRIPTS += $(filter-out htools/hail,$(HS_PROGS))
652 458a286a Iustin Pop
install-exec-hook:
653 458a286a Iustin Pop
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
654 7fa52acd Iustin Pop
# FIXME: this is a hardcoded logic, instead of auto-resolving
655 7fa52acd Iustin Pop
	$(LN_S) -f ../../../bin/htools \
656 a2d7ea09 Iustin Pop
	  $(DESTDIR)$(iallocatorsdir)/hail
657 201b6c34 Iustin Pop
	for role in $(HS_BIN_ROLES); do \
658 a2d7ea09 Iustin Pop
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
659 201b6c34 Iustin Pop
	done
660 d6159933 Iustin Pop
endif
661 d6159933 Iustin Pop
662 51309138 Iustin Pop
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS) Makefile
663 21a5e56c Iustin Pop
	@if [ "$(notdir $@)" = "test" ] && [ "$(HTOOLS_NODEV)" ]; then \
664 21a5e56c Iustin Pop
	  echo "Error: cannot run unittests without the development" \
665 21a5e56c Iustin Pop
	       " libraries (see devnotes.rst)" 1>&2; \
666 fd0bc853 Iustin Pop
	  exit 1; \
667 49e11c49 Iustin Pop
	fi
668 f0f3a6df Iustin Pop
	@rm -f $(notdir $@).tix
669 f0f3a6df Iustin Pop
	$(GHC) --make \
670 ef958f2a Iustin Pop
	  $(HFLAGS) \
671 21a5e56c Iustin Pop
	  $(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) $(HTOOLS_REGEX_PCRE) \
672 f0f3a6df Iustin Pop
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
673 c7ec3025 Iustin Pop
	  $(HEXTRA) $(HEXTRA_INT) $@
674 70b6c284 Iustin Pop
	@touch "$@"
675 70b6c284 Iustin Pop
676 f0f3a6df Iustin Pop
# for the htest/test binary, we need to enable profiling/coverage
677 f0f3a6df Iustin Pop
htest/test: HEXTRA_INT=-fhpc -ihtest
678 b91e9518 Iustin Pop
679 896b2850 Iustin Pop
# we compile the hpc-htools binary with the program coverage
680 f0f3a6df Iustin Pop
htest/hpc-htools: HEXTRA_INT=-fhpc
681 25cdf177 Iustin Pop
682 cefd4a4a Michele Tartara
# we compile the hpc-mon-collector binary with the program coverage
683 cefd4a4a Michele Tartara
htest/hpc-mon-collector: HEXTRA_INT=-fhpc
684 cefd4a4a Michele Tartara
685 04d15e63 Iustin Pop
# test dependency
686 cefd4a4a Michele Tartara
htest/offline-tests.sh: htest/hpc-htools htest/hpc-mon-collector
687 04d15e63 Iustin Pop
688 c7ec3025 Iustin Pop
# rules for building profiling-enabled versions of the haskell
689 c7ec3025 Iustin Pop
# programs: hs-prof does the full two-step build, whereas
690 c7ec3025 Iustin Pop
# hs-prof-quick does only the final rebuild (hs-prof must have been
691 c7ec3025 Iustin Pop
# run before)
692 c7ec3025 Iustin Pop
.PHONY: hs-prof hs-prof-quick
693 c7ec3025 Iustin Pop
hs-prof:
694 b0b8458a Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) clean
695 c3231353 Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) $(HS_ALL_PROGS) HEXTRA="-osuf o"
696 c7ec3025 Iustin Pop
	rm -f $(HS_ALL_PROGS)
697 b0b8458a Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
698 c7ec3025 Iustin Pop
699 c7ec3025 Iustin Pop
hs-prof-quick:
700 c3231353 Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) $(HS_ALL_PROGS) HEXTRA="-osuf prof_o -prof -auto-all"
701 c7ec3025 Iustin Pop
702 da7e44ee Michael Hanselmann
dist_sbin_SCRIPTS = \
703 da7e44ee Michael Hanselmann
	tools/ganeti-listrunner
704 4f3d5b76 Michael Hanselmann
705 fc3fd894 Michael Hanselmann
nodist_sbin_SCRIPTS = \
706 0d2bf835 René Nussbaumer
	$(PYTHON_BOOTSTRAP_SBIN) \
707 46118ed2 Iustin Pop
	daemons/ganeti-cleaner
708 fc3fd894 Michael Hanselmann
709 04520998 Iustin Pop
if ENABLE_CONFD
710 b0dcdc10 Iustin Pop
htools/ganeti-confd: htools/hconfd
711 b0dcdc10 Iustin Pop
	cp -f $< $@
712 b0dcdc10 Iustin Pop
713 b0dcdc10 Iustin Pop
nodist_sbin_SCRIPTS += htools/ganeti-confd
714 73b0fa69 Iustin Pop
endif
715 73b0fa69 Iustin Pop
716 cc120286 Bernardo Dal Seno
python_scripts = \
717 e8230860 Michael Hanselmann
	tools/burnin \
718 e8230860 Michael Hanselmann
	tools/cfgshell \
719 e8230860 Michael Hanselmann
	tools/cfgupgrade \
720 b5672ea0 Iustin Pop
	tools/cfgupgrade12 \
721 1f7d3f7d René Nussbaumer
	tools/cluster-merge \
722 4ef0399b Iustin Pop
	tools/confd-client \
723 d62cbd3a Michael Hanselmann
	tools/fmtjson \
724 ea5fd476 Iustin Pop
	tools/lvmstrap \
725 6bf273d5 Michael Hanselmann
	tools/move-instance \
726 ced78a66 Agata Murawska
	tools/ovfconverter \
727 8a670753 Michael Hanselmann
	tools/sanitize-config
728 e8230860 Michael Hanselmann
729 61631293 Stephen Shirley
dist_tools_SCRIPTS = \
730 cc120286 Bernardo Dal Seno
	$(python_scripts) \
731 2f4c951e Stephen Shirley
	tools/kvm-console-wrapper \
732 dad26941 Iustin Pop
	tools/master-ip-setup \
733 b9612abb Iustin Pop
	tools/xen-console-wrapper
734 61631293 Stephen Shirley
735 d5fe5fa9 Michael Hanselmann
nodist_tools_python_scripts = \
736 d5fe5fa9 Michael Hanselmann
	tools/node-cleanup
737 d5fe5fa9 Michael Hanselmann
738 29386d3e Michael Hanselmann
nodist_tools_SCRIPTS = \
739 d5fe5fa9 Michael Hanselmann
	$(nodist_tools_python_scripts) \
740 29386d3e Michael Hanselmann
	tools/vcluster-setup
741 29386d3e Michael Hanselmann
742 2d76b580 Michael Hanselmann
pkglib_python_scripts = \
743 c6ccba7e Michael Hanselmann
	daemons/import-export \
744 c6ccba7e Michael Hanselmann
	tools/check-cert-expired
745 2d76b580 Michael Hanselmann
746 0d2bf835 René Nussbaumer
nodist_pkglib_python_scripts = \
747 d12b9f66 Michael Hanselmann
	tools/ensure-dirs \
748 69e5fefc Michael Hanselmann
	tools/node-daemon-setup \
749 d12b9f66 Michael Hanselmann
	tools/prepare-node-join
750 0d2bf835 René Nussbaumer
751 b8fe7ca6 Iustin Pop
myexeclib_SCRIPTS = \
752 2d76b580 Michael Hanselmann
	daemons/daemon-util \
753 26916aad Apollon Oikonomopoulos
	tools/kvm-ifup \
754 332b1340 Michele Tartara
	$(pkglib_python_scripts) \
755 332b1340 Michele Tartara
	htools/mon-collector
756 f154a7a3 Michael Hanselmann
757 b8fe7ca6 Iustin Pop
nodist_myexeclib_SCRIPTS = \
758 0d2bf835 René Nussbaumer
	$(nodist_pkglib_python_scripts)
759 0d2bf835 René Nussbaumer
760 e8230860 Michael Hanselmann
EXTRA_DIST = \
761 e8230860 Michael Hanselmann
	NEWS \
762 7a03d293 Michael Hanselmann
	UPGRADE \
763 f774bd03 Michael Hanselmann
	epydoc.conf.in \
764 70c771f6 Michael Hanselmann
	pylintrc \
765 bb46a96c Michael Hanselmann
	autotools/build-bash-completion \
766 d5a2a550 Michael Hanselmann
	autotools/build-rpc \
767 5d3c30df Michael Hanselmann
	autotools/check-header \
768 f6cbcc06 Michael Hanselmann
	autotools/check-imports \
769 c55cc346 Iustin Pop
	autotools/check-man-dashes \
770 73d0e218 Iustin Pop
	autotools/check-man-warnings \
771 c81ed2b2 Michael Hanselmann
	autotools/check-news \
772 dad26941 Iustin Pop
	autotools/check-python-code \
773 e627fe09 Michael Hanselmann
	autotools/check-tar \
774 96602be4 Michael Hanselmann
	autotools/check-version \
775 d99d1e36 Iustin Pop
	autotools/convert-constants \
776 95eb4188 Michael Hanselmann
	autotools/docpp \
777 27e336af Michael Hanselmann
	autotools/gen-coverage \
778 df69e0a0 Bernardo Dal Seno
	autotools/testrunner \
779 387863a5 Iustin Pop
	autotools/wrong-hardcoded-paths \
780 f3313af5 Guido Trotter
	$(RUN_IN_TEMPDIR) \
781 f154a7a3 Michael Hanselmann
	daemons/daemon-util.in \
782 fc3fd894 Michael Hanselmann
	daemons/ganeti-cleaner.in \
783 2d76b580 Michael Hanselmann
	$(pkglib_python_scripts) \
784 f9435bdc Iustin Pop
	devel/upload \
785 26916aad Apollon Oikonomopoulos
	tools/kvm-ifup.in \
786 29386d3e Michael Hanselmann
	tools/vcluster-setup.in \
787 b8195800 Iustin Pop
	$(docdot) \
788 f727d134 Michael Hanselmann
	$(docpng) \
789 d17e74b4 Iustin Pop
	$(docrst) \
790 d17e74b4 Iustin Pop
	doc/conf.py \
791 d17e74b4 Iustin Pop
	doc/html \
792 656a7fdf Iustin Pop
	$(BUILT_EXAMPLES:%=%.in) \
793 752a8ca8 Michael Hanselmann
	doc/examples/ganeti.default \
794 752a8ca8 Michael Hanselmann
	doc/examples/ganeti.default-debug \
795 d6d9ce45 Guido Trotter
	doc/examples/hooks/ethers \
796 89c04c2d Guido Trotter
	doc/examples/gnt-debug/README \
797 89c04c2d Guido Trotter
	doc/examples/gnt-debug/delay0.json \
798 89c04c2d Guido Trotter
	doc/examples/gnt-debug/delay50.json \
799 e4d452b4 Michael Hanselmann
	test/lockperf.py \
800 e8230860 Michael Hanselmann
	test/testutils.py \
801 e8230860 Michael Hanselmann
	test/mocks.py \
802 e8230860 Michael Hanselmann
	$(dist_TESTS) \
803 e8230860 Michael Hanselmann
	$(TEST_FILES) \
804 6be8e2bf Iustin Pop
	man/footer.rst \
805 6be8e2bf Iustin Pop
	$(manrst) \
806 f727d134 Michael Hanselmann
	$(maninput) \
807 39e0d19e Michael Hanselmann
	qa/qa-sample.json \
808 d6159933 Iustin Pop
	$(qa_scripts) \
809 51309138 Iustin Pop
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
810 5a1e31b4 Iustin Pop
	$(HS_PROG_SRCS) \
811 04d15e63 Iustin Pop
	htools/lint-hints.hs \
812 f0f3a6df Iustin Pop
	htest/cli-tests-defs.sh \
813 7a07475f Iustin Pop
	htest/offline-test.sh \
814 7a07475f Iustin Pop
	.ghci
815 e8230860 Michael Hanselmann
816 e8230860 Michael Hanselmann
man_MANS = \
817 bae7e531 Michael Hanselmann
	man/ganeti-cleaner.8 \
818 b7b7cda6 Guido Trotter
	man/ganeti-confd.8 \
819 da7e44ee Michael Hanselmann
	man/ganeti-listrunner.8 \
820 320d986d Iustin Pop
	man/ganeti-masterd.8 \
821 e8230860 Michael Hanselmann
	man/ganeti-noded.8 \
822 e8230860 Michael Hanselmann
	man/ganeti-os-interface.7 \
823 320d986d Iustin Pop
	man/ganeti-rapi.8 \
824 e8230860 Michael Hanselmann
	man/ganeti-watcher.8 \
825 dad26941 Iustin Pop
	man/ganeti.7 \
826 e8230860 Michael Hanselmann
	man/gnt-backup.8 \
827 e8230860 Michael Hanselmann
	man/gnt-cluster.8 \
828 d3b4cf9f Iustin Pop
	man/gnt-debug.8 \
829 667dbd6b Adeodato Simo
	man/gnt-group.8 \
830 4e4b6b7a Apollon Oikonomopoulos
	man/gnt-network.8 \
831 e8230860 Michael Hanselmann
	man/gnt-instance.8 \
832 d3b4cf9f Iustin Pop
	man/gnt-job.8 \
833 e8230860 Michael Hanselmann
	man/gnt-node.8 \
834 5a19bd35 Iustin Pop
	man/gnt-os.8 \
835 5a19bd35 Iustin Pop
	man/hail.1 \
836 5a19bd35 Iustin Pop
	man/hbal.1 \
837 f18e4168 Iustin Pop
	man/hcheck.1 \
838 e2bdaf25 René Nussbaumer
	man/hinfo.1 \
839 5a19bd35 Iustin Pop
	man/hscan.1 \
840 d26d808a Iustin Pop
	man/hspace.1 \
841 332b1340 Michele Tartara
	man/htools.1 \
842 332b1340 Michele Tartara
	man/mon-collector.7
843 e8230860 Michael Hanselmann
844 5a19bd35 Iustin Pop
manrst = $(patsubst %.1,%.rst,$(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS))))
845 6be8e2bf Iustin Pop
manhtml = $(patsubst %.rst,%.html,$(manrst))
846 fcdb582d Michael Hanselmann
mangen = $(patsubst %.rst,%.gen,$(manrst))
847 25c92bc5 Michael Hanselmann
maninput = \
848 5a19bd35 Iustin Pop
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
849 de8eea3e Iustin Pop
	$(patsubst %.html,%.html.in,$(manhtml)) \
850 fcdb582d Michael Hanselmann
	man/footer.man man/footer.html $(mangen)
851 e8230860 Michael Hanselmann
852 e8230860 Michael Hanselmann
TEST_FILES = \
853 dad26941 Iustin Pop
	htest/data/common-suffix.data \
854 dad26941 Iustin Pop
	htest/data/hail-alloc-drbd.json \
855 dad26941 Iustin Pop
	htest/data/hail-change-group.json \
856 dad26941 Iustin Pop
	htest/data/hail-invalid-reloc.json \
857 dad26941 Iustin Pop
	htest/data/hail-node-evac.json \
858 dad26941 Iustin Pop
	htest/data/hail-reloc-drbd.json \
859 659d769d Dato Simó
	htest/data/hbal-excl-tags.data \
860 dad26941 Iustin Pop
	htest/data/hbal-split-insts.data \
861 dad26941 Iustin Pop
	htest/data/invalid-node.data \
862 dad26941 Iustin Pop
	htest/data/missing-resources.data \
863 dad26941 Iustin Pop
	htest/data/rapi/groups.json \
864 dad26941 Iustin Pop
	htest/data/rapi/info.json \
865 dad26941 Iustin Pop
	htest/data/rapi/instances.json \
866 dad26941 Iustin Pop
	htest/data/rapi/nodes.json \
867 dad26941 Iustin Pop
	htest/shelltests/htools-balancing.test \
868 dad26941 Iustin Pop
	htest/shelltests/htools-basic.test \
869 dad26941 Iustin Pop
	htest/shelltests/htools-dynutil.test \
870 dad26941 Iustin Pop
	htest/shelltests/htools-excl.test \
871 dad26941 Iustin Pop
	htest/shelltests/htools-hail.test \
872 dad26941 Iustin Pop
	htest/shelltests/htools-hspace.test \
873 dad26941 Iustin Pop
	htest/shelltests/htools-invalid.test \
874 dad26941 Iustin Pop
	htest/shelltests/htools-multi-group.test \
875 dad26941 Iustin Pop
	htest/shelltests/htools-no-backend.test \
876 dad26941 Iustin Pop
	htest/shelltests/htools-rapi.test \
877 dad26941 Iustin Pop
	htest/shelltests/htools-single-group.test \
878 dad26941 Iustin Pop
	htest/shelltests/htools-text-backend.test \
879 cefd4a4a Michele Tartara
	htest/shelltests/htools-mon-collector.test \
880 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-8.0.txt \
881 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-8.3.txt \
882 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-disk.txt \
883 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-net-ip4.txt \
884 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-net-ip6.txt \
885 27e46076 Michael Hanselmann
	test/data/cert1.pem \
886 d12b9f66 Michael Hanselmann
	test/data/cert2.pem \
887 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-dummy0.txt \
888 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-ipv4.txt \
889 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-ipv6.txt \
890 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
891 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
892 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-oneline.txt \
893 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo.txt \
894 585c8187 Guido Trotter
	test/data/kvm_0.12.5_help.txt \
895 dad26941 Iustin Pop
	test/data/kvm_0.15.90_help.txt \
896 585c8187 Guido Trotter
	test/data/kvm_0.9.1_help.txt \
897 dad26941 Iustin Pop
	test/data/kvm_1.0_help.txt \
898 1e6fab60 Agata Murawska
	test/data/ovfdata/compr_disk.vmdk.gz \
899 d92518d3 Agata Murawska
	test/data/ovfdata/config.ini \
900 1e6fab60 Agata Murawska
	test/data/ovfdata/corrupted_resources.ovf \
901 d92518d3 Agata Murawska
	test/data/ovfdata/empty.ini \
902 1e6fab60 Agata Murawska
	test/data/ovfdata/empty.ovf \
903 1e6fab60 Agata Murawska
	test/data/ovfdata/ganeti.mf \
904 1e6fab60 Agata Murawska
	test/data/ovfdata/ganeti.ovf \
905 1e6fab60 Agata Murawska
	test/data/ovfdata/gzip_disk.ovf \
906 1e6fab60 Agata Murawska
	test/data/ovfdata/new_disk.vmdk \
907 d92518d3 Agata Murawska
	test/data/ovfdata/no_disk.ini \
908 1e6fab60 Agata Murawska
	test/data/ovfdata/no_disk_in_ref.ovf \
909 d92518d3 Agata Murawska
	test/data/ovfdata/no_os.ini \
910 1e6fab60 Agata Murawska
	test/data/ovfdata/no_ovf.ova \
911 dad26941 Iustin Pop
	test/data/ovfdata/other/rawdisk.raw \
912 1e6fab60 Agata Murawska
	test/data/ovfdata/ova.ova \
913 d92518d3 Agata Murawska
	test/data/ovfdata/rawdisk.raw \
914 dad26941 Iustin Pop
	test/data/ovfdata/second_disk.vmdk \
915 d92518d3 Agata Murawska
	test/data/ovfdata/unsafe_path.ini \
916 1e6fab60 Agata Murawska
	test/data/ovfdata/virtualbox.ovf \
917 d92518d3 Agata Murawska
	test/data/ovfdata/wrong_config.ini \
918 dad26941 Iustin Pop
	test/data/ovfdata/wrong_extension.ovd \
919 1e6fab60 Agata Murawska
	test/data/ovfdata/wrong_manifest.mf \
920 1e6fab60 Agata Murawska
	test/data/ovfdata/wrong_manifest.ovf \
921 1e6fab60 Agata Murawska
	test/data/ovfdata/wrong_ova.ova \
922 1e6fab60 Agata Murawska
	test/data/ovfdata/wrong_xml.ovf \
923 dad26941 Iustin Pop
	test/data/proc_drbd8.txt \
924 dad26941 Iustin Pop
	test/data/proc_drbd80-emptyline.txt \
925 dad26941 Iustin Pop
	test/data/proc_drbd83.txt \
926 dad26941 Iustin Pop
	test/data/proc_drbd83_sync.txt \
927 a52f8e72 Michele Tartara
	test/data/proc_drbd83_sync_want.txt \
928 dad26941 Iustin Pop
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
929 dad26941 Iustin Pop
	test/data/sys_drbd_usermode_helper.txt \
930 1a1e7ab3 Iustin Pop
	test/data/vgreduce-removemissing-2.02.02.txt \
931 1a1e7ab3 Iustin Pop
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
932 1a1e7ab3 Iustin Pop
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
933 1a1e7ab3 Iustin Pop
	test/data/vgs-missing-pvs-2.02.02.txt \
934 1a1e7ab3 Iustin Pop
	test/data/vgs-missing-pvs-2.02.66.txt \
935 30f2802f Iustin Pop
	test/ganeti-cli.test \
936 dad26941 Iustin Pop
	test/gnt-cli.test \
937 dad26941 Iustin Pop
	test/import-export_unittest-helper
938 e8230860 Michael Hanselmann
939 e8c8cf1a Michael Hanselmann
python_tests = \
940 3ade0e0e Michael Hanselmann
	doc/examples/rapi_testutils.py \
941 dad26941 Iustin Pop
	test/cfgupgrade_unittest.py \
942 dad26941 Iustin Pop
	test/docs_unittest.py \
943 17496050 Guido Trotter
	test/ganeti.asyncnotifier_unittest.py \
944 1a2eb2dc Michael Hanselmann
	test/ganeti.backend_unittest-runasroot.py \
945 f942a838 Michael Hanselmann
	test/ganeti.backend_unittest.py \
946 6de7c41d Iustin Pop
	test/ganeti.bdev_unittest.py \
947 6de7c41d Iustin Pop
	test/ganeti.cli_unittest.py \
948 66d1f035 René Nussbaumer
	test/ganeti.client.gnt_cluster_unittest.py \
949 25ce3ec4 Michael Hanselmann
	test/ganeti.client.gnt_instance_unittest.py \
950 e1c701e7 Michael Hanselmann
	test/ganeti.client.gnt_job_unittest.py \
951 6de7c41d Iustin Pop
	test/ganeti.cmdlib_unittest.py \
952 cea881e5 Michael Hanselmann
	test/ganeti.compat_unittest.py \
953 edf7d66e Iustin Pop
	test/ganeti.confd.client_unittest.py \
954 e8230860 Michael Hanselmann
	test/ganeti.config_unittest.py \
955 6de7c41d Iustin Pop
	test/ganeti.constants_unittest.py \
956 dad26941 Iustin Pop
	test/ganeti.daemon_unittest.py \
957 3bd19c66 Michael Hanselmann
	test/ganeti.errors_unittest.py \
958 e8230860 Michael Hanselmann
	test/ganeti.hooks_unittest.py \
959 ecdf0398 Michael Hanselmann
	test/ganeti.ht_unittest.py \
960 6de7c41d Iustin Pop
	test/ganeti.http_unittest.py \
961 55cc0a44 Michael Hanselmann
	test/ganeti.hypervisor.hv_chroot_unittest.py \
962 55cc0a44 Michael Hanselmann
	test/ganeti.hypervisor.hv_fake_unittest.py \
963 748e4b5a Michael Hanselmann
	test/ganeti.hypervisor.hv_kvm_unittest.py \
964 55cc0a44 Michael Hanselmann
	test/ganeti.hypervisor.hv_lxc_unittest.py \
965 55cc0a44 Michael Hanselmann
	test/ganeti.hypervisor.hv_xen_unittest.py \
966 dad26941 Iustin Pop
	test/ganeti.hypervisor_unittest.py \
967 bb44b1ae Michael Hanselmann
	test/ganeti.impexpd_unittest.py \
968 989a8bee Michael Hanselmann
	test/ganeti.jqueue_unittest.py \
969 6f1aa78d Michael Hanselmann
	test/ganeti.jstore_unittest.py \
970 e8230860 Michael Hanselmann
	test/ganeti.locking_unittest.py \
971 231db3a5 Michael Hanselmann
	test/ganeti.luxi_unittest.py \
972 33b4fa9f René Nussbaumer
	test/ganeti.masterd.iallocator_unittest.py \
973 033a1d00 Michael Hanselmann
	test/ganeti.masterd.instance_unittest.py \
974 407339d0 Michael Hanselmann
	test/ganeti.mcpu_unittest.py \
975 a744b676 Manuel Franceschini
	test/ganeti.netutils_unittest.py \
976 4c14965f Guido Trotter
	test/ganeti.objects_unittest.py \
977 32683096 René Nussbaumer
	test/ganeti.objectutils_unittest.py \
978 c32b908e Michael Hanselmann
	test/ganeti.opcodes_unittest.py \
979 1e6fab60 Agata Murawska
	test/ganeti.ovf_unittest.py \
980 a123dc19 Michael Hanselmann
	test/ganeti.qlang_unittest.py \
981 4ca96421 Michael Hanselmann
	test/ganeti.query_unittest.py \
982 cfaeaaf7 Michael Hanselmann
	test/ganeti.rapi.baserlib_unittest.py \
983 95ab4de9 David Knowles
	test/ganeti.rapi.client_unittest.py \
984 4cbd4462 Oleksiy Mishchenko
	test/ganeti.rapi.resources_unittest.py \
985 6395cebb Michael Hanselmann
	test/ganeti.rapi.rlib2_unittest.py \
986 a85f23fa Michael Hanselmann
	test/ganeti.rapi.testutils_unittest.py \
987 33231500 Michael Hanselmann
	test/ganeti.rpc_unittest.py \
988 f12e1736 René Nussbaumer
	test/ganeti.runtime_unittest.py \
989 6de7c41d Iustin Pop
	test/ganeti.serializer_unittest.py \
990 105f0d47 Michael Hanselmann
	test/ganeti.server.rapi_unittest.py \
991 911dfc49 Michael Hanselmann
	test/ganeti.ssconf_unittest.py \
992 6de7c41d Iustin Pop
	test/ganeti.ssh_unittest.py \
993 048eeb2b Iustin Pop
	test/ganeti.storage_unittest.py \
994 0d2bf835 René Nussbaumer
	test/ganeti.tools.ensure_dirs_unittest.py \
995 69e5fefc Michael Hanselmann
	test/ganeti.tools.node_daemon_setup_unittest.py \
996 d12b9f66 Michael Hanselmann
	test/ganeti.tools.prepare_node_join_unittest.py \
997 93be53da Balazs Lecz
	test/ganeti.uidpool_unittest.py \
998 4fd029cf Michael Hanselmann
	test/ganeti.utils.algo_unittest.py \
999 9d1b963f Michael Hanselmann
	test/ganeti.utils.filelock_unittest.py \
1000 f21bb4b7 Michael Hanselmann
	test/ganeti.utils.hash_unittest.py \
1001 7ebadeb3 Bernardo Dal Seno
	test/ganeti.utils.io_unittest-runasroot.py \
1002 dad26941 Iustin Pop
	test/ganeti.utils.io_unittest.py \
1003 b6fa9a44 Michael Hanselmann
	test/ganeti.utils.log_unittest.py \
1004 8dc76d54 Guido Trotter
	test/ganeti.utils.mlock_unittest.py \
1005 17b97ab3 Michael Hanselmann
	test/ganeti.utils.nodesetup_unittest.py \
1006 a4ccecf6 Michael Hanselmann
	test/ganeti.utils.process_unittest.py \
1007 79d22269 Michael Hanselmann
	test/ganeti.utils.retry_unittest.py \
1008 7fcffe27 Michael Hanselmann
	test/ganeti.utils.text_unittest.py \
1009 7831fc5f Michael Hanselmann
	test/ganeti.utils.wrapper_unittest.py \
1010 c50645c0 Michael Hanselmann
	test/ganeti.utils.x509_unittest.py \
1011 4fd029cf Michael Hanselmann
	test/ganeti.utils_unittest.py \
1012 05e733b4 Michael Hanselmann
	test/ganeti.vcluster_unittest.py \
1013 3f991867 Michael Hanselmann
	test/ganeti.workerpool_unittest.py \
1014 4fd2660d Michael Hanselmann
	test/pycurl_reset_unittest.py \
1015 dad26941 Iustin Pop
	test/qa.qa_config_unittest.py \
1016 055f822b Michael Hanselmann
	test/tempfile_fork_unittest.py
1017 e8230860 Michael Hanselmann
1018 f0f3a6df Iustin Pop
haskell_tests = htest/test
1019 b91e9518 Iustin Pop
1020 e8c8cf1a Michael Hanselmann
dist_TESTS = \
1021 7172f605 Michael Hanselmann
	test/check-cert-expired_unittest.bash \
1022 571b34f8 Michael Hanselmann
	test/daemon-util_unittest.bash \
1023 7172f605 Michael Hanselmann
	test/ganeti-cleaner_unittest.bash \
1024 2d76b580 Michael Hanselmann
	test/import-export_unittest.bash \
1025 30f2802f Iustin Pop
	test/cli-test.bash \
1026 92886204 Michael Hanselmann
	test/bash_completion.bash \
1027 e8c8cf1a Michael Hanselmann
	$(python_tests)
1028 e8c8cf1a Michael Hanselmann
1029 e8230860 Michael Hanselmann
nodist_TESTS =
1030 d3cd5a3f Iustin Pop
check_SCRIPTS =
1031 d3cd5a3f Iustin Pop
1032 e5f6768c Iustin Pop
if WANT_HTOOLSTESTS
1033 b91e9518 Iustin Pop
nodist_TESTS += $(haskell_tests)
1034 f0f3a6df Iustin Pop
dist_TESTS += htest/offline-test.sh
1035 cefd4a4a Michele Tartara
check_SCRIPTS += \
1036 cefd4a4a Michele Tartara
	htest/hpc-htools \
1037 cefd4a4a Michele Tartara
	htest/hpc-mon-collector \
1038 cefd4a4a Michele Tartara
	$(HS_BUILT_TEST_HELPERS)
1039 b91e9518 Iustin Pop
endif
1040 e8230860 Michael Hanselmann
1041 e8230860 Michael Hanselmann
TESTS = $(dist_TESTS) $(nodist_TESTS)
1042 e8230860 Michael Hanselmann
1043 27e336af Michael Hanselmann
# Environment for all tests
1044 27e336af Michael Hanselmann
PLAIN_TESTS_ENVIRONMENT = \
1045 30f2802f Iustin Pop
	PYTHONPATH=. \
1046 30f2802f Iustin Pop
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1047 30f2802f Iustin Pop
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1048 30f2802f Iustin Pop
	$(RUN_IN_TEMPDIR)
1049 27e336af Michael Hanselmann
1050 27e336af Michael Hanselmann
# Environment for tests run by automake
1051 f848ac00 Michael Hanselmann
TESTS_ENVIRONMENT = \
1052 e8c8cf1a Michael Hanselmann
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1053 6e06b36c Iustin Pop
1054 eed5c5df Michael Hanselmann
all_python_code = \
1055 01a3a718 Michael Hanselmann
	$(dist_sbin_SCRIPTS) \
1056 cc120286 Bernardo Dal Seno
	$(python_scripts) \
1057 2d76b580 Michael Hanselmann
	$(pkglib_python_scripts) \
1058 0d2bf835 René Nussbaumer
	$(nodist_pkglib_python_scripts) \
1059 d5fe5fa9 Michael Hanselmann
	$(nodist_tools_python_scripts) \
1060 e8c8cf1a Michael Hanselmann
	$(python_tests) \
1061 01a3a718 Michael Hanselmann
	$(pkgpython_PYTHON) \
1062 2d48a3a2 Michael Hanselmann
	$(client_PYTHON) \
1063 01a3a718 Michael Hanselmann
	$(hypervisor_PYTHON) \
1064 01a3a718 Michael Hanselmann
	$(rapi_PYTHON) \
1065 899c4d2c Michael Hanselmann
	$(server_PYTHON) \
1066 0d2bf835 René Nussbaumer
	$(pytools_PYTHON) \
1067 01a3a718 Michael Hanselmann
	$(http_PYTHON) \
1068 01a3a718 Michael Hanselmann
	$(confd_PYTHON) \
1069 dc101ecc Michael Hanselmann
	$(masterd_PYTHON) \
1070 bb44b1ae Michael Hanselmann
	$(impexpd_PYTHON) \
1071 c047a981 Michael Hanselmann
	$(utils_PYTHON) \
1072 9f4bb951 Michael Hanselmann
	$(watcher_PYTHON) \
1073 a8c68e44 Michael Hanselmann
	$(noinst_PYTHON) \
1074 a8c68e44 Michael Hanselmann
	$(qa_scripts)
1075 01a3a718 Michael Hanselmann
1076 eed5c5df Michael Hanselmann
srclink_files = \
1077 6be8e2bf Iustin Pop
	man/footer.rst \
1078 7172f605 Michael Hanselmann
	test/check-cert-expired_unittest.bash \
1079 571b34f8 Michael Hanselmann
	test/daemon-util_unittest.bash \
1080 7172f605 Michael Hanselmann
	test/ganeti-cleaner_unittest.bash \
1081 2d76b580 Michael Hanselmann
	test/import-export_unittest.bash \
1082 30f2802f Iustin Pop
	test/cli-test.bash \
1083 92886204 Michael Hanselmann
	test/bash_completion.bash \
1084 f0f3a6df Iustin Pop
	htest/offline-test.sh \
1085 f0f3a6df Iustin Pop
	htest/cli-tests-defs.sh \
1086 d6159933 Iustin Pop
	$(all_python_code) \
1087 51309138 Iustin Pop
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS)
1088 eed5c5df Michael Hanselmann
1089 eed5c5df Michael Hanselmann
check_python_code = \
1090 e4e7c7df Michael Hanselmann
	$(BUILD_BASH_COMPLETION) \
1091 f6cbcc06 Michael Hanselmann
	$(CHECK_IMPORTS) \
1092 5d3c30df Michael Hanselmann
	$(CHECK_HEADER) \
1093 95eb4188 Michael Hanselmann
	$(DOCPP) \
1094 eed5c5df Michael Hanselmann
	$(all_python_code)
1095 eed5c5df Michael Hanselmann
1096 e4e7c7df Michael Hanselmann
lint_python_code = \
1097 f60d352e Michael Hanselmann
	ganeti \
1098 f1763373 Iustin Pop
	ganeti/http/server.py \
1099 f60d352e Michael Hanselmann
	$(dist_sbin_SCRIPTS) \
1100 cc120286 Bernardo Dal Seno
	$(python_scripts) \
1101 2d76b580 Michael Hanselmann
	$(pkglib_python_scripts) \
1102 2cc8bdd0 Michael Hanselmann
	$(BUILD_BASH_COMPLETION) \
1103 f6cbcc06 Michael Hanselmann
	$(CHECK_IMPORTS) \
1104 5d3c30df Michael Hanselmann
	$(CHECK_HEADER) \
1105 95eb4188 Michael Hanselmann
	$(DOCPP) \
1106 2cc8bdd0 Michael Hanselmann
	$(PYTHON_BOOTSTRAP)
1107 eed5c5df Michael Hanselmann
1108 f6cbcc06 Michael Hanselmann
standalone_python_modules = \
1109 f6cbcc06 Michael Hanselmann
	lib/rapi/client.py \
1110 f6cbcc06 Michael Hanselmann
	tools/ganeti-listrunner
1111 f6cbcc06 Michael Hanselmann
1112 21bf2e2e Andrea Spadaccini
pep8_python_code = \
1113 21bf2e2e Andrea Spadaccini
	ganeti \
1114 21bf2e2e Andrea Spadaccini
	ganeti/http/server.py \
1115 21bf2e2e Andrea Spadaccini
	$(dist_sbin_SCRIPTS) \
1116 cc120286 Bernardo Dal Seno
	$(python_scripts) \
1117 21bf2e2e Andrea Spadaccini
	$(pkglib_python_scripts) \
1118 21bf2e2e Andrea Spadaccini
	$(BUILD_BASH_COMPLETION) \
1119 5d3c30df Michael Hanselmann
	$(CHECK_HEADER) \
1120 21bf2e2e Andrea Spadaccini
	$(DOCPP) \
1121 21bf2e2e Andrea Spadaccini
	$(PYTHON_BOOTSTRAP) \
1122 21bf2e2e Andrea Spadaccini
	qa
1123 21bf2e2e Andrea Spadaccini
1124 571b34f8 Michael Hanselmann
test/daemon-util_unittest.bash: daemons/daemon-util
1125 571b34f8 Michael Hanselmann
1126 46118ed2 Iustin Pop
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1127 7172f605 Michael Hanselmann
1128 92886204 Michael Hanselmann
test/bash_completion.bash: doc/examples/bash_completion-debug
1129 92886204 Michael Hanselmann
1130 26916aad Apollon Oikonomopoulos
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1131 26916aad Apollon Oikonomopoulos
	sed -f $(REPLACE_VARS_SED) < $< > $@
1132 26916aad Apollon Oikonomopoulos
	chmod +x $@
1133 26916aad Apollon Oikonomopoulos
1134 29386d3e Michael Hanselmann
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1135 29386d3e Michael Hanselmann
	sed -f $(REPLACE_VARS_SED) < $< > $@
1136 29386d3e Michael Hanselmann
	chmod +x $@
1137 29386d3e Michael Hanselmann
1138 490bec02 Iustin Pop
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1139 e8230860 Michael Hanselmann
	sed -f $(REPLACE_VARS_SED) < $< > $@
1140 5c566e17 Michael Hanselmann
	chmod +x $@
1141 e8230860 Michael Hanselmann
1142 490bec02 Iustin Pop
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1143 e8230860 Michael Hanselmann
	sed -f $(REPLACE_VARS_SED) < $< > $@
1144 e8230860 Michael Hanselmann
1145 e80aeb89 Michael Hanselmann
doc/examples/bash_completion: BC_ARGS = --compact
1146 e80aeb89 Michael Hanselmann
doc/examples/bash_completion-debug: BC_ARGS =
1147 e80aeb89 Michael Hanselmann
1148 e80aeb89 Michael Hanselmann
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1149 e80aeb89 Michael Hanselmann
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1150 4c3d5fb6 Iustin Pop
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1151 46118ed2 Iustin Pop
	daemons/ganeti-cleaner \
1152 ada0e680 Iustin Pop
	$(GENERATED_FILES) $(HTOOLS_GENERATED_FILES)
1153 e80aeb89 Michael Hanselmann
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1154 e80aeb89 Michael Hanselmann
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1155 4f3d5b76 Michael Hanselmann
1156 f86e82ef Iustin Pop
doc/%.png: doc/%.dot
1157 2ab2b9f5 Iustin Pop
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
1158 f86e82ef Iustin Pop
	$(DOT) -Tpng -o $@ $<
1159 f86e82ef Iustin Pop
1160 de8eea3e Iustin Pop
man/footer.man: man/footer.rst
1161 de8eea3e Iustin Pop
	@test -n "$(PANDOC)" || \
1162 de8eea3e Iustin Pop
	  { echo 'pandoc' not found during configure; exit 1; }
1163 de8eea3e Iustin Pop
	$(PANDOC) -f rst -t man -o $@ $<
1164 de8eea3e Iustin Pop
1165 6be8e2bf Iustin Pop
man/footer.html: man/footer.rst
1166 6be8e2bf Iustin Pop
	@test -n "$(PANDOC)" || \
1167 6be8e2bf Iustin Pop
	  { echo 'pandoc' not found during configure; exit 1; }
1168 6be8e2bf Iustin Pop
	$(PANDOC) -f rst -t html -o $@ $<
1169 6be8e2bf Iustin Pop
1170 7142485a Iustin Pop
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1171 d7772efa Iustin Pop
	lib/build/shell_example_lexer.py \
1172 a13d6911 Iustin Pop
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1173 387863a5 Iustin Pop
	@echo "Checking $< for hardcoded paths..."
1174 387863a5 Iustin Pop
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1175 387863a5 Iustin Pop
	  echo "Man page $< has harcoded paths (see above)!" 1>&2 ; \
1176 387863a5 Iustin Pop
	  exit 1; \
1177 387863a5 Iustin Pop
	fi
1178 a13d6911 Iustin Pop
	set -e ; \
1179 a13d6911 Iustin Pop
	trap 'echo auto-removing $@; rm $@' EXIT; \
1180 a13d6911 Iustin Pop
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1181 a13d6911 Iustin Pop
	trap - EXIT
1182 fcdb582d Michael Hanselmann
1183 5a19bd35 Iustin Pop
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.man
1184 6be8e2bf Iustin Pop
	@test -n "$(PANDOC)" || \
1185 6be8e2bf Iustin Pop
	  { echo 'pandoc' not found during configure; exit 1; }
1186 a01dd3c6 Iustin Pop
	set -o pipefail ; \
1187 9c45babb Iustin Pop
	trap 'echo auto-removing $@; rm $@' EXIT; \
1188 6be8e2bf Iustin Pop
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
1189 9c45babb Iustin Pop
	  sed -e 's/\\@/@/g' > $@; \
1190 73d0e218 Iustin Pop
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1191 c55cc346 Iustin Pop
	$(CHECK_MAN_DASHES) $@; \
1192 9c45babb Iustin Pop
	trap - EXIT
1193 9c45babb Iustin Pop
1194 2ab2b9f5 Iustin Pop
1195 fcdb582d Michael Hanselmann
man/%.html.in: man/%.gen man/footer.html
1196 6be8e2bf Iustin Pop
	@test -n "$(PANDOC)" || \
1197 6be8e2bf Iustin Pop
	  { echo 'pandoc' not found during configure; exit 1; }
1198 a01dd3c6 Iustin Pop
	set -o pipefail ; \
1199 6be8e2bf Iustin Pop
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
1200 6be8e2bf Iustin Pop
	  sed -e 's/\\@/@/g' > $@
1201 6be8e2bf Iustin Pop
1202 55398706 Iustin Pop
man/%: man/%.in  $(REPLACE_VARS_SED)
1203 2ab2b9f5 Iustin Pop
	sed -f $(REPLACE_VARS_SED) < $< > $@
1204 f29266b4 Iustin Pop
1205 fc1282b8 Iustin Pop
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1206 fc1282b8 Iustin Pop
	sed -f $(REPLACE_VARS_SED) < $< > $@
1207 f774bd03 Michael Hanselmann
1208 84a12e40 Iustin Pop
vcs-version:
1209 84a12e40 Iustin Pop
	if test -d .git; then \
1210 84a12e40 Iustin Pop
	  git describe > $@; \
1211 84a12e40 Iustin Pop
	elif test ! -f $@ ; then \
1212 84a12e40 Iustin Pop
	  echo "Cannot auto-generate $@ file"; exit 1; \
1213 84a12e40 Iustin Pop
	fi
1214 84a12e40 Iustin Pop
1215 316dc1ff Iustin Pop
.PHONY: clean-vcs-version
1216 316dc1ff Iustin Pop
clean-vcs-version:
1217 316dc1ff Iustin Pop
	rm -f vcs-version
1218 316dc1ff Iustin Pop
1219 84a12e40 Iustin Pop
.PHONY: regen-vcs-version
1220 84a12e40 Iustin Pop
regen-vcs-version:
1221 6376dcc0 Iustin Pop
	@set -e; \
1222 84a12e40 Iustin Pop
	cd $(srcdir); \
1223 84a12e40 Iustin Pop
	if test -d .git; then \
1224 6376dcc0 Iustin Pop
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1225 6376dcc0 Iustin Pop
	  git describe > $$T; \
1226 6376dcc0 Iustin Pop
	  if ! cmp --quiet $$T vcs-version; then \
1227 6376dcc0 Iustin Pop
	    mv $$T vcs-version; \
1228 6376dcc0 Iustin Pop
	  fi; \
1229 84a12e40 Iustin Pop
	fi
1230 84a12e40 Iustin Pop
1231 2997cb0a Iustin Pop
htools/Ganeti/Version.hs: htools/Ganeti/Version.hs.in \
1232 4c3d5fb6 Iustin Pop
	vcs-version $(built_base_sources)
1233 d6159933 Iustin Pop
	set -e; \
1234 d6159933 Iustin Pop
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1235 d6159933 Iustin Pop
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1236 d6159933 Iustin Pop
1237 d99d1e36 Iustin Pop
htools/Ganeti/Constants.hs: htools/Ganeti/Constants.hs.in \
1238 94811696 Michael Hanselmann
	lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1239 4c3d5fb6 Iustin Pop
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1240 ef958f2a Iustin Pop
	| lib/_vcsversion.py
1241 11fd5a86 Iustin Pop
	set -e; \
1242 876f6a5e Iustin Pop
	{ cat $< ; PYTHONPATH=. $(CONVERT_CONSTANTS); } > $@
1243 d99d1e36 Iustin Pop
1244 b88fcdd0 Iustin Pop
htest/Test/Ganeti/TestImports.hs: htest/Test/Ganeti/TestImports.hs.in \
1245 b88fcdd0 Iustin Pop
	$(built_base_sources)
1246 b88fcdd0 Iustin Pop
	set -e; \
1247 b88fcdd0 Iustin Pop
	{ cat $< ; \
1248 b88fcdd0 Iustin Pop
	  echo ; \
1249 b88fcdd0 Iustin Pop
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst htools/%,%,$(HS_LIB_SRCS))))) ; do \
1250 b88fcdd0 Iustin Pop
	    echo "import $$name ()" ; \
1251 b88fcdd0 Iustin Pop
	  done ; \
1252 b88fcdd0 Iustin Pop
	} > $@
1253 b88fcdd0 Iustin Pop
1254 3735787e Iustin Pop
lib/_autoconf.py: Makefile | stamp-directories
1255 84a12e40 Iustin Pop
	set -e; \
1256 e8230860 Michael Hanselmann
	{ echo '# This file is automatically generated, do not edit!'; \
1257 e8230860 Michael Hanselmann
	  echo '#'; \
1258 67047322 Iustin Pop
	  echo ''; \
1259 67047322 Iustin Pop
	  echo '"""Build-time configuration for Ganeti.'; \
1260 67047322 Iustin Pop
	  echo '';\
1261 67047322 Iustin Pop
	  echo 'This file is autogenerated by the build process.'; \
1262 67047322 Iustin Pop
	  echo 'For any changes you need to re-run ./configure (and'; \
1263 67047322 Iustin Pop
	  echo 'not edit by hand).'; \
1264 67047322 Iustin Pop
	  echo ''; \
1265 67047322 Iustin Pop
	  echo '"""'; \
1266 67047322 Iustin Pop
	  echo ''; \
1267 55766d34 Andrea Spadaccini
	  echo '# pylint: disable=C0301,C0324'; \
1268 0a4e7f24 Iustin Pop
	  echo '# because this is autogenerated, we do not want'; \
1269 0a4e7f24 Iustin Pop
	  echo '# style warnings' ; \
1270 0a4e7f24 Iustin Pop
	  echo ''; \
1271 e8230860 Michael Hanselmann
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1272 e8230860 Michael Hanselmann
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1273 e8230860 Michael Hanselmann
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1274 e8230860 Michael Hanselmann
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1275 e8230860 Michael Hanselmann
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1276 e8230860 Michael Hanselmann
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1277 e8230860 Michael Hanselmann
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1278 e8230860 Michael Hanselmann
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1279 553bd93f Vitaly Kuznetsov
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1280 052783ff Michael Hanselmann
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1281 052783ff Michael Hanselmann
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1282 e8230860 Michael Hanselmann
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1283 e8230860 Michael Hanselmann
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1284 2f2dbb4b Jun Futagawa
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1285 e8230860 Michael Hanselmann
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1286 e8230860 Michael Hanselmann
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1287 b8203e1e Iustin Pop
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1288 e8230860 Michael Hanselmann
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1289 cb7c0198 Iustin Pop
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1290 4b97f902 Apollon Oikonomopoulos
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1291 4b97f902 Apollon Oikonomopoulos
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1292 e8230860 Michael Hanselmann
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1293 7e2c5b9e Guido Trotter
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1294 c4dfb0b6 Andrea Spadaccini
	  echo "IP_PATH = '$(IP_PATH)'"; \
1295 fe5b0c42 Michael Hanselmann
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1296 fe5b0c42 Michael Hanselmann
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1297 e90739d6 Michael Hanselmann
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1298 bea60381 Michael Hanselmann
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1299 bea60381 Michael Hanselmann
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1300 4f3d5b76 Michael Hanselmann
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1301 ada0e680 Iustin Pop
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1302 f154a7a3 Michael Hanselmann
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1303 8a69b3a8 Andrea Spadaccini
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1304 8a69b3a8 Andrea Spadaccini
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1305 551b6283 Iustin Pop
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1306 8b72b05c René Nussbaumer
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1307 f12e1736 René Nussbaumer
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1308 8b72b05c René Nussbaumer
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1309 f12e1736 René Nussbaumer
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1310 8b72b05c René Nussbaumer
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1311 f12e1736 René Nussbaumer
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1312 f12e1736 René Nussbaumer
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1313 f12e1736 René Nussbaumer
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1314 f12e1736 René Nussbaumer
	  echo "NODED_USER = '$(NODED_USER)'"; \
1315 03881cb0 René Nussbaumer
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1316 3536c792 Iustin Pop
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1317 a002ed79 Agata Murawska
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1318 21a5e56c Iustin Pop
	  echo "HTOOLS = True"; \
1319 cd8b0072 Iustin Pop
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1320 1eb37421 René Nussbaumer
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1321 42ab9ac4 Iustin Pop
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1322 1fdeb284 Michael Hanselmann
	  echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1323 e8230860 Michael Hanselmann
	} > $@
1324 e8230860 Michael Hanselmann
1325 3735787e Iustin Pop
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1326 13aeae6a Iustin Pop
	set -e; \
1327 13aeae6a Iustin Pop
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1328 13aeae6a Iustin Pop
	{ echo '# This file is automatically generated, do not edit!'; \
1329 13aeae6a Iustin Pop
	  echo '#'; \
1330 13aeae6a Iustin Pop
	  echo ''; \
1331 13aeae6a Iustin Pop
	  echo '"""Build-time VCS version number for Ganeti.'; \
1332 13aeae6a Iustin Pop
	  echo '';\
1333 13aeae6a Iustin Pop
	  echo 'This file is autogenerated by the build process.'; \
1334 13aeae6a Iustin Pop
	  echo 'For any changes you need to re-run ./configure (and'; \
1335 13aeae6a Iustin Pop
	  echo 'not edit by hand).'; \
1336 13aeae6a Iustin Pop
	  echo ''; \
1337 13aeae6a Iustin Pop
	  echo '"""'; \
1338 13aeae6a Iustin Pop
	  echo ''; \
1339 55766d34 Andrea Spadaccini
	  echo '# pylint: disable=C0301,C0324'; \
1340 13aeae6a Iustin Pop
	  echo '# because this is autogenerated, we do not want'; \
1341 13aeae6a Iustin Pop
	  echo '# style warnings' ; \
1342 13aeae6a Iustin Pop
	  echo ''; \
1343 13aeae6a Iustin Pop
	  echo "VCS_VERSION = '$$VCSVER'"; \
1344 13aeae6a Iustin Pop
	} > $@
1345 13aeae6a Iustin Pop
1346 96a7481d Michael Hanselmann
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1347 96a7481d Michael Hanselmann
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1348 d5a2a550 Michael Hanselmann
1349 6e3bf290 Michael Hanselmann
$(SHELL_ENV_INIT): Makefile stamp-directories
1350 6e3bf290 Michael Hanselmann
	set -e; \
1351 6e3bf290 Michael Hanselmann
	{ echo '# Allow overriding for tests'; \
1352 6e3bf290 Michael Hanselmann
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1353 6e3bf290 Michael Hanselmann
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1354 6e3bf290 Michael Hanselmann
	  echo; \
1355 6e3bf290 Michael Hanselmann
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1356 6e3bf290 Michael Hanselmann
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1357 6e3bf290 Michael Hanselmann
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1358 6e3bf290 Michael Hanselmann
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1359 6e3bf290 Michael Hanselmann
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1360 6e3bf290 Michael Hanselmann
	} > $@
1361 6e3bf290 Michael Hanselmann
1362 6e3bf290 Michael Hanselmann
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1363 e8230860 Michael Hanselmann
	set -e; \
1364 e8230860 Michael Hanselmann
	{ echo 's#@PREFIX@#$(prefix)#g'; \
1365 e8230860 Michael Hanselmann
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
1366 e8230860 Michael Hanselmann
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
1367 7a2ba406 Luca Bigliardi
	  echo 's#@BINDIR@#$(bindir)#g'; \
1368 e8230860 Michael Hanselmann
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
1369 335ba60d Guido Trotter
	  echo 's#@LIBDIR@#$(libdir)#g'; \
1370 e8230860 Michael Hanselmann
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1371 2f2dbb4b Jun Futagawa
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1372 e8230860 Michael Hanselmann
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1373 e8230860 Michael Hanselmann
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1374 56956bcb Iustin Pop
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1375 56956bcb Iustin Pop
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1376 d3b4cf9f Iustin Pop
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1377 7e1fac25 Michael Hanselmann
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1378 c5159571 Iustin Pop
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
1379 0d150c50 René Nussbaumer
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1380 0d150c50 René Nussbaumer
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
1381 0d150c50 René Nussbaumer
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
1382 0d150c50 René Nussbaumer
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
1383 0d150c50 René Nussbaumer
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1384 0d150c50 René Nussbaumer
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1385 0d150c50 René Nussbaumer
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1386 0d150c50 René Nussbaumer
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1387 46a8da3b René Nussbaumer
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1388 cd8b0072 Iustin Pop
	  echo 's#@CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1389 fc1282b8 Iustin Pop
	  echo 's#@MODULES@#$(strip $(lint_python_code))#g'; \
1390 42ab9ac4 Iustin Pop
	  echo 's#@ENABLE_SPLIT_QUERY@#$(ENABLE_SPLIT_QUERY)#g'; \
1391 6e3bf290 Michael Hanselmann
	  echo; \
1392 6e3bf290 Michael Hanselmann
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1393 6e3bf290 Michael Hanselmann
	  echo '  r $(SHELL_ENV_INIT)'; \
1394 6e3bf290 Michael Hanselmann
	  echo '  d'; \
1395 6e3bf290 Michael Hanselmann
	  echo '}'; \
1396 e8230860 Michael Hanselmann
	} > $@
1397 e8230860 Michael Hanselmann
1398 67313146 Michael Hanselmann
# Using deferred evaluation
1399 899c4d2c Michael Hanselmann
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1400 9f4bb951 Michael Hanselmann
daemons/ganeti-watcher: MODULE = ganeti.watcher
1401 67313146 Michael Hanselmann
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1402 0d2bf835 René Nussbaumer
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1403 69e5fefc Michael Hanselmann
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1404 d12b9f66 Michael Hanselmann
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1405 d5fe5fa9 Michael Hanselmann
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1406 189b51fa Iustin Pop
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst htest/%,%,$@)
1407 67313146 Michael Hanselmann
1408 3735787e Iustin Pop
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1409 67313146 Michael Hanselmann
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1410 2d48a3a2 Michael Hanselmann
	set -e; \
1411 d75e738e Michael Hanselmann
	{ echo '#!/usr/bin/python'; \
1412 2d48a3a2 Michael Hanselmann
	  echo '# This file is automatically generated, do not edit!'; \
1413 67313146 Michael Hanselmann
	  echo "# Edit $(MODULE) instead."; \
1414 2d48a3a2 Michael Hanselmann
	  echo; \
1415 67313146 Michael Hanselmann
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1416 2d48a3a2 Michael Hanselmann
	  echo; \
1417 55766d34 Andrea Spadaccini
	  echo '# pylint: disable=C0103'; \
1418 2d48a3a2 Michael Hanselmann
	  echo '# C0103: Invalid name'; \
1419 2d48a3a2 Michael Hanselmann
	  echo; \
1420 2d48a3a2 Michael Hanselmann
	  echo 'import sys'; \
1421 67313146 Michael Hanselmann
	  echo 'import $(MODULE) as main'; \
1422 2d48a3a2 Michael Hanselmann
	  echo; \
1423 2d48a3a2 Michael Hanselmann
	  echo '# Temporarily alias commands until bash completion'; \
1424 2d48a3a2 Michael Hanselmann
	  echo '# generator is changed'; \
1425 67313146 Michael Hanselmann
	  echo 'if hasattr(main, "commands"):'; \
1426 55766d34 Andrea Spadaccini
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1427 3f42b4f6 Michael Hanselmann
	  echo 'if hasattr(main, "aliases"):'; \
1428 55766d34 Andrea Spadaccini
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1429 2d48a3a2 Michael Hanselmann
	  echo; \
1430 2d48a3a2 Michael Hanselmann
	  echo 'if __name__ == "__main__":'; \
1431 67313146 Michael Hanselmann
	  echo '  sys.exit(main.Main())'; \
1432 2d48a3a2 Michael Hanselmann
	} > $@
1433 2d48a3a2 Michael Hanselmann
	chmod u+x $@
1434 2d48a3a2 Michael Hanselmann
1435 3096524e Iustin Pop
$(HS_BUILT_TEST_HELPERS): Makefile
1436 3096524e Iustin Pop
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1437 3096524e Iustin Pop
	set -e; \
1438 3096524e Iustin Pop
	{ echo '#!/bin/sh'; \
1439 3096524e Iustin Pop
	  echo '# This file is automatically generated, do not edit!'; \
1440 3096524e Iustin Pop
	  echo "# Edit Makefile.am instead."; \
1441 3096524e Iustin Pop
	  echo; \
1442 f0f3a6df Iustin Pop
	  echo "HTOOLS=$(TESTROLE) exec ./htest/hpc-htools \"\$$@\""; \
1443 3096524e Iustin Pop
	} > $@
1444 3096524e Iustin Pop
	chmod u+x $@
1445 3096524e Iustin Pop
1446 3735787e Iustin Pop
stamp-directories: Makefile
1447 924ecd85 Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1448 3735787e Iustin Pop
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1449 3735787e Iustin Pop
	touch $@
1450 3735787e Iustin Pop
1451 e8230860 Michael Hanselmann
# We need to create symlinks because "make distcheck" will not install Python
1452 e8230860 Michael Hanselmann
# files when building.
1453 3735787e Iustin Pop
stamp-srclinks: Makefile | stamp-directories
1454 e8230860 Michael Hanselmann
	set -e; \
1455 01a3a718 Michael Hanselmann
	for i in $(srclink_files); do \
1456 a2d7ea09 Iustin Pop
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1457 a2d7ea09 Iustin Pop
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1458 a2d7ea09 Iustin Pop
	  fi; \
1459 e8230860 Michael Hanselmann
	done
1460 dd1dfd9a Michael Hanselmann
	touch $@
1461 97a37b3f Michael Hanselmann
1462 9ff7e35c Michael Hanselmann
.PHONY: ganeti
1463 9ff7e35c Michael Hanselmann
ganeti:
1464 01f3e7b1 Iustin Pop
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1465 9ff7e35c Michael Hanselmann
1466 6b997854 Michael Hanselmann
.PHONY: check-dirs
1467 4c3d5fb6 Iustin Pop
check-dirs: $(GENERATED_FILES)
1468 0c1103d6 Iustin Pop
	@set -e; \
1469 a2d7ea09 Iustin Pop
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1470 a2d7ea09 Iustin Pop
	  error=; \
1471 a2d7ea09 Iustin Pop
	  while read dir; do \
1472 a2d7ea09 Iustin Pop
	    case "$$dir" in \
1473 a2d7ea09 Iustin Pop
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1474 a2d7ea09 Iustin Pop
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1475 a2d7ea09 Iustin Pop
	    esac; \
1476 a2d7ea09 Iustin Pop
	  done; \
1477 a2d7ea09 Iustin Pop
	  for dir in $(DIRS); do \
1478 a2d7ea09 Iustin Pop
	    if ! test -d "$$dir"; then \
1479 a2d7ea09 Iustin Pop
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1480 a2d7ea09 Iustin Pop
	      error=1; \
1481 a2d7ea09 Iustin Pop
	    fi \
1482 a2d7ea09 Iustin Pop
	  done; \
1483 a2d7ea09 Iustin Pop
	  test -z "$$error"; \
1484 6b997854 Michael Hanselmann
	}
1485 6b997854 Michael Hanselmann
1486 f6cbcc06 Michael Hanselmann
.PHONY: check-local
1487 4c3d5fb6 Iustin Pop
check-local: check-dirs $(GENERATED_FILES)
1488 eed5c5df Michael Hanselmann
	$(CHECK_PYTHON_CODE) $(check_python_code)
1489 5d3c30df Michael Hanselmann
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1490 35576615 Michael Hanselmann
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1491 7385c51d Michael Hanselmann
	$(CHECK_NEWS) < $(top_srcdir)/NEWS
1492 83ea5145 Michael Hanselmann
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1493 dad26941 Iustin Pop
	@expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1494 154d7ba5 Michael Hanselmann
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1495 a2d7ea09 Iustin Pop
	  echo "Incorrect version in README, expected $$expver"; \
1496 a2d7ea09 Iustin Pop
	  exit 1; \
1497 7ecb3d0e Michael Hanselmann
	fi; \
1498 04c998a5 Michael Hanselmann
	for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1499 a2d7ea09 Iustin Pop
	    doc/security.rst; do \
1500 a2d7ea09 Iustin Pop
	  if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1501 a2d7ea09 Iustin Pop
	    "Documents Ganeti version $$expver"; then \
1502 a2d7ea09 Iustin Pop
	    echo "Incorrect version in $$file, expected $$expver"; \
1503 a2d7ea09 Iustin Pop
	    exit 1; \
1504 a2d7ea09 Iustin Pop
	  fi; \
1505 7a962ecc Michael Hanselmann
	done; \
1506 fc07a14e Michael Hanselmann
	if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1507 a2d7ea09 Iustin Pop
	  echo "File $(top_srcdir)/doc/design-$$expver.rst not found"; \
1508 a2d7ea09 Iustin Pop
	  exit 1; \
1509 52fca4ba Michael Hanselmann
	fi; \
1510 9cda4d6a Iustin Pop
	error= ; \
1511 9cda4d6a Iustin Pop
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
1512 9cda4d6a Iustin Pop
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
1513 9cda4d6a Iustin Pop
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
1514 9cda4d6a Iustin Pop
	    error=1; \
1515 9cda4d6a Iustin Pop
	  fi; \
1516 9cda4d6a Iustin Pop
	done; \
1517 9cda4d6a Iustin Pop
	test -z "$$error"
1518 eed5c5df Michael Hanselmann
1519 49e11c49 Iustin Pop
.PHONY: hs-check
1520 cefd4a4a Michele Tartara
hs-check: htest/test htest/hpc-htools htest/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
1521 49e11c49 Iustin Pop
	@rm -f test.tix
1522 f0f3a6df Iustin Pop
	./htest/test
1523 f0f3a6df Iustin Pop
	HBINARY="./htest/hpc-htools" ./htest/offline-test.sh
1524 49e11c49 Iustin Pop
1525 08366664 Michael Hanselmann
# E111: indentation is not a multiple of four
1526 5ae4945a Iustin Pop
# E121: continuation line indentation is not a multiple of four
1527 5ae4945a Iustin Pop
#       (since our indent level is not 4)
1528 5ae4945a Iustin Pop
# E125: continuation line does not distinguish itself from next logical line
1529 5ae4945a Iustin Pop
#       (since our indent level is not 4)
1530 5ae4945a Iustin Pop
# E127: continuation line over-indented for visual indent
1531 5ae4945a Iustin Pop
#       (since our indent level is not 4)
1532 5ae4945a Iustin Pop
# note: do NOT add E128 here; it's a valid style error in most cases!
1533 5ae4945a Iustin Pop
# I've seen real errors, but also some cases were we indent wrongly
1534 5ae4945a Iustin Pop
# due to line length; try to rework the cases where it is triggered,
1535 5ae4945a Iustin Pop
# instead of silencing it
1536 08366664 Michael Hanselmann
# E261: at least two spaces before inline comment
1537 08366664 Michael Hanselmann
# E501: line too long (80 characters)
1538 5ae4945a Iustin Pop
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1539 08366664 Michael Hanselmann
1540 08366664 Michael Hanselmann
# For excluding pep8 expects filenames only, not whole paths
1541 08366664 Michael Hanselmann
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1542 08366664 Michael Hanselmann
1543 6e4c8f68 Iustin Pop
LINT_TARGETS = pylint pylint-qa
1544 6e4c8f68 Iustin Pop
if HAS_PEP8
1545 6e4c8f68 Iustin Pop
LINT_TARGETS += pep8
1546 6e4c8f68 Iustin Pop
endif
1547 6e4c8f68 Iustin Pop
if HAS_HLINT
1548 6e4c8f68 Iustin Pop
LINT_TARGETS += hlint
1549 6e4c8f68 Iustin Pop
endif
1550 6e4c8f68 Iustin Pop
1551 e0098923 Iustin Pop
.PHONY: lint
1552 6e4c8f68 Iustin Pop
lint: $(LINT_TARGETS)
1553 6e4c8f68 Iustin Pop
1554 6e4c8f68 Iustin Pop
.PHONY: pylint
1555 4c3d5fb6 Iustin Pop
pylint: $(GENERATED_FILES)
1556 6d7cc5ff Michael Hanselmann
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1557 6d7cc5ff Michael Hanselmann
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1558 6e4c8f68 Iustin Pop
1559 6e4c8f68 Iustin Pop
.PHONY: pylint-qa
1560 4c3d5fb6 Iustin Pop
pylint-qa: $(GENERATED_FILES)
1561 6e4c8f68 Iustin Pop
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1562 3582eef6 Iustin Pop
	cd $(top_srcdir)/qa && \
1563 3582eef6 Iustin Pop
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1564 3582eef6 Iustin Pop
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1565 e0098923 Iustin Pop
1566 6e4c8f68 Iustin Pop
.PHONY: pep8
1567 4c3d5fb6 Iustin Pop
pep8: $(GENERATED_FILES)
1568 6e4c8f68 Iustin Pop
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1569 6e4c8f68 Iustin Pop
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1570 a2d7ea09 Iustin Pop
	  --repeat $(pep8_python_code)
1571 6e4c8f68 Iustin Pop
1572 2cdaf225 Iustin Pop
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1573 af42ffb6 Iustin Pop
HLINT_EXCLUDES = htools/Ganeti/THH.hs htest/hpc-htools.hs
1574 191ff68c Iustin Pop
.PHONY: hlint
1575 5a1e31b4 Iustin Pop
hlint: $(HS_BUILT_SRCS) htools/lint-hints.hs
1576 6e4c8f68 Iustin Pop
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1577 191ff68c Iustin Pop
	if tty -s; then C="-c"; else C=""; fi; \
1578 488a5b2e Michele Tartara
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1579 3603605a Iustin Pop
	  --ignore "Use first" \
1580 3603605a Iustin Pop
	  --ignore "Use comparing" \
1581 3603605a Iustin Pop
	  --ignore "Use on" \
1582 3603605a Iustin Pop
	  --ignore "Reduce duplication" \
1583 2cdaf225 Iustin Pop
	  --ignore "Use &&&" \
1584 2cdaf225 Iustin Pop
	  --ignore "Use void" \
1585 5a1e31b4 Iustin Pop
	  --hint htools/lint-hints \
1586 af42ffb6 Iustin Pop
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1587 191ff68c Iustin Pop
1588 84a12e40 Iustin Pop
# a dist hook rule for updating the vcs-version file; this is
1589 84a12e40 Iustin Pop
# hardcoded due to where it needs to build the file...
1590 84a12e40 Iustin Pop
dist-hook:
1591 b0b8458a Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1592 316dc1ff Iustin Pop
	rm -f $(top_distdir)/vcs-version
1593 84a12e40 Iustin Pop
	cp -p $(srcdir)/vcs-version $(top_distdir)
1594 84a12e40 Iustin Pop
1595 84a12e40 Iustin Pop
# a distcheck hook rule for catching revision control directories
1596 b6f2e47f Iustin Pop
distcheck-hook:
1597 c6aa0c42 Michael Hanselmann
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1598 a2d7ea09 Iustin Pop
	  echo "Found revision control files in final archive." 1>&2; \
1599 a2d7ea09 Iustin Pop
	  exit 1; \
1600 c6aa0c42 Michael Hanselmann
	fi
1601 c6aa0c42 Michael Hanselmann
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1602 a2d7ea09 Iustin Pop
	  echo "Found Python byte code in final archive." 1>&2; \
1603 a2d7ea09 Iustin Pop
	  exit 1; \
1604 c6aa0c42 Michael Hanselmann
	fi
1605 c6aa0c42 Michael Hanselmann
	if find $(top_distdir) -name '*~' | grep .; then \
1606 a2d7ea09 Iustin Pop
	  echo "Found backup files in final archive." 1>&2; \
1607 a2d7ea09 Iustin Pop
	  exit 1; \
1608 b6f2e47f Iustin Pop
	fi
1609 bf0b21da Michael Hanselmann
# Empty files or directories should not be distributed. They can cause
1610 bf0b21da Michael Hanselmann
# unnecessary warnings for packagers. Directories used by automake during
1611 bf0b21da Michael Hanselmann
# distcheck must be excluded.
1612 bf0b21da Michael Hanselmann
	if find $(top_distdir) -empty -and -not \( \
1613 a2d7ea09 Iustin Pop
	    -path $(top_distdir)/_build -or \
1614 a2d7ea09 Iustin Pop
	    -path $(top_distdir)/_inst \) | grep .; then \
1615 a2d7ea09 Iustin Pop
	  echo "Found empty files or directories in final archive." 1>&2; \
1616 a2d7ea09 Iustin Pop
	  exit 1; \
1617 bf0b21da Michael Hanselmann
	fi
1618 c7b86f6c Michael Hanselmann
	if test -n "$(BUILD_RELEASE)" && \
1619 c7b86f6c Michael Hanselmann
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
1620 a2d7ea09 Iustin Pop
	   echo "Found unreleased version in NEWS." >&2; \
1621 a2d7ea09 Iustin Pop
	   exit 1; \
1622 c7b86f6c Michael Hanselmann
	fi
1623 c7b86f6c Michael Hanselmann
1624 c7b86f6c Michael Hanselmann
# When building a release, stricter checks should be used
1625 e627fe09 Michael Hanselmann
distcheck-release dist-release: export BUILD_RELEASE = 1
1626 c7b86f6c Michael Hanselmann
distcheck-release: distcheck
1627 b6f2e47f Iustin Pop
1628 7213dded René Nussbaumer
distrebuildcheck: dist
1629 7213dded René Nussbaumer
	set -e; \
1630 7213dded René Nussbaumer
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1631 7213dded René Nussbaumer
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1632 7213dded René Nussbaumer
	cd $$builddir; \
1633 7213dded René Nussbaumer
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1634 7213dded René Nussbaumer
	cd $(distdir); \
1635 7213dded René Nussbaumer
	./configure; \
1636 7213dded René Nussbaumer
	$(MAKE) maintainer-clean; \
1637 7213dded René Nussbaumer
	cp $(abs_srcdir)/vcs-version .; \
1638 7213dded René Nussbaumer
	./configure; \
1639 7213dded René Nussbaumer
	$(MAKE) $(AM_MAKEFLAGS)
1640 7213dded René Nussbaumer
1641 e627fe09 Michael Hanselmann
dist-release: dist
1642 e627fe09 Michael Hanselmann
	set -e; \
1643 e627fe09 Michael Hanselmann
	for i in $(DIST_ARCHIVES); do \
1644 a2d7ea09 Iustin Pop
	  echo -n "Checking $$i ... "; \
1645 a2d7ea09 Iustin Pop
	  autotools/check-tar < $$i; \
1646 a2d7ea09 Iustin Pop
	  echo OK; \
1647 e627fe09 Michael Hanselmann
	done
1648 e627fe09 Michael Hanselmann
1649 8925faaa Iustin Pop
install-exec-local:
1650 0d93b082 Michael Hanselmann
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1651 2fa9f1dd Michael Hanselmann
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1652 2fa9f1dd Michael Hanselmann
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1653 e8230860 Michael Hanselmann
1654 d128fdb6 Iustin Pop
.PHONY: apidoc
1655 a38bfce5 Iustin Pop
if WANT_HTOOLSAPIDOC
1656 a38bfce5 Iustin Pop
apidoc: py-apidoc hs-apidoc
1657 a38bfce5 Iustin Pop
else
1658 a38bfce5 Iustin Pop
apidoc: py-apidoc
1659 a38bfce5 Iustin Pop
endif
1660 a38bfce5 Iustin Pop
1661 a38bfce5 Iustin Pop
.PHONY: py-apidoc
1662 4c3d5fb6 Iustin Pop
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1663 de645b5b Michael Hanselmann
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
1664 b959138f Michael Hanselmann
	$(RUN_IN_TEMPDIR) epydoc -v \
1665 a2d7ea09 Iustin Pop
	  --conf $(CURDIR)/epydoc.conf \
1666 a2d7ea09 Iustin Pop
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
1667 a38bfce5 Iustin Pop
1668 a38bfce5 Iustin Pop
.PHONY: hs-apidoc
1669 c3f67183 Iustin Pop
hs-apidoc: $(HS_BUILT_SRCS)
1670 a38bfce5 Iustin Pop
	@test -n "$(HSCOLOUR)" || \
1671 a38bfce5 Iustin Pop
	    { echo 'HsColour' not found during configure; exit 1; }
1672 a38bfce5 Iustin Pop
	@test -n "$(HADDOCK)" || \
1673 a38bfce5 Iustin Pop
	    { echo 'haddock' not found during configure; exit 1; }
1674 22c5390d Iustin Pop
	rm -rf $(APIDOC_HS_DIR)/*
1675 cbcd9144 Michele Tartara
	for i in $(ALL_APIDOC_HS_DIRS); do \
1676 a2d7ea09 Iustin Pop
	  @mkdir_p@ $$i; \
1677 cbcd9144 Michele Tartara
	done
1678 22c5390d Iustin Pop
	$(HSCOLOUR) -print-css > $(APIDOC_HS_DIR)/Ganeti/hscolour.css
1679 82888134 Michael Hanselmann
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/HTools/hscolour.css
1680 358a0a8f Iustin Pop
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/Confd/hscolour.css
1681 a38bfce5 Iustin Pop
	set -e ; \
1682 a38bfce5 Iustin Pop
	cd htools; \
1683 c478f837 Iustin Pop
	if [ "$(HTOOLS_NOCURL)" ]; \
1684 c478f837 Iustin Pop
	then OPTGHC="--optghc=$(HTOOLS_NOCURL)"; \
1685 c478f837 Iustin Pop
	else OPTGHC=""; \
1686 c478f837 Iustin Pop
	fi; \
1687 1adec4be Iustin Pop
	if [ "$(HTOOLS_PARALLEL3)" ]; \
1688 1adec4be Iustin Pop
	then OPTGHC="$$OPTGHC --optghc=$(HTOOLS_PARALLEL3)"; \
1689 1adec4be Iustin Pop
	fi; \
1690 21a5e56c Iustin Pop
	if [ "$(HTOOLS_REGEX_PCRE)" ]; \
1691 21a5e56c Iustin Pop
	then OPTGHC="$$OPTGHC --optghc=$(HTOOLS_REGEX_PCRE)"; \
1692 21a5e56c Iustin Pop
	fi; \
1693 b88fcdd0 Iustin Pop
	RELSRCS="$(HS_LIB_SRCS:htools/%=%) $(patsubst htools/%,%,$(filter htools/%,$(HS_BUILT_SRCS)))"; \
1694 a38bfce5 Iustin Pop
	for file in $$RELSRCS; do \
1695 a2d7ea09 Iustin Pop
	  hfile=`echo $$file|sed 's/\\.hs$$//'`.html; \
1696 a2d7ea09 Iustin Pop
	  $(HSCOLOUR) -css -anchor $$file > ../$(APIDOC_HS_DIR)/$$hfile ; \
1697 a38bfce5 Iustin Pop
	done ; \
1698 22c5390d Iustin Pop
	$(HADDOCK) --odir ../$(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1699 a2d7ea09 Iustin Pop
	  -t ganeti -p haddock-prologue \
1700 a2d7ea09 Iustin Pop
	  --source-module="%{MODULE/.//}.html" \
1701 a2d7ea09 Iustin Pop
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
1702 a2d7ea09 Iustin Pop
	  $$OPTGHC \
1703 a2d7ea09 Iustin Pop
	  $(filter-out Ganeti/HTools/ExtLoader.hs,$(HS_LIB_SRCS:htools/%=%))
1704 d128fdb6 Iustin Pop
1705 13e720f1 Iustin Pop
.PHONY: TAGS
1706 4c3d5fb6 Iustin Pop
TAGS: $(GENERATED_FILES)
1707 13e720f1 Iustin Pop
	rm -f TAGS
1708 6b84f036 Iustin Pop
	$(GHC) -e ":etags" -v0 \
1709 6b84f036 Iustin Pop
	  $(filter-out -O -Werror,$(HFLAGS)) \
1710 21a5e56c Iustin Pop
	  $(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) $(HTOOLS_REGEX_PCRE) \
1711 6b84f036 Iustin Pop
	  $(HS_LIBTEST_SRCS)
1712 74fa8200 Iustin Pop
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1713 74fa8200 Iustin Pop
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1714 74fa8200 Iustin Pop
	  -path './qa/*.py' | \
1715 2db53645 Iustin Pop
	  etags -l python -a -
1716 13e720f1 Iustin Pop
1717 27e336af Michael Hanselmann
.PHONY: coverage
1718 b91e9518 Iustin Pop
if WANT_HTOOLS
1719 b91e9518 Iustin Pop
coverage: py-coverage hs-coverage
1720 b91e9518 Iustin Pop
else
1721 b91e9518 Iustin Pop
coverage: py-coverage
1722 b91e9518 Iustin Pop
endif
1723 b91e9518 Iustin Pop
1724 b91e9518 Iustin Pop
.PHONY: py-coverage
1725 4c3d5fb6 Iustin Pop
py-coverage: $(GENERATED_FILES) $(python_tests)
1726 141c8421 Michael Hanselmann
	@test -n "$(PYCOVERAGE)" || \
1727 141c8421 Michael Hanselmann
	    { echo 'python-coverage' not found during configure; exit 1; }
1728 27e336af Michael Hanselmann
	set -e; \
1729 141c8421 Michael Hanselmann
	COVERAGE=$(PYCOVERAGE) \
1730 22c5390d Iustin Pop
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1731 22c5390d Iustin Pop
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1732 22c5390d Iustin Pop
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1733 e8c8cf1a Michael Hanselmann
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
1734 e8c8cf1a Michael Hanselmann
	$(python_tests)
1735 27e336af Michael Hanselmann
1736 b91e9518 Iustin Pop
.PHONY: hs-coverage
1737 cefd4a4a Michele Tartara
hs-coverage: $(haskell_tests) htest/hpc-htools htest/hpc-mon-collector
1738 316dc1ff Iustin Pop
	rm -f *.tix
1739 b0b8458a Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) hs-check
1740 48f12e73 Iustin Pop
	@mkdir_p@ $(COVERAGE_HS_DIR)
1741 5f2cdb2a Michele Tartara
	hpc sum --union $(HPCEXCL) \
1742 cefd4a4a Michele Tartara
	  test.tix hpc-htools.tix hpc-mon-collector.tix > coverage-htools.tix
1743 896b2850 Iustin Pop
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-htools.tix
1744 896b2850 Iustin Pop
	hpc report coverage-htools.tix
1745 82888134 Michael Hanselmann
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
1746 b91e9518 Iustin Pop
1747 ec8379bd Iustin Pop
# Special "kind-of-QA" target for htools, needs special setup (all
1748 ec8379bd Iustin Pop
# tools compiled with -fhpc)
1749 ec8379bd Iustin Pop
.PHONY: live-test
1750 ec8379bd Iustin Pop
live-test: all
1751 ec8379bd Iustin Pop
	set -e ; \
1752 ec8379bd Iustin Pop
	cd htools; \
1753 82888134 Michael Hanselmann
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
1754 ec8379bd Iustin Pop
	rm -f *.tix *.mix; \
1755 ec8379bd Iustin Pop
	./live-test.sh; \
1756 c3f67183 Iustin Pop
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:htools/%=%)) \
1757 ec8379bd Iustin Pop
	  --output=live-test.tix ; \
1758 22c5390d Iustin Pop
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1759 22c5390d Iustin Pop
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1760 a2d7ea09 Iustin Pop
	  --srcdir=.. $(HPCEXCL) ; \
1761 ec8379bd Iustin Pop
	hpc report --srcdir=.. live-test $(HPCEXCL)
1762 b91e9518 Iustin Pop
1763 b341b9ca Guido Trotter
commit-check: distcheck lint apidoc
1764 b341b9ca Guido Trotter
1765 6438e259 Iustin Pop
.PHONY: gitignore-check
1766 6438e259 Iustin Pop
gitignore-check:
1767 6438e259 Iustin Pop
	@if [ -n "`git status --short`" ]; then \
1768 6438e259 Iustin Pop
	  echo "Git status is not clean!" 1>&2 ; \
1769 6438e259 Iustin Pop
	  git status --short; \
1770 6438e259 Iustin Pop
	  exit 1; \
1771 6438e259 Iustin Pop
	fi
1772 6438e259 Iustin Pop
1773 37519c09 Iustin Pop
# Target that builds all binaries (including those that are not
1774 37519c09 Iustin Pop
# rebuilt except when running the tests)
1775 37519c09 Iustin Pop
.PHONY: really-all
1776 af42ffb6 Iustin Pop
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
1777 37519c09 Iustin Pop
1778 1d45f7a0 Iustin Pop
# we don't need the ancient implicit rules:
1779 1d45f7a0 Iustin Pop
%: %,v
1780 1d45f7a0 Iustin Pop
%: RCS/%,v
1781 1d45f7a0 Iustin Pop
%: RCS/%
1782 1d45f7a0 Iustin Pop
%: s.%
1783 1d45f7a0 Iustin Pop
%: SCCS/s.%
1784 1d45f7a0 Iustin Pop
1785 3baa809c Michael Hanselmann
-include ./Makefile.local
1786 3baa809c Michael Hanselmann
1787 e8230860 Michael Hanselmann
# vim: set noet :