Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ b5672ea0

History | View | Annotate | Download (14.3 kB)

1
# Ganeti makefile
2
# - Indent with tabs only.
3
# - Keep files sorted; one line per file.
4
# - Directories in lib/ must have their own *dir variable (see hypervisor).
5
# - All directories must be listed DIRS.
6
# - Use autogen.sh to generate Makefile.in and configure script.
7

    
8
# Automake doesn't export these variables before version 1.10.
9
abs_top_builddir = @abs_top_builddir@
10
abs_top_srcdir = @abs_top_srcdir@
11

    
12
ACLOCAL_AMFLAGS = -I autotools
13
DOCBOOK_WRAPPER = $(top_srcdir)/autotools/docbook-wrapper
14
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
15
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
16
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
17
CHECK_MAN = $(top_srcdir)/autotools/check-man
18
REPLACE_VARS_SED = autotools/replace_vars.sed
19

    
20
hypervisordir = $(pkgpythondir)/hypervisor
21
httpdir = $(pkgpythondir)/http
22
confddir = $(pkgpythondir)/confd
23
rapidir = $(pkgpythondir)/rapi
24
toolsdir = $(pkglibdir)/tools
25
docdir = $(datadir)/doc/$(PACKAGE)
26

    
27
# Delete output file if an error occurred while building it
28
.DELETE_ON_ERROR:
29

    
30
DIRS = \
31
	autotools \
32
	daemons \
33
	devel \
34
	doc \
35
	doc/examples \
36
	doc/examples/hooks \
37
	lib \
38
	lib/build \
39
	lib/http \
40
	lib/hypervisor \
41
	lib/rapi \
42
	lib/confd \
43
	man \
44
	qa \
45
	scripts \
46
	test \
47
	test/data \
48
	tools
49

    
50
MAINTAINERCLEANFILES = \
51
	$(docpng) \
52
	$(maninput) \
53
	doc/install-quick.rst \
54
	doc/news.rst
55

    
56
maintainer-clean-local:
57
	rm -rf doc/api doc/html doc/coverage
58

    
59
CLEANFILES = \
60
	autotools/replace_vars.sed \
61
	daemons/daemon-util \
62
	daemons/ganeti-cleaner \
63
	devel/upload \
64
	doc/examples/bash_completion \
65
	doc/examples/ganeti.initd \
66
	doc/examples/ganeti.cron \
67
	doc/examples/gnt-config-backup \
68
	doc/examples/hooks/ipsec \
69
	lib/*.py[co] \
70
	lib/build/*.py[co] \
71
	lib/http/*.py[co] \
72
	lib/hypervisor/*.py[co] \
73
	lib/rapi/*.py[co] \
74
	$(man_MANS) \
75
	$(manhtml) \
76
	qa/*.py[co] \
77
	test/*.py[co] \
78
	stamp-directories \
79
	stamp-srclinks \
80
	$(nodist_pkgpython_PYTHON)
81

    
82
BUILT_SOURCES = \
83
	ganeti \
84
	stamp-srclinks \
85
	stamp-directories \
86
	lib/_autoconf.py
87

    
88
nodist_pkgpython_PYTHON = \
89
	lib/_autoconf.py
90

    
91
noinst_PYTHON = \
92
	lib/build/__init__.py
93

    
94
pkgpython_PYTHON = \
95
	lib/__init__.py \
96
	lib/asyncnotifier.py \
97
	lib/backend.py \
98
	lib/bdev.py \
99
	lib/bootstrap.py \
100
	lib/cli.py \
101
	lib/cmdlib.py \
102
	lib/config.py \
103
	lib/constants.py \
104
	lib/daemon.py \
105
	lib/errors.py \
106
	lib/jqueue.py \
107
	lib/jstore.py \
108
	lib/locking.py \
109
	lib/luxi.py \
110
	lib/mcpu.py \
111
	lib/objects.py \
112
	lib/opcodes.py \
113
	lib/rpc.py \
114
	lib/serializer.py \
115
	lib/ssconf.py \
116
	lib/ssh.py \
117
	lib/storage.py \
118
	lib/utils.py \
119
	lib/workerpool.py
120

    
121
hypervisor_PYTHON = \
122
	lib/hypervisor/__init__.py \
123
	lib/hypervisor/hv_base.py \
124
	lib/hypervisor/hv_chroot.py \
125
	lib/hypervisor/hv_fake.py \
126
	lib/hypervisor/hv_kvm.py \
127
	lib/hypervisor/hv_xen.py
128

    
129
rapi_PYTHON = \
130
	lib/rapi/__init__.py \
131
	lib/rapi/baserlib.py \
132
	lib/rapi/client.py \
133
	lib/rapi/connector.py \
134
	lib/rapi/rlib2.py
135

    
136
http_PYTHON = \
137
	lib/http/__init__.py \
138
	lib/http/auth.py \
139
	lib/http/client.py \
140
	lib/http/server.py
141

    
142
confd_PYTHON = \
143
	lib/confd/__init__.py \
144
	lib/confd/client.py \
145
	lib/confd/server.py \
146
	lib/confd/querylib.py
147

    
148
docrst = \
149
	doc/admin.rst \
150
	doc/design-2.0.rst \
151
	doc/design-2.1.rst \
152
	doc/devnotes.rst \
153
	doc/glossary.rst \
154
	doc/hooks.rst \
155
	doc/iallocator.rst \
156
	doc/index.rst \
157
	doc/install-quick.rst \
158
	doc/install.rst \
159
	doc/locking.rst \
160
	doc/news.rst \
161
	doc/rapi.rst \
162
	doc/security.rst \
163
	doc/walkthrough.rst
164

    
165
doc/html/.stamp: $(docrst) $(docpng) doc/conf.py configure.ac
166
	@test -n "$(SPHINX)" || \
167
	    { echo 'sphinx-build' not found during configure; exit 1; }
168
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
169
	    -d . \
170
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
171
	    -D release="$(PACKAGE_VERSION)" \
172
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
173
	rm -f doc/html/.buildinfo doc/html/objects.inv
174
	touch $@
175

    
176
doc/html: doc/html/.stamp
177

    
178
doc/news.rst: NEWS
179
	set -e; \
180
	{ echo '.. This file is automatically updated at build time from $<.'; \
181
	  echo '.. Do not edit.'; \
182
	  echo; \
183
	  cat $<; \
184
	} > $@
185

    
186
doc/install-quick.rst: INSTALL
187
	set -e; \
188
	{ echo '.. This file is automatically updated at build time from $<.'; \
189
	  echo '.. Do not edit.'; \
190
	  echo; \
191
	  cat $<; \
192
	} > $@
193

    
194
docdot = \
195
	doc/arch-2.0.dot \
196
	doc/design-2.1-lock-acquire.dot \
197
	doc/design-2.1-lock-release.dot
198

    
199
docpng = $(patsubst %.dot,%.png,$(docdot))
200

    
201
# Things to build but not to install (add it to EXTRA_DIST if it should be
202
# distributed)
203
noinst_DATA = \
204
	devel/upload \
205
	doc/html \
206
	doc/examples/bash_completion \
207
	doc/examples/ganeti.cron \
208
	doc/examples/ganeti.initd \
209
	doc/examples/gnt-config-backup \
210
	doc/examples/hooks/ipsec \
211
	$(manhtml)
212

    
213
gnt_scripts = \
214
	scripts/gnt-backup \
215
	scripts/gnt-cluster \
216
	scripts/gnt-debug \
217
	scripts/gnt-instance \
218
	scripts/gnt-job \
219
	scripts/gnt-node \
220
	scripts/gnt-os
221

    
222
dist_sbin_SCRIPTS = \
223
	daemons/ganeti-noded \
224
	daemons/ganeti-watcher \
225
	daemons/ganeti-masterd \
226
	daemons/ganeti-confd \
227
	daemons/ganeti-rapi \
228
	$(gnt_scripts)
229

    
230
nodist_sbin_SCRIPTS = \
231
	daemons/ganeti-cleaner
232

    
233
dist_tools_SCRIPTS = \
234
	tools/burnin \
235
	tools/cfgshell \
236
	tools/cfgupgrade \
237
	tools/cfgupgrade12 \
238
	tools/cluster-merge \
239
	tools/lvmstrap \
240
	tools/sanitize-config
241

    
242
pkglib_SCRIPTS = \
243
	daemons/daemon-util
244

    
245
EXTRA_DIST = \
246
	NEWS \
247
	pylintrc \
248
	autotools/build-bash-completion \
249
	autotools/check-python-code \
250
	autotools/check-man \
251
	autotools/docbook-wrapper \
252
	autotools/gen-coverage \
253
	autotools/testrunner \
254
	$(RUN_IN_TEMPDIR) \
255
	daemons/daemon-util.in \
256
	daemons/ganeti-cleaner.in \
257
	devel/upload.in \
258
	$(docdot) \
259
	$(docpng) \
260
	$(docrst) \
261
	doc/conf.py \
262
	doc/html \
263
	doc/examples/ganeti.initd.in \
264
	doc/examples/ganeti.cron.in \
265
	doc/examples/gnt-config-backup.in \
266
	doc/examples/dumb-allocator \
267
	doc/examples/ganeti.default \
268
	doc/examples/ganeti.default-debug \
269
	doc/examples/hooks/ethers \
270
	doc/examples/hooks/ipsec.in \
271
	test/testutils.py \
272
	test/mocks.py \
273
	$(dist_TESTS) \
274
	$(TEST_FILES) \
275
	man/footer.sgml \
276
	$(mansgml) \
277
	$(maninput) \
278
	qa/ganeti-qa.py \
279
	qa/qa-sample.json \
280
	qa/qa_cluster.py \
281
	qa/qa_config.py \
282
	qa/qa_daemon.py \
283
	qa/qa_env.py \
284
	qa/qa_error.py \
285
	qa/qa_instance.py \
286
	qa/qa_node.py \
287
	qa/qa_os.py \
288
	qa/qa_rapi.py \
289
	qa/qa_tags.py \
290
	qa/qa_utils.py
291

    
292
man_MANS = \
293
	man/ganeti.7 \
294
	man/ganeti-cleaner.8 \
295
	man/ganeti-confd.8 \
296
	man/ganeti-masterd.8 \
297
	man/ganeti-noded.8 \
298
	man/ganeti-os-interface.7 \
299
	man/ganeti-rapi.8 \
300
	man/ganeti-watcher.8 \
301
	man/gnt-backup.8 \
302
	man/gnt-cluster.8 \
303
	man/gnt-debug.8 \
304
	man/gnt-instance.8 \
305
	man/gnt-job.8 \
306
	man/gnt-node.8 \
307
	man/gnt-os.8
308

    
309
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
310
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
311
maninput = \
312
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
313
	$(patsubst %.html,%.html.in,$(manhtml))
314

    
315
TEST_FILES = \
316
	test/data/bdev-both.txt \
317
	test/data/bdev-8.3-both.txt \
318
	test/data/bdev-disk.txt \
319
	test/data/bdev-net.txt \
320
	test/data/cert1.pem \
321
	test/data/proc_drbd8.txt \
322
	test/data/proc_drbd80-emptyline.txt \
323
	test/data/proc_drbd83.txt
324

    
325
python_tests = \
326
	test/ganeti.bdev_unittest.py \
327
	test/ganeti.cli_unittest.py \
328
	test/ganeti.cmdlib_unittest.py \
329
	test/ganeti.confd.client_unittest.py \
330
	test/ganeti.config_unittest.py \
331
	test/ganeti.constants_unittest.py \
332
	test/ganeti.errors_unittest.py \
333
	test/ganeti.hooks_unittest.py \
334
	test/ganeti.http_unittest.py \
335
	test/ganeti.locking_unittest.py \
336
	test/ganeti.mcpu_unittest.py \
337
	test/ganeti.objects_unittest.py \
338
	test/ganeti.opcodes_unittest.py \
339
	test/ganeti.rapi.client_unittest.py \
340
	test/ganeti.rapi.resources_unittest.py \
341
	test/ganeti.serializer_unittest.py \
342
	test/ganeti.ssh_unittest.py \
343
	test/ganeti.utils_unittest.py \
344
	test/ganeti.workerpool_unittest.py \
345
	test/docs_unittest.py \
346
	test/tempfile_fork_unittest.py
347

    
348
dist_TESTS = \
349
	test/daemon-util_unittest.bash \
350
	$(python_tests)
351

    
352
nodist_TESTS =
353

    
354
TESTS = $(dist_TESTS) $(nodist_TESTS)
355

    
356
# Environment for all tests
357
PLAIN_TESTS_ENVIRONMENT = \
358
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
359

    
360
# Environment for tests run by automake
361
TESTS_ENVIRONMENT = \
362
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
363

    
364
all_python_code = \
365
	$(dist_sbin_SCRIPTS) \
366
	$(dist_tools_SCRIPTS) \
367
	$(python_tests) \
368
	$(pkgpython_PYTHON) \
369
	$(hypervisor_PYTHON) \
370
	$(rapi_PYTHON) \
371
	$(http_PYTHON) \
372
	$(confd_PYTHON) \
373
	$(noinst_PYTHON)
374

    
375
srclink_files = \
376
	man/footer.sgml \
377
	test/daemon-util_unittest.bash \
378
	$(all_python_code)
379

    
380
check_python_code = \
381
	$(BUILD_BASH_COMPLETION) \
382
	$(all_python_code)
383

    
384
lint_python_code = \
385
	ganeti \
386
	$(dist_sbin_SCRIPTS) \
387
	$(dist_tools_SCRIPTS) \
388
	$(BUILD_BASH_COMPLETION)
389

    
390
test/daemon-util_unittest.bash: daemons/daemon-util
391

    
392
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
393
	sed -f $(REPLACE_VARS_SED) < $< > $@
394
	chmod u+x $@
395

    
396
daemons/%: daemons/%.in \
397
		$(REPLACE_VARS_SED)
398
	sed -f $(REPLACE_VARS_SED) < $< > $@
399
	chmod +x $@
400

    
401
doc/examples/%: doc/examples/%.in \
402
		$(REPLACE_VARS_SED)
403
	sed -f $(REPLACE_VARS_SED) < $< > $@
404

    
405
doc/examples/hooks/%: doc/examples/hooks/%.in \
406
		$(REPLACE_VARS_SED)
407
	sed -f $(REPLACE_VARS_SED) < $< > $@
408

    
409
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
410
	lib/cli.py $(gnt_scripts) tools/burnin
411
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
412

    
413
doc/%.png: doc/%.dot
414
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
415
	$(DOT) -Tpng -o $@ $<
416

    
417
man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
418
	@test -n "$(DOCBOOK2MAN)" || \
419
	  { echo 'docbook2man' not found during configure; exit 1; }
420
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $(notdir $(@:.in=)) $@
421
	$(CHECK_MAN) $@
422

    
423
man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
424
	@test -n "$(DOCBOOK2HTML)" || \
425
	  { echo 'docbook2html' not found during configure; exit 1; }
426
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
427

    
428
man/%.7: man/%.7.in $(REPLACE_VARS_SED)
429
	sed -f $(REPLACE_VARS_SED) < $< > $@
430

    
431
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
432
	sed -f $(REPLACE_VARS_SED) < $< > $@
433
	$(CHECK_MAN) $@
434

    
435
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
436
	sed -f $(REPLACE_VARS_SED) < $< > $@
437

    
438
lib/_autoconf.py: Makefile stamp-directories
439
	set -e; \
440
	{ echo '# This file is automatically generated, do not edit!'; \
441
	  echo '#'; \
442
	  echo ''; \
443
	  echo '"""Build-time configuration for Ganeti.'; \
444
	  echo '';\
445
	  echo 'This file is autogenerated by the build process.'; \
446
	  echo 'For any changes you need to re-run ./configure (and'; \
447
	  echo 'not edit by hand).'; \
448
	  echo ''; \
449
	  echo '"""'; \
450
	  echo ''; \
451
	  echo '# pylint: disable-msg=C0301,C0324'; \
452
	  echo '# because this is autogenerated, we do not want'; \
453
	  echo '# style warnings' ; \
454
	  echo ''; \
455
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
456
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
457
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
458
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
459
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
460
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
461
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
462
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
463
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
464
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
465
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
466
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
467
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
468
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
469
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
470
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
471
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
472
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
473
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
474
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
475
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
476
	  echo "TOOLSDIR = '$(toolsdir)'"; \
477
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
478
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
479
	  echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
480
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
481
	} > $@
482

    
483
$(REPLACE_VARS_SED): Makefile
484
	set -e; \
485
	{ echo 's#@PREFIX@#$(prefix)#g'; \
486
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
487
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
488
	  echo 's#@BINDIR@#$(bindir)#g'; \
489
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
490
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
491
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
492
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
493
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
494
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
495
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
496
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
497
	} > $@
498

    
499
# We need to create symlinks because "make distcheck" will not install Python
500
# files when building.
501
stamp-srclinks: Makefile stamp-directories
502
	set -e; \
503
	for i in $(srclink_files); do \
504
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
505
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
506
		fi; \
507
	done
508
	touch $@
509

    
510
.PHONY: ganeti
511
ganeti:
512
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
513

    
514
check-local:
515
	$(CHECK_PYTHON_CODE) $(check_python_code)
516

    
517
.PHONY: lint
518
lint: ganeti $(BUILT_SOURCES)
519
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
520
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
521

    
522
# a dist hook rule for catching revision control directories
523
distcheck-hook:
524
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
525
		echo "Found revision control files in final archive." 1>&2; \
526
		exit 1; \
527
	fi
528
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
529
		echo "Found Python byte code in final archive." 1>&2; \
530
		exit 1; \
531
	fi
532
	if find $(top_distdir) -name '*~' | grep .; then \
533
		echo "Found backup files in final archive." 1>&2; \
534
		exit 1; \
535
	fi
536

    
537
install-exec-local:
538
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
539
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
540
	  "$(DESTDIR)${localstatedir}/run/ganeti"
541

    
542
stamp-directories: Makefile
543
	@mkdir_p@ $(DIRS)
544
	touch $@
545

    
546
.PHONY: apidoc
547
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
548
	test -e doc/api || mkdir doc/api
549
	$(RUN_IN_TEMPDIR) epydoc -v \
550
		--conf $(CURDIR)/epydoc.conf \
551
		--output $(CURDIR)/doc/api
552

    
553
.PHONY: TAGS
554
TAGS: $(BUILT_SOURCES)
555
	rm -f TAGS
556
	find . -path './lib/*.py' -o -path 'scripts/gnt-*' -o \
557
	  -path 'daemons/ganeti-*' -o -path 'tools/*' | \
558
	  etags -
559

    
560
.PHONY: coverage
561
coverage: $(BUILT_SOURCES) $(python_tests)
562
	set -e; \
563
	mkdir -p doc/coverage; \
564
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
565
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
566
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
567
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
568
	$(python_tests)
569

    
570
# vim: set noet :