Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ a3a5f850

History | View | Annotate | Download (14.4 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/confd \
40
	lib/http \
41
	lib/hypervisor \
42
	lib/rapi \
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
	$(addsuffix /*.py[co],$(DIRS)) \
61
	autotools/replace_vars.sed \
62
	daemons/daemon-util \
63
	daemons/ganeti-cleaner \
64
	devel/upload \
65
	doc/examples/bash_completion \
66
	doc/examples/ganeti.initd \
67
	doc/examples/ganeti.cron \
68
	doc/examples/gnt-config-backup \
69
	doc/examples/hooks/ipsec \
70
	$(man_MANS) \
71
	$(manhtml) \
72
	stamp-directories \
73
	stamp-srclinks \
74
	$(nodist_pkgpython_PYTHON)
75

    
76
BUILT_SOURCES = \
77
	ganeti \
78
	stamp-srclinks \
79
	stamp-directories \
80
	lib/_autoconf.py
81

    
82
nodist_pkgpython_PYTHON = \
83
	lib/_autoconf.py
84

    
85
noinst_PYTHON = \
86
	lib/build/__init__.py
87

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

    
117
hypervisor_PYTHON = \
118
	lib/hypervisor/__init__.py \
119
	lib/hypervisor/hv_base.py \
120
	lib/hypervisor/hv_chroot.py \
121
	lib/hypervisor/hv_fake.py \
122
	lib/hypervisor/hv_kvm.py \
123
	lib/hypervisor/hv_xen.py
124

    
125
rapi_PYTHON = \
126
	lib/rapi/__init__.py \
127
	lib/rapi/baserlib.py \
128
	lib/rapi/client.py \
129
	lib/rapi/client_utils.py \
130
	lib/rapi/connector.py \
131
	lib/rapi/rlib2.py
132

    
133
http_PYTHON = \
134
	lib/http/__init__.py \
135
	lib/http/auth.py \
136
	lib/http/client.py \
137
	lib/http/server.py
138

    
139
confd_PYTHON = \
140
	lib/confd/__init__.py \
141
	lib/confd/client.py \
142
	lib/confd/querylib.py \
143
	lib/confd/server.py
144

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

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

    
173
doc/html: doc/html/.stamp
174

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

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

    
191
docdot = \
192
	doc/arch-2.0.dot \
193
	doc/design-2.1-lock-acquire.dot \
194
	doc/design-2.1-lock-release.dot
195

    
196
docpng = $(patsubst %.dot,%.png,$(docdot))
197

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

    
210
gnt_scripts = \
211
	scripts/gnt-backup \
212
	scripts/gnt-cluster \
213
	scripts/gnt-debug \
214
	scripts/gnt-instance \
215
	scripts/gnt-job \
216
	scripts/gnt-node \
217
	scripts/gnt-os
218

    
219
dist_sbin_SCRIPTS = \
220
	daemons/ganeti-noded \
221
	daemons/ganeti-watcher \
222
	daemons/ganeti-masterd \
223
	daemons/ganeti-confd \
224
	daemons/ganeti-rapi \
225
	$(gnt_scripts)
226

    
227
nodist_sbin_SCRIPTS = \
228
	daemons/ganeti-cleaner
229

    
230
dist_tools_SCRIPTS = \
231
	tools/burnin \
232
	tools/cfgshell \
233
	tools/cfgupgrade \
234
	tools/cfgupgrade12 \
235
	tools/cluster-merge \
236
	tools/lvmstrap \
237
	tools/sanitize-config
238

    
239
pkglib_SCRIPTS = \
240
	daemons/daemon-util
241

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

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

    
306
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
307
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
308
maninput = \
309
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
310
	$(patsubst %.html,%.html.in,$(manhtml))
311

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

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

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

    
354
nodist_TESTS =
355

    
356
TESTS = $(dist_TESTS) $(nodist_TESTS)
357

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

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

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

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

    
382
check_python_code = \
383
	$(BUILD_BASH_COMPLETION) \
384
	$(all_python_code)
385

    
386
lint_python_code = \
387
	ganeti \
388
	$(dist_sbin_SCRIPTS) \
389
	$(dist_tools_SCRIPTS) \
390
	$(BUILD_BASH_COMPLETION)
391

    
392
test/daemon-util_unittest.bash: daemons/daemon-util
393

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
571
commit-check: distcheck lint apidoc
572

    
573
# vim: set noet :