Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ f774bd03

History | View | Annotate | Download (23.9 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
	epydoc.conf \
94
	autotools/replace_vars.sed \
95
	daemons/daemon-util \
96
	daemons/ensure-dirs \
97
	daemons/ganeti-cleaner \
98
	devel/upload \
99
	doc/examples/bash_completion \
100
	doc/examples/ganeti.initd \
101
	doc/examples/ganeti-kvm-poweroff.initd \
102
	doc/examples/ganeti.cron \
103
	doc/examples/gnt-config-backup \
104
	doc/examples/hooks/ipsec \
105
	$(man_MANS) \
106
	$(manhtml) \
107
	tools/kvm-ifup \
108
	stamp-srclinks \
109
	$(nodist_pkgpython_PYTHON)
110

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

    
120
nodist_pkgpython_PYTHON = \
121
	lib/_autoconf.py
122

    
123
noinst_PYTHON = \
124
	lib/build/__init__.py
125

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

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

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

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

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

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

    
199
masterd_PYTHON = \
200
	lib/masterd/__init__.py \
201
	lib/masterd/instance.py
202

    
203
impexpd_PYTHON = \
204
	lib/impexpd/__init__.py
205

    
206
watcher_PYTHON = \
207
	lib/watcher/__init__.py
208

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

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

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

    
256
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
257

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

    
271
doc/html: doc/html/index.html
272

    
273
doc/install-quick.rst: INSTALL
274
doc/news.rst: NEWS
275
doc/upgrade.rst: UPGRADE
276

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

    
285
docdot = \
286
	doc/arch-2.0.dot \
287
	doc/design-2.1-lock-acquire.dot \
288
	doc/design-2.1-lock-release.dot
289

    
290
docpng = $(patsubst %.dot,%.png,$(docdot))
291

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

    
305
gnt_scripts = \
306
	scripts/gnt-backup \
307
	scripts/gnt-cluster \
308
	scripts/gnt-debug \
309
	scripts/gnt-group \
310
	scripts/gnt-instance \
311
	scripts/gnt-job \
312
	scripts/gnt-node \
313
	scripts/gnt-os
314

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

    
330
qa_scripts = \
331
	qa/ganeti-qa.py \
332
	qa/qa_cluster.py \
333
	qa/qa_config.py \
334
	qa/qa_daemon.py \
335
	qa/qa_env.py \
336
	qa/qa_error.py \
337
	qa/qa_instance.py \
338
	qa/qa_node.py \
339
	qa/qa_os.py \
340
	qa/qa_rapi.py \
341
	qa/qa_tags.py \
342
	qa/qa_utils.py
343

    
344
dist_sbin_SCRIPTS = \
345
	tools/ganeti-listrunner
346

    
347
nodist_sbin_SCRIPTS = \
348
	$(PYTHON_BOOTSTRAP) \
349
	daemons/ganeti-cleaner
350

    
351
dist_tools_SCRIPTS = \
352
	tools/burnin \
353
	tools/cfgshell \
354
	tools/cfgupgrade \
355
	tools/cfgupgrade12 \
356
	tools/cluster-merge \
357
	tools/lvmstrap \
358
	tools/move-instance \
359
	tools/setup-ssh \
360
	tools/sanitize-config
361

    
362
pkglib_python_scripts = \
363
	daemons/import-export \
364
	tools/check-cert-expired
365

    
366
pkglib_SCRIPTS = \
367
	daemons/daemon-util \
368
	daemons/ensure-dirs \
369
	tools/kvm-ifup \
370
	$(pkglib_python_scripts)
371

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

    
418
man_MANS = \
419
	man/ganeti.7 \
420
	man/ganeti-cleaner.8 \
421
	man/ganeti-confd.8 \
422
	man/ganeti-listrunner.8 \
423
	man/ganeti-masterd.8 \
424
	man/ganeti-noded.8 \
425
	man/ganeti-os-interface.7 \
426
	man/ganeti-rapi.8 \
427
	man/ganeti-watcher.8 \
428
	man/gnt-backup.8 \
429
	man/gnt-cluster.8 \
430
	man/gnt-debug.8 \
431
	man/gnt-group.8 \
432
	man/gnt-instance.8 \
433
	man/gnt-job.8 \
434
	man/gnt-node.8 \
435
	man/gnt-os.8
436

    
437
manrst = $(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS)))
438
manhtml = $(patsubst %.rst,%.html,$(manrst))
439
maninput = \
440
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
441
	$(patsubst %.html,%.html.in,$(manhtml)) \
442
	man/footer.man man/footer.html
443

    
444
TEST_FILES = \
445
	test/data/bdev-drbd-8.0.txt \
446
	test/data/bdev-drbd-8.3.txt \
447
	test/data/bdev-drbd-disk.txt \
448
	test/data/bdev-drbd-net-ip4.txt \
449
	test/data/bdev-drbd-net-ip6.txt \
450
	test/data/cert1.pem \
451
	test/data/proc_drbd8.txt \
452
	test/data/proc_drbd80-emptyline.txt \
453
	test/data/proc_drbd83.txt \
454
	test/data/sys_drbd_usermode_helper.txt \
455
	test/import-export_unittest-helper
456

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

    
516
dist_TESTS = \
517
	test/check-cert-expired_unittest.bash \
518
	test/daemon-util_unittest.bash \
519
	test/ganeti-cleaner_unittest.bash \
520
	test/import-export_unittest.bash \
521
	$(python_tests)
522

    
523
nodist_TESTS =
524

    
525
TESTS = $(dist_TESTS) $(nodist_TESTS)
526

    
527
# Environment for all tests
528
PLAIN_TESTS_ENVIRONMENT = \
529
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
530

    
531
# Environment for tests run by automake
532
TESTS_ENVIRONMENT = \
533
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
534

    
535
all_python_code = \
536
	$(dist_sbin_SCRIPTS) \
537
	$(dist_tools_SCRIPTS) \
538
	$(pkglib_python_scripts) \
539
	$(python_tests) \
540
	$(pkgpython_PYTHON) \
541
	$(client_PYTHON) \
542
	$(hypervisor_PYTHON) \
543
	$(rapi_PYTHON) \
544
	$(server_PYTHON) \
545
	$(http_PYTHON) \
546
	$(confd_PYTHON) \
547
	$(masterd_PYTHON) \
548
	$(impexpd_PYTHON) \
549
	$(utils_PYTHON) \
550
	$(watcher_PYTHON) \
551
	$(noinst_PYTHON) \
552
	$(qa_scripts)
553

    
554
srclink_files = \
555
	man/footer.rst \
556
	test/check-cert-expired_unittest.bash \
557
	test/daemon-util_unittest.bash \
558
	test/ganeti-cleaner_unittest.bash \
559
	test/import-export_unittest.bash \
560
	$(all_python_code)
561

    
562
check_python_code = \
563
	$(BUILD_BASH_COMPLETION) \
564
	$(all_python_code)
565

    
566
lint_python_code = \
567
	ganeti \
568
	ganeti/http/server.py \
569
	$(dist_sbin_SCRIPTS) \
570
	$(dist_tools_SCRIPTS) \
571
	$(pkglib_python_scripts) \
572
	$(BUILD_BASH_COMPLETION) \
573
	$(PYTHON_BOOTSTRAP)
574

    
575
test/daemon-util_unittest.bash: daemons/daemon-util
576

    
577
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
578

    
579
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
580
	sed -f $(REPLACE_VARS_SED) < $< > $@
581
	chmod +x $@
582

    
583
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
584
	sed -f $(REPLACE_VARS_SED) < $< > $@
585
	chmod u+x $@
586

    
587
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
588
	sed -f $(REPLACE_VARS_SED) < $< > $@
589
	chmod +x $@
590

    
591
doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
592
	sed -f $(REPLACE_VARS_SED) < $< > $@
593

    
594
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
595
	sed -f $(REPLACE_VARS_SED) < $< > $@
596

    
597
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
598
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
599
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
600

    
601
doc/%.png: doc/%.dot
602
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
603
	$(DOT) -Tpng -o $@ $<
604

    
605
man/footer.man: man/footer.rst
606
	@test -n "$(PANDOC)" || \
607
	  { echo 'pandoc' not found during configure; exit 1; }
608
	$(PANDOC) -f rst -t man -o $@ $<
609

    
610
man/footer.html: man/footer.rst
611
	@test -n "$(PANDOC)" || \
612
	  { echo 'pandoc' not found during configure; exit 1; }
613
	$(PANDOC) -f rst -t html -o $@ $<
614

    
615
man/%.7.in man/%.8.in: man/%.rst man/footer.man
616
	@test -n "$(PANDOC)" || \
617
	  { echo 'pandoc' not found during configure; exit 1; }
618
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
619
	  sed -e 's/\\@/@/g' > $@
620
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
621

    
622
man/%.html.in: man/%.rst man/footer.html
623
	@test -n "$(PANDOC)" || \
624
	  { echo 'pandoc' not found during configure; exit 1; }
625
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
626
	  sed -e 's/\\@/@/g' > $@
627

    
628
man/%.7: man/%.7.in $(REPLACE_VARS_SED)
629
	sed -f $(REPLACE_VARS_SED) < $< > $@
630

    
631
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
632
	sed -f $(REPLACE_VARS_SED) < $< > $@
633

    
634
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
635
	sed -f $(REPLACE_VARS_SED) < $< > $@
636

    
637
epydoc.conf: epydoc.conf.in
638
	sed -e 's#@MODULES@#$(lint_python_code)#g' < $< > $@
639

    
640
vcs-version:
641
	if test -d .git; then \
642
	  git describe > $@; \
643
	elif test ! -f $@ ; then \
644
	  echo "Cannot auto-generate $@ file"; exit 1; \
645
	fi
646

    
647
.PHONY: regen-vcs-version
648
regen-vcs-version:
649
	set -e; \
650
	cd $(srcdir); \
651
	if test -d .git; then \
652
	  rm -f vcs-version; \
653
	  $(MAKE) vcs-version; \
654
	fi
655

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

    
714
$(REPLACE_VARS_SED): Makefile
715
	set -e; \
716
	{ echo 's#@PREFIX@#$(prefix)#g'; \
717
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
718
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
719
	  echo 's#@BINDIR@#$(bindir)#g'; \
720
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
721
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
722
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
723
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
724
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
725
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
726
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
727
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
728
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
729
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
730
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
731
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
732
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
733
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
734
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
735
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
736
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
737
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
738
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
739
	} > $@
740

    
741
# Using deferred evaluation
742
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
743
daemons/ganeti-watcher: MODULE = ganeti.watcher
744
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
745

    
746
$(PYTHON_BOOTSTRAP): Makefile | $(all_dirfiles)
747
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
748
	set -e; \
749
	{ echo '#!/usr/bin/python'; \
750
	  echo '# This file is automatically generated, do not edit!'; \
751
	  echo "# Edit $(MODULE) instead."; \
752
	  echo; \
753
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
754
	  echo; \
755
	  echo '# pylint: disable-msg=C0103'; \
756
	  echo '# C0103: Invalid name'; \
757
	  echo; \
758
	  echo 'import sys'; \
759
	  echo 'import $(MODULE) as main'; \
760
	  echo; \
761
	  echo '# Temporarily alias commands until bash completion'; \
762
	  echo '# generator is changed'; \
763
	  echo 'if hasattr(main, "commands"):'; \
764
		echo '  commands = main.commands # pylint: disable-msg=E1101'; \
765
	  echo; \
766
	  echo 'if __name__ == "__main__":'; \
767
	  echo '  sys.exit(main.Main())'; \
768
	} > $@
769
	chmod u+x $@
770

    
771
# We need to create symlinks because "make distcheck" will not install Python
772
# files when building.
773
stamp-srclinks: Makefile | $(all_dirfiles)
774
	set -e; \
775
	for i in $(srclink_files); do \
776
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
777
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
778
		fi; \
779
	done
780
	touch $@
781

    
782
.PHONY: ganeti
783
ganeti:
784
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
785

    
786
.PHONY: check-dirs
787
check-dirs: $(BUILT_SOURCES)
788
	@set -e; \
789
	find . -type d \( \( -name . \) -o \( \
790
		-name .git -o \
791
		-name autom4te.cache \
792
		\) -prune -o -print \) | { \
793
		error=; \
794
		while read dir; do \
795
			case "$$dir" in \
796
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
797
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
798
			esac; \
799
		done; \
800
		for dir in $(DIRS); do \
801
			if ! test -d "$$dir"; then \
802
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
803
				error=1; \
804
			fi \
805
		done; \
806
		if test -n "$$error"; then exit 1; else exit 0; fi; \
807
	}
808

    
809
check-local: check-dirs
810
	$(CHECK_PYTHON_CODE) $(check_python_code)
811
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
812

    
813
.PHONY: lint
814
lint: $(BUILT_SOURCES)
815
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
816
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
817
	cd $(top_srcdir)/qa && \
818
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
819
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
820

    
821
# a dist hook rule for updating the vcs-version file; this is
822
# hardcoded due to where it needs to build the file...
823
dist-hook:
824
	$(MAKE) regen-vcs-version && \
825
	rm -f $(top_distdir)/vcs-version && \
826
	cp -p $(srcdir)/vcs-version $(top_distdir)
827

    
828
# a distcheck hook rule for catching revision control directories
829
distcheck-hook:
830
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
831
		echo "Found revision control files in final archive." 1>&2; \
832
		exit 1; \
833
	fi
834
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
835
		echo "Found Python byte code in final archive." 1>&2; \
836
		exit 1; \
837
	fi
838
	if find $(top_distdir) -name '*~' | grep .; then \
839
		echo "Found backup files in final archive." 1>&2; \
840
		exit 1; \
841
	fi
842
# Empty files or directories should not be distributed. They can cause
843
# unnecessary warnings for packagers. Directories used by automake during
844
# distcheck must be excluded.
845
	if find $(top_distdir) -empty -and -not \( \
846
			-path $(top_distdir)/_build -or \
847
			-path $(top_distdir)/_inst \) | grep .; then \
848
		echo "Found empty files or directories in final archive." 1>&2; \
849
		exit 1; \
850
	fi
851
	if test -n "$(BUILD_RELEASE)" && \
852
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
853
		echo "Found unreleased version in NEWS." >&2; \
854
		exit 1; \
855
	fi
856

    
857
# When building a release, stricter checks should be used
858
distcheck-release dist-release: export BUILD_RELEASE = 1
859
distcheck-release: distcheck
860

    
861
dist-release: dist
862
	set -e; \
863
	for i in $(DIST_ARCHIVES); do \
864
		echo -n "Checking $$i ... "; \
865
		autotools/check-tar < $$i; \
866
		echo OK; \
867
	done
868

    
869
install-exec-local:
870
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
871
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
872
	  "$(DESTDIR)${localstatedir}/run/ganeti"
873

    
874
# To avoid conflicts between directory names and other targets, a file inside
875
# the directory is used to ensure its existence.
876
%.dir:
877
	@mkdir_p@ $* && touch $@
878

    
879
.PHONY: apidoc
880
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
881
	$(RUN_IN_TEMPDIR) epydoc -v \
882
		--conf $(CURDIR)/epydoc.conf \
883
		--output $(CURDIR)/doc/api
884

    
885
.PHONY: TAGS
886
TAGS: $(BUILT_SOURCES)
887
	rm -f TAGS
888
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
889
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
890
	  -path './qa/*.py' | \
891
	  etags -l python -
892

    
893
.PHONY: coverage
894
coverage: $(BUILT_SOURCES) $(python_tests)
895
	set -e; \
896
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
897
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
898
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
899
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
900
	$(python_tests)
901

    
902
commit-check: distcheck lint apidoc
903

    
904
-include ./Makefile.local
905

    
906
# vim: set noet :