Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 17b97ab3

History | View | Annotate | Download (23.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
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
14
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
15
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
16
CHECK_MAN = $(top_srcdir)/autotools/check-man
17
CHECK_VERSION = $(top_srcdir)/autotools/check-version
18
REPLACE_VARS_SED = autotools/replace_vars.sed
19

    
20
clientdir = $(pkgpythondir)/client
21
hypervisordir = $(pkgpythondir)/hypervisor
22
httpdir = $(pkgpythondir)/http
23
masterddir = $(pkgpythondir)/masterd
24
confddir = $(pkgpythondir)/confd
25
rapidir = $(pkgpythondir)/rapi
26
serverdir = $(pkgpythondir)/server
27
watcherdir = $(pkgpythondir)/watcher
28
impexpddir = $(pkgpythondir)/impexpd
29
utilsdir = $(pkgpythondir)/utils
30
toolsdir = $(pkglibdir)/tools
31
docdir = $(datadir)/doc/$(PACKAGE)
32

    
33
# Delete output file if an error occurred while building it
34
.DELETE_ON_ERROR:
35

    
36
DIRS = \
37
	autotools \
38
	daemons \
39
	devel \
40
	doc \
41
	doc/examples \
42
	doc/examples/hooks \
43
	doc/examples/gnt-debug \
44
	lib \
45
	lib/client \
46
	lib/build \
47
	lib/confd \
48
	lib/http \
49
	lib/hypervisor \
50
	lib/impexpd \
51
	lib/masterd \
52
	lib/rapi \
53
	lib/server \
54
	lib/utils \
55
	lib/watcher \
56
	man \
57
	qa \
58
	test \
59
	test/data \
60
	tools
61

    
62
BUILDTIME_DIR_AUTOCREATE = \
63
	scripts \
64
	doc/api \
65
	doc/coverage
66

    
67
BUILDTIME_DIRS = \
68
	$(BUILDTIME_DIR_AUTOCREATE) \
69
	doc/html
70

    
71
DIRCHECK_EXCLUDE = \
72
	$(BUILDTIME_DIRS) \
73
	ganeti-[0-9]*.[0-9]*.[0-9]* \
74
	doc/html/_*
75

    
76
all_dirfiles = $(addsuffix /.dir,$(DIRS) $(BUILDTIME_DIR_AUTOCREATE))
77

    
78
MAINTAINERCLEANFILES = \
79
	$(docpng) \
80
	$(maninput) \
81
	doc/install-quick.rst \
82
	doc/news.rst \
83
	doc/upgrade.rst \
84
	vcs-version
85

    
86
maintainer-clean-local:
87
	rm -rf $(BUILDTIME_DIRS)
88

    
89
CLEANFILES = \
90
	$(addsuffix /*.py[co],$(DIRS)) \
91
	$(all_dirfiles) \
92
	$(PYTHON_BOOTSTRAP) \
93
	autotools/replace_vars.sed \
94
	daemons/daemon-util \
95
	daemons/ensure-dirs \
96
	daemons/ganeti-cleaner \
97
	devel/upload \
98
	doc/examples/bash_completion \
99
	doc/examples/ganeti.initd \
100
	doc/examples/ganeti-kvm-poweroff.initd \
101
	doc/examples/ganeti.cron \
102
	doc/examples/gnt-config-backup \
103
	doc/examples/hooks/ipsec \
104
	$(man_MANS) \
105
	$(manhtml) \
106
	stamp-srclinks \
107
	$(nodist_pkgpython_PYTHON)
108

    
109
# BUILT_SOURCES should only be used as a dependency on phony targets. Otherwise
110
# it'll cause the target to rebuild every time.
111
BUILT_SOURCES = \
112
	ganeti \
113
	stamp-srclinks \
114
	lib/_autoconf.py \
115
	$(all_dirfiles) \
116
	$(PYTHON_BOOTSTRAP)
117

    
118
nodist_pkgpython_PYTHON = \
119
	lib/_autoconf.py
120

    
121
noinst_PYTHON = \
122
	lib/build/__init__.py
123

    
124
pkgpython_PYTHON = \
125
	lib/__init__.py \
126
	lib/asyncnotifier.py \
127
	lib/backend.py \
128
	lib/bdev.py \
129
	lib/bootstrap.py \
130
	lib/cli.py \
131
	lib/cmdlib.py \
132
	lib/compat.py \
133
	lib/config.py \
134
	lib/constants.py \
135
	lib/daemon.py \
136
	lib/errors.py \
137
	lib/ht.py \
138
	lib/jqueue.py \
139
	lib/jstore.py \
140
	lib/locking.py \
141
	lib/luxi.py \
142
	lib/mcpu.py \
143
	lib/netutils.py \
144
	lib/objects.py \
145
	lib/opcodes.py \
146
	lib/qlang.py \
147
	lib/query.py \
148
	lib/rpc.py \
149
	lib/runtime.py \
150
	lib/serializer.py \
151
	lib/ssconf.py \
152
	lib/ssh.py \
153
	lib/storage.py \
154
	lib/uidpool.py \
155
	lib/workerpool.py
156

    
157
client_PYTHON = \
158
	lib/client/__init__.py \
159
	lib/client/gnt_backup.py \
160
	lib/client/gnt_cluster.py \
161
	lib/client/gnt_debug.py \
162
	lib/client/gnt_group.py \
163
	lib/client/gnt_instance.py \
164
	lib/client/gnt_job.py \
165
	lib/client/gnt_node.py \
166
	lib/client/gnt_os.py
167

    
168
hypervisor_PYTHON = \
169
	lib/hypervisor/__init__.py \
170
	lib/hypervisor/hv_base.py \
171
	lib/hypervisor/hv_chroot.py \
172
	lib/hypervisor/hv_fake.py \
173
	lib/hypervisor/hv_kvm.py \
174
	lib/hypervisor/hv_lxc.py \
175
	lib/hypervisor/hv_xen.py
176

    
177
rapi_PYTHON = \
178
	lib/rapi/__init__.py \
179
	lib/rapi/baserlib.py \
180
	lib/rapi/client.py \
181
	lib/rapi/client_utils.py \
182
	lib/rapi/connector.py \
183
	lib/rapi/rlib2.py
184

    
185
http_PYTHON = \
186
	lib/http/__init__.py \
187
	lib/http/auth.py \
188
	lib/http/client.py \
189
	lib/http/server.py
190

    
191
confd_PYTHON = \
192
	lib/confd/__init__.py \
193
	lib/confd/client.py \
194
	lib/confd/querylib.py \
195
	lib/confd/server.py
196

    
197
masterd_PYTHON = \
198
	lib/masterd/__init__.py \
199
	lib/masterd/instance.py
200

    
201
impexpd_PYTHON = \
202
	lib/impexpd/__init__.py
203

    
204
watcher_PYTHON = \
205
	lib/watcher/__init__.py
206

    
207
server_PYTHON = \
208
	lib/server/__init__.py \
209
	lib/server/confd.py \
210
	lib/server/masterd.py \
211
	lib/server/noded.py \
212
	lib/server/rapi.py
213

    
214
utils_PYTHON = \
215
	lib/utils/__init__.py \
216
	lib/utils/algo.py \
217
	lib/utils/filelock.py \
218
	lib/utils/hash.py \
219
	lib/utils/io.py \
220
	lib/utils/log.py \
221
	lib/utils/mlock.py \
222
	lib/utils/nodesetup.py \
223
	lib/utils/retry.py \
224
	lib/utils/text.py \
225
	lib/utils/wrapper.py \
226
	lib/utils/x509.py
227

    
228
docrst = \
229
	doc/admin.rst \
230
	doc/design-2.0.rst \
231
	doc/design-2.1.rst \
232
	doc/design-2.2.rst \
233
	doc/design-2.3.rst \
234
	doc/design-oob.rst \
235
	doc/design-query2.rst \
236
	doc/cluster-merge.rst \
237
	doc/devnotes.rst \
238
	doc/glossary.rst \
239
	doc/hooks.rst \
240
	doc/iallocator.rst \
241
	doc/index.rst \
242
	doc/install-quick.rst \
243
	doc/install.rst \
244
	doc/locking.rst \
245
	doc/move-instance.rst \
246
	doc/news.rst \
247
	doc/rapi.rst \
248
	doc/security.rst \
249
	doc/upgrade.rst \
250
	doc/walkthrough.rst
251

    
252
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
253

    
254
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
255
	$(RUN_IN_TEMPDIR)
256
	@test -n "$(SPHINX)" || \
257
	    { echo 'sphinx-build' not found during configure; exit 1; }
258
	@mkdir_p@ $(dir $@)
259
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
260
	    -d . \
261
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
262
	    -D release="$(PACKAGE_VERSION)" \
263
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
264
	rm -f doc/html/.buildinfo doc/html/objects.inv
265
	touch $@
266

    
267
doc/html: doc/html/index.html
268

    
269
doc/install-quick.rst: INSTALL
270
doc/news.rst: NEWS
271
doc/upgrade.rst: UPGRADE
272

    
273
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
274
	set -e; \
275
	{ echo '.. This file is automatically updated at build time from $<.'; \
276
	  echo '.. Do not edit.'; \
277
	  echo; \
278
	  cat $<; \
279
	} > $@
280

    
281
docdot = \
282
	doc/arch-2.0.dot \
283
	doc/design-2.1-lock-acquire.dot \
284
	doc/design-2.1-lock-release.dot
285

    
286
docpng = $(patsubst %.dot,%.png,$(docdot))
287

    
288
# Things to build but not to install (add it to EXTRA_DIST if it should be
289
# distributed)
290
noinst_DATA = \
291
	devel/upload \
292
	doc/html \
293
	doc/examples/bash_completion \
294
	doc/examples/ganeti.cron \
295
	doc/examples/ganeti.initd \
296
	doc/examples/ganeti-kvm-poweroff.initd \
297
	doc/examples/gnt-config-backup \
298
	doc/examples/hooks/ipsec \
299
	$(manhtml)
300

    
301
gnt_scripts = \
302
	scripts/gnt-backup \
303
	scripts/gnt-cluster \
304
	scripts/gnt-debug \
305
	scripts/gnt-group \
306
	scripts/gnt-instance \
307
	scripts/gnt-job \
308
	scripts/gnt-node \
309
	scripts/gnt-os
310

    
311
PYTHON_BOOTSTRAP = \
312
	daemons/ganeti-confd \
313
	daemons/ganeti-masterd \
314
	daemons/ganeti-noded \
315
	daemons/ganeti-watcher \
316
	daemons/ganeti-rapi \
317
	scripts/gnt-backup \
318
	scripts/gnt-cluster \
319
	scripts/gnt-debug \
320
	scripts/gnt-group \
321
	scripts/gnt-instance \
322
	scripts/gnt-job \
323
	scripts/gnt-node \
324
	scripts/gnt-os
325

    
326
qa_scripts = \
327
	qa/ganeti-qa.py \
328
	qa/qa_cluster.py \
329
	qa/qa_config.py \
330
	qa/qa_daemon.py \
331
	qa/qa_env.py \
332
	qa/qa_error.py \
333
	qa/qa_instance.py \
334
	qa/qa_node.py \
335
	qa/qa_os.py \
336
	qa/qa_rapi.py \
337
	qa/qa_tags.py \
338
	qa/qa_utils.py
339

    
340
dist_sbin_SCRIPTS = \
341
	tools/ganeti-listrunner
342

    
343
nodist_sbin_SCRIPTS = \
344
	$(PYTHON_BOOTSTRAP) \
345
	daemons/ganeti-cleaner
346

    
347
dist_tools_SCRIPTS = \
348
	tools/burnin \
349
	tools/cfgshell \
350
	tools/cfgupgrade \
351
	tools/cfgupgrade12 \
352
	tools/cluster-merge \
353
	tools/lvmstrap \
354
	tools/move-instance \
355
	tools/setup-ssh \
356
	tools/sanitize-config
357

    
358
pkglib_python_scripts = \
359
	daemons/import-export \
360
	tools/check-cert-expired
361

    
362
pkglib_SCRIPTS = \
363
	daemons/daemon-util \
364
	daemons/ensure-dirs \
365
	$(pkglib_python_scripts)
366

    
367
EXTRA_DIST = \
368
	NEWS \
369
	UPGRADE \
370
	pylintrc \
371
	autotools/build-bash-completion \
372
	autotools/check-python-code \
373
	autotools/check-man \
374
	autotools/check-tar \
375
	autotools/check-version \
376
	autotools/gen-coverage \
377
	autotools/testrunner \
378
	$(RUN_IN_TEMPDIR) \
379
	daemons/daemon-util.in \
380
	daemons/ensure-dirs.in \
381
	daemons/ganeti-cleaner.in \
382
	$(pkglib_python_scripts) \
383
	devel/upload.in \
384
	$(docdot) \
385
	$(docpng) \
386
	$(docrst) \
387
	doc/conf.py \
388
	doc/html \
389
	doc/examples/ganeti.initd.in \
390
	doc/examples/ganeti-kvm-poweroff.initd.in \
391
	doc/examples/ganeti.cron.in \
392
	doc/examples/gnt-config-backup.in \
393
	doc/examples/dumb-allocator \
394
	doc/examples/ganeti.default \
395
	doc/examples/ganeti.default-debug \
396
	doc/examples/hooks/ethers \
397
	doc/examples/hooks/ipsec.in \
398
	doc/examples/gnt-debug/README \
399
	doc/examples/gnt-debug/delay0.json \
400
	doc/examples/gnt-debug/delay50.json \
401
	test/testutils.py \
402
	test/mocks.py \
403
	$(dist_TESTS) \
404
	$(TEST_FILES) \
405
	man/footer.rst \
406
	$(manrst) \
407
	$(maninput) \
408
	qa/qa-sample.json \
409
	$(qa_scripts)
410

    
411
man_MANS = \
412
	man/ganeti.7 \
413
	man/ganeti-cleaner.8 \
414
	man/ganeti-confd.8 \
415
	man/ganeti-listrunner.8 \
416
	man/ganeti-masterd.8 \
417
	man/ganeti-noded.8 \
418
	man/ganeti-os-interface.7 \
419
	man/ganeti-rapi.8 \
420
	man/ganeti-watcher.8 \
421
	man/gnt-backup.8 \
422
	man/gnt-cluster.8 \
423
	man/gnt-debug.8 \
424
	man/gnt-group.8 \
425
	man/gnt-instance.8 \
426
	man/gnt-job.8 \
427
	man/gnt-node.8 \
428
	man/gnt-os.8
429

    
430
manrst = $(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS)))
431
manhtml = $(patsubst %.rst,%.html,$(manrst))
432
maninput = \
433
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
434
	$(patsubst %.html,%.html.in,$(manhtml)) \
435
	man/footer.man man/footer.html
436

    
437
TEST_FILES = \
438
	test/data/bdev-drbd-8.0.txt \
439
	test/data/bdev-drbd-8.3.txt \
440
	test/data/bdev-drbd-disk.txt \
441
	test/data/bdev-drbd-net-ip4.txt \
442
	test/data/bdev-drbd-net-ip6.txt \
443
	test/data/cert1.pem \
444
	test/data/proc_drbd8.txt \
445
	test/data/proc_drbd80-emptyline.txt \
446
	test/data/proc_drbd83.txt \
447
	test/data/sys_drbd_usermode_helper.txt \
448
	test/import-export_unittest-helper
449

    
450
python_tests = \
451
	test/ganeti.asyncnotifier_unittest.py \
452
	test/ganeti.backend_unittest.py \
453
	test/ganeti.bdev_unittest.py \
454
	test/ganeti.cli_unittest.py \
455
	test/ganeti.client.gnt_instance_unittest.py \
456
	test/ganeti.daemon_unittest.py \
457
	test/ganeti.cmdlib_unittest.py \
458
	test/ganeti.compat_unittest.py \
459
	test/ganeti.confd.client_unittest.py \
460
	test/ganeti.config_unittest.py \
461
	test/ganeti.constants_unittest.py \
462
	test/ganeti.errors_unittest.py \
463
	test/ganeti.hooks_unittest.py \
464
	test/ganeti.ht_unittest.py \
465
	test/ganeti.http_unittest.py \
466
	test/ganeti.hypervisor_unittest.py \
467
	test/ganeti.hypervisor.hv_chroot_unittest.py \
468
	test/ganeti.hypervisor.hv_fake_unittest.py \
469
	test/ganeti.hypervisor.hv_kvm_unittest.py \
470
	test/ganeti.hypervisor.hv_lxc_unittest.py \
471
	test/ganeti.hypervisor.hv_xen_unittest.py \
472
	test/ganeti.impexpd_unittest.py \
473
	test/ganeti.jqueue_unittest.py \
474
	test/ganeti.locking_unittest.py \
475
	test/ganeti.luxi_unittest.py \
476
	test/ganeti.masterd.instance_unittest.py \
477
	test/ganeti.mcpu_unittest.py \
478
	test/ganeti.netutils_unittest.py \
479
	test/ganeti.objects_unittest.py \
480
	test/ganeti.opcodes_unittest.py \
481
	test/ganeti.qlang_unittest.py \
482
	test/ganeti.query_unittest.py \
483
	test/ganeti.rapi.baserlib_unittest.py \
484
	test/ganeti.rapi.client_unittest.py \
485
	test/ganeti.rapi.resources_unittest.py \
486
	test/ganeti.rapi.rlib2_unittest.py \
487
	test/ganeti.rpc_unittest.py \
488
	test/ganeti.runtime_unittest.py \
489
	test/ganeti.serializer_unittest.py \
490
	test/ganeti.ssh_unittest.py \
491
	test/ganeti.uidpool_unittest.py \
492
	test/ganeti.utils.algo_unittest.py \
493
	test/ganeti.utils.filelock_unittest.py \
494
	test/ganeti.utils.hash_unittest.py \
495
	test/ganeti.utils.io_unittest.py \
496
	test/ganeti.utils.mlock_unittest.py \
497
	test/ganeti.utils.nodesetup_unittest.py \
498
	test/ganeti.utils.retry_unittest.py \
499
	test/ganeti.utils.text_unittest.py \
500
	test/ganeti.utils.wrapper_unittest.py \
501
	test/ganeti.utils.x509_unittest.py \
502
	test/ganeti.utils_unittest.py \
503
	test/ganeti.workerpool_unittest.py \
504
	test/cfgupgrade_unittest.py \
505
	test/docs_unittest.py \
506
	test/tempfile_fork_unittest.py
507

    
508
dist_TESTS = \
509
	test/check-cert-expired_unittest.bash \
510
	test/daemon-util_unittest.bash \
511
	test/ganeti-cleaner_unittest.bash \
512
	test/import-export_unittest.bash \
513
	$(python_tests)
514

    
515
nodist_TESTS =
516

    
517
TESTS = $(dist_TESTS) $(nodist_TESTS)
518

    
519
# Environment for all tests
520
PLAIN_TESTS_ENVIRONMENT = \
521
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
522

    
523
# Environment for tests run by automake
524
TESTS_ENVIRONMENT = \
525
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
526

    
527
all_python_code = \
528
	$(dist_sbin_SCRIPTS) \
529
	$(dist_tools_SCRIPTS) \
530
	$(pkglib_python_scripts) \
531
	$(python_tests) \
532
	$(pkgpython_PYTHON) \
533
	$(client_PYTHON) \
534
	$(hypervisor_PYTHON) \
535
	$(rapi_PYTHON) \
536
	$(server_PYTHON) \
537
	$(http_PYTHON) \
538
	$(confd_PYTHON) \
539
	$(masterd_PYTHON) \
540
	$(impexpd_PYTHON) \
541
	$(utils_PYTHON) \
542
	$(watcher_PYTHON) \
543
	$(noinst_PYTHON) \
544
	$(qa_scripts)
545

    
546
srclink_files = \
547
	man/footer.rst \
548
	test/check-cert-expired_unittest.bash \
549
	test/daemon-util_unittest.bash \
550
	test/ganeti-cleaner_unittest.bash \
551
	test/import-export_unittest.bash \
552
	$(all_python_code)
553

    
554
check_python_code = \
555
	$(BUILD_BASH_COMPLETION) \
556
	$(all_python_code)
557

    
558
lint_python_code = \
559
	ganeti \
560
	ganeti/http/server.py \
561
	$(dist_sbin_SCRIPTS) \
562
	$(dist_tools_SCRIPTS) \
563
	$(pkglib_python_scripts) \
564
	$(BUILD_BASH_COMPLETION) \
565
	$(PYTHON_BOOTSTRAP)
566

    
567
test/daemon-util_unittest.bash: daemons/daemon-util
568

    
569
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
570

    
571
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
572
	sed -f $(REPLACE_VARS_SED) < $< > $@
573
	chmod u+x $@
574

    
575
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
576
	sed -f $(REPLACE_VARS_SED) < $< > $@
577
	chmod +x $@
578

    
579
doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
580
	sed -f $(REPLACE_VARS_SED) < $< > $@
581

    
582
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
583
	sed -f $(REPLACE_VARS_SED) < $< > $@
584

    
585
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
586
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
587
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
588

    
589
doc/%.png: doc/%.dot
590
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
591
	$(DOT) -Tpng -o $@ $<
592

    
593
man/footer.man: man/footer.rst
594
	@test -n "$(PANDOC)" || \
595
	  { echo 'pandoc' not found during configure; exit 1; }
596
	$(PANDOC) -f rst -t man -o $@ $<
597

    
598
man/footer.html: man/footer.rst
599
	@test -n "$(PANDOC)" || \
600
	  { echo 'pandoc' not found during configure; exit 1; }
601
	$(PANDOC) -f rst -t html -o $@ $<
602

    
603
man/%.7.in man/%.8.in: man/%.rst man/footer.man
604
	@test -n "$(PANDOC)" || \
605
	  { echo 'pandoc' not found during configure; exit 1; }
606
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
607
	  sed -e 's/\\@/@/g' > $@
608
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
609

    
610
man/%.html.in: man/%.rst man/footer.html
611
	@test -n "$(PANDOC)" || \
612
	  { echo 'pandoc' not found during configure; exit 1; }
613
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
614
	  sed -e 's/\\@/@/g' > $@
615

    
616

    
617
man/%.7: man/%.7.in $(REPLACE_VARS_SED)
618
	sed -f $(REPLACE_VARS_SED) < $< > $@
619

    
620
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
621
	sed -f $(REPLACE_VARS_SED) < $< > $@
622

    
623
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
624
	sed -f $(REPLACE_VARS_SED) < $< > $@
625

    
626
vcs-version:
627
	if test -d .git; then \
628
	  git describe > $@; \
629
	elif test ! -f $@ ; then \
630
	  echo "Cannot auto-generate $@ file"; exit 1; \
631
	fi
632

    
633
.PHONY: regen-vcs-version
634
regen-vcs-version:
635
	set -e; \
636
	cd $(srcdir); \
637
	if test -d .git; then \
638
	  rm -f vcs-version; \
639
	  $(MAKE) vcs-version; \
640
	fi
641

    
642
lib/_autoconf.py: Makefile vcs-version | lib/.dir
643
	set -e; \
644
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
645
	{ echo '# This file is automatically generated, do not edit!'; \
646
	  echo '#'; \
647
	  echo ''; \
648
	  echo '"""Build-time configuration for Ganeti.'; \
649
	  echo '';\
650
	  echo 'This file is autogenerated by the build process.'; \
651
	  echo 'For any changes you need to re-run ./configure (and'; \
652
	  echo 'not edit by hand).'; \
653
	  echo ''; \
654
	  echo '"""'; \
655
	  echo ''; \
656
	  echo '# pylint: disable-msg=C0301,C0324'; \
657
	  echo '# because this is autogenerated, we do not want'; \
658
	  echo '# style warnings' ; \
659
	  echo ''; \
660
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
661
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
662
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
663
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
664
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
665
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
666
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
667
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
668
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
669
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
670
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
671
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
672
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
673
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
674
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
675
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
676
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
677
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
678
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
679
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
680
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
681
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
682
	  echo "TOOLSDIR = '$(toolsdir)'"; \
683
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
684
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
685
	  echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
686
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
687
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
688
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
689
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
690
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
691
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
692
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
693
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
694
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
695
	  echo "NODED_USER = '$(NODED_USER)'"; \
696
	  echo "VCS_VERSION = '$$VCSVER'"; \
697
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
698
	} > $@
699

    
700
$(REPLACE_VARS_SED): Makefile
701
	set -e; \
702
	{ echo 's#@PREFIX@#$(prefix)#g'; \
703
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
704
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
705
	  echo 's#@BINDIR@#$(bindir)#g'; \
706
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
707
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
708
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
709
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
710
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
711
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
712
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
713
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
714
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
715
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
716
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
717
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
718
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
719
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
720
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
721
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
722
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
723
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
724
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
725
	} > $@
726

    
727
# Using deferred evaluation
728
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
729
daemons/ganeti-watcher: MODULE = ganeti.watcher
730
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
731

    
732
$(PYTHON_BOOTSTRAP): Makefile | $(all_dirfiles)
733
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
734
	set -e; \
735
	{ echo '#!/usr/bin/python'; \
736
	  echo '# This file is automatically generated, do not edit!'; \
737
	  echo "# Edit $(MODULE) instead."; \
738
	  echo; \
739
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
740
	  echo; \
741
	  echo '# pylint: disable-msg=C0103'; \
742
	  echo '# C0103: Invalid name'; \
743
	  echo; \
744
	  echo 'import sys'; \
745
	  echo 'import $(MODULE) as main'; \
746
	  echo; \
747
	  echo '# Temporarily alias commands until bash completion'; \
748
	  echo '# generator is changed'; \
749
	  echo 'if hasattr(main, "commands"):'; \
750
		echo '  commands = main.commands # pylint: disable-msg=E1101'; \
751
	  echo; \
752
	  echo 'if __name__ == "__main__":'; \
753
	  echo '  sys.exit(main.Main())'; \
754
	} > $@
755
	chmod u+x $@
756

    
757
# We need to create symlinks because "make distcheck" will not install Python
758
# files when building.
759
stamp-srclinks: Makefile | $(all_dirfiles)
760
	set -e; \
761
	for i in $(srclink_files); do \
762
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
763
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
764
		fi; \
765
	done
766
	touch $@
767

    
768
.PHONY: ganeti
769
ganeti:
770
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
771

    
772
.PHONY: check-dirs
773
check-dirs: $(BUILT_SOURCES)
774
	@set -e; \
775
	find . -type d \( \( -name . \) -o \( \
776
		-name .git -o \
777
		-name autom4te.cache \
778
		\) -prune -o -print \) | { \
779
		error=; \
780
		while read dir; do \
781
			case "$$dir" in \
782
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
783
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
784
			esac; \
785
		done; \
786
		for dir in $(DIRS); do \
787
			if ! test -d "$$dir"; then \
788
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
789
				error=1; \
790
			fi \
791
		done; \
792
		if test -n "$$error"; then exit 1; else exit 0; fi; \
793
	}
794

    
795
check-local: check-dirs
796
	$(CHECK_PYTHON_CODE) $(check_python_code)
797
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
798

    
799
.PHONY: lint
800
lint: $(BUILT_SOURCES)
801
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
802
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
803

    
804
# a dist hook rule for updating the vcs-version file; this is
805
# hardcoded due to where it needs to build the file...
806
dist-hook:
807
	$(MAKE) regen-vcs-version && \
808
	rm -f $(top_distdir)/vcs-version && \
809
	cp -p $(srcdir)/vcs-version $(top_distdir)
810

    
811
# a distcheck hook rule for catching revision control directories
812
distcheck-hook:
813
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
814
		echo "Found revision control files in final archive." 1>&2; \
815
		exit 1; \
816
	fi
817
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
818
		echo "Found Python byte code in final archive." 1>&2; \
819
		exit 1; \
820
	fi
821
	if find $(top_distdir) -name '*~' | grep .; then \
822
		echo "Found backup files in final archive." 1>&2; \
823
		exit 1; \
824
	fi
825
# Empty files or directories should not be distributed. They can cause
826
# unnecessary warnings for packagers. Directories used by automake during
827
# distcheck must be excluded.
828
	if find $(top_distdir) -empty -and -not \( \
829
			-path $(top_distdir)/_build -or \
830
			-path $(top_distdir)/_inst \) | grep .; then \
831
		echo "Found empty files or directories in final archive." 1>&2; \
832
		exit 1; \
833
	fi
834
	if test -n "$(BUILD_RELEASE)" && \
835
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
836
		echo "Found unreleased version in NEWS." >&2; \
837
		exit 1; \
838
	fi
839

    
840
# When building a release, stricter checks should be used
841
distcheck-release dist-release: export BUILD_RELEASE = 1
842
distcheck-release: distcheck
843

    
844
dist-release: dist
845
	set -e; \
846
	for i in $(DIST_ARCHIVES); do \
847
		echo -n "Checking $$i ... "; \
848
		autotools/check-tar < $$i; \
849
		echo OK; \
850
	done
851

    
852
install-exec-local:
853
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
854
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
855
	  "$(DESTDIR)${localstatedir}/run/ganeti"
856

    
857
# To avoid conflicts between directory names and other targets, a file inside
858
# the directory is used to ensure its existence.
859
%.dir:
860
	@mkdir_p@ $* && touch $@
861

    
862
.PHONY: apidoc
863
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
864
	$(RUN_IN_TEMPDIR) epydoc -v \
865
		--conf $(CURDIR)/epydoc.conf \
866
		--output $(CURDIR)/doc/api
867

    
868
.PHONY: TAGS
869
TAGS: $(BUILT_SOURCES)
870
	rm -f TAGS
871
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
872
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
873
	  -path './qa/*.py' | \
874
	  etags -l python -
875

    
876
.PHONY: coverage
877
coverage: $(BUILT_SOURCES) $(python_tests)
878
	set -e; \
879
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
880
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
881
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
882
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
883
	$(python_tests)
884

    
885
commit-check: distcheck lint apidoc
886

    
887
-include ./Makefile.local
888

    
889
# vim: set noet :