Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ da7e44ee

History | View | Annotate | Download (22.5 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
toolsdir = $(pkglibdir)/tools
30
docdir = $(datadir)/doc/$(PACKAGE)
31

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

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

    
60
BUILDTIME_DIR_AUTOCREATE = \
61
	scripts \
62
	doc/api \
63
	doc/coverage
64

    
65
BUILDTIME_DIRS = \
66
	$(BUILDTIME_DIR_AUTOCREATE) \
67
	doc/html
68

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

    
74
all_dirfiles = $(addsuffix /.dir,$(DIRS) $(BUILDTIME_DIR_AUTOCREATE))
75

    
76
MAINTAINERCLEANFILES = \
77
	$(docpng) \
78
	$(maninput) \
79
	doc/install-quick.rst \
80
	doc/news.rst \
81
	vcs-version
82

    
83
maintainer-clean-local:
84
	rm -rf $(BUILDTIME_DIRS)
85

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

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

    
115
nodist_pkgpython_PYTHON = \
116
	lib/_autoconf.py
117

    
118
noinst_PYTHON = \
119
	lib/build/__init__.py
120

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

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

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

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

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

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

    
195
masterd_PYTHON = \
196
	lib/masterd/__init__.py \
197
	lib/masterd/instance.py
198

    
199
impexpd_PYTHON = \
200
	lib/impexpd/__init__.py
201

    
202
watcher_PYTHON = \
203
	lib/watcher/__init__.py
204

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

    
212
docrst = \
213
	doc/admin.rst \
214
	doc/design-2.0.rst \
215
	doc/design-2.1.rst \
216
	doc/design-2.2.rst \
217
	doc/design-2.3.rst \
218
	doc/design-oob.rst \
219
	doc/design-query2.rst \
220
	doc/cluster-merge.rst \
221
	doc/devnotes.rst \
222
	doc/glossary.rst \
223
	doc/hooks.rst \
224
	doc/iallocator.rst \
225
	doc/index.rst \
226
	doc/install-quick.rst \
227
	doc/install.rst \
228
	doc/locking.rst \
229
	doc/move-instance.rst \
230
	doc/news.rst \
231
	doc/rapi.rst \
232
	doc/security.rst \
233
	doc/walkthrough.rst
234

    
235
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
236

    
237
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
238
	$(RUN_IN_TEMPDIR)
239
	@test -n "$(SPHINX)" || \
240
	    { echo 'sphinx-build' not found during configure; exit 1; }
241
	@mkdir_p@ $(dir $@)
242
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
243
	    -d . \
244
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
245
	    -D release="$(PACKAGE_VERSION)" \
246
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
247
	rm -f doc/html/.buildinfo doc/html/objects.inv
248
	touch $@
249

    
250
doc/html: doc/html/index.html
251

    
252
doc/news.rst: NEWS
253
	set -e; \
254
	{ echo '.. This file is automatically updated at build time from $<.'; \
255
	  echo '.. Do not edit.'; \
256
	  echo; \
257
	  cat $<; \
258
	} > $@
259

    
260
doc/install-quick.rst: INSTALL
261
	set -e; \
262
	{ echo '.. This file is automatically updated at build time from $<.'; \
263
	  echo '.. Do not edit.'; \
264
	  echo; \
265
	  cat $<; \
266
	} > $@
267

    
268
docdot = \
269
	doc/arch-2.0.dot \
270
	doc/design-2.1-lock-acquire.dot \
271
	doc/design-2.1-lock-release.dot
272

    
273
docpng = $(patsubst %.dot,%.png,$(docdot))
274

    
275
# Things to build but not to install (add it to EXTRA_DIST if it should be
276
# distributed)
277
noinst_DATA = \
278
	devel/upload \
279
	doc/html \
280
	doc/examples/bash_completion \
281
	doc/examples/ganeti.cron \
282
	doc/examples/ganeti.initd \
283
	doc/examples/ganeti-kvm-poweroff.initd \
284
	doc/examples/gnt-config-backup \
285
	doc/examples/hooks/ipsec \
286
	$(manhtml)
287

    
288
gnt_scripts = \
289
	scripts/gnt-backup \
290
	scripts/gnt-cluster \
291
	scripts/gnt-debug \
292
	scripts/gnt-group \
293
	scripts/gnt-instance \
294
	scripts/gnt-job \
295
	scripts/gnt-node \
296
	scripts/gnt-os
297

    
298
PYTHON_BOOTSTRAP = \
299
	daemons/ganeti-confd \
300
	daemons/ganeti-masterd \
301
	daemons/ganeti-noded \
302
	daemons/ganeti-watcher \
303
	daemons/ganeti-rapi \
304
	scripts/gnt-backup \
305
	scripts/gnt-cluster \
306
	scripts/gnt-debug \
307
	scripts/gnt-group \
308
	scripts/gnt-instance \
309
	scripts/gnt-job \
310
	scripts/gnt-node \
311
	scripts/gnt-os
312

    
313
qa_scripts = \
314
	qa/ganeti-qa.py \
315
	qa/qa_cluster.py \
316
	qa/qa_config.py \
317
	qa/qa_daemon.py \
318
	qa/qa_env.py \
319
	qa/qa_error.py \
320
	qa/qa_instance.py \
321
	qa/qa_node.py \
322
	qa/qa_os.py \
323
	qa/qa_rapi.py \
324
	qa/qa_tags.py \
325
	qa/qa_utils.py
326

    
327
dist_sbin_SCRIPTS = \
328
	tools/ganeti-listrunner
329

    
330
nodist_sbin_SCRIPTS = \
331
	$(PYTHON_BOOTSTRAP) \
332
	daemons/ganeti-cleaner
333

    
334
dist_tools_SCRIPTS = \
335
	tools/burnin \
336
	tools/cfgshell \
337
	tools/cfgupgrade \
338
	tools/cfgupgrade12 \
339
	tools/cluster-merge \
340
	tools/lvmstrap \
341
	tools/move-instance \
342
	tools/setup-ssh \
343
	tools/sanitize-config
344

    
345
pkglib_python_scripts = \
346
	daemons/import-export \
347
	tools/check-cert-expired
348

    
349
pkglib_SCRIPTS = \
350
	daemons/daemon-util \
351
	daemons/ensure-dirs \
352
	$(pkglib_python_scripts)
353

    
354
EXTRA_DIST = \
355
	NEWS \
356
	pylintrc \
357
	autotools/build-bash-completion \
358
	autotools/check-python-code \
359
	autotools/check-man \
360
	autotools/check-tar \
361
	autotools/check-version \
362
	autotools/gen-coverage \
363
	autotools/testrunner \
364
	$(RUN_IN_TEMPDIR) \
365
	daemons/daemon-util.in \
366
	daemons/ensure-dirs.in \
367
	daemons/ganeti-cleaner.in \
368
	$(pkglib_python_scripts) \
369
	devel/upload.in \
370
	$(docdot) \
371
	$(docpng) \
372
	$(docrst) \
373
	doc/conf.py \
374
	doc/html \
375
	doc/examples/ganeti.initd.in \
376
	doc/examples/ganeti-kvm-poweroff.initd.in \
377
	doc/examples/ganeti.cron.in \
378
	doc/examples/gnt-config-backup.in \
379
	doc/examples/dumb-allocator \
380
	doc/examples/ganeti.default \
381
	doc/examples/ganeti.default-debug \
382
	doc/examples/hooks/ethers \
383
	doc/examples/hooks/ipsec.in \
384
	doc/examples/gnt-debug/README \
385
	doc/examples/gnt-debug/delay0.json \
386
	doc/examples/gnt-debug/delay50.json \
387
	test/testutils.py \
388
	test/mocks.py \
389
	$(dist_TESTS) \
390
	$(TEST_FILES) \
391
	man/footer.rst \
392
	$(manrst) \
393
	$(maninput) \
394
	qa/qa-sample.json \
395
	$(qa_scripts)
396

    
397
man_MANS = \
398
	man/ganeti.7 \
399
	man/ganeti-cleaner.8 \
400
	man/ganeti-confd.8 \
401
	man/ganeti-listrunner.8 \
402
	man/ganeti-masterd.8 \
403
	man/ganeti-noded.8 \
404
	man/ganeti-os-interface.7 \
405
	man/ganeti-rapi.8 \
406
	man/ganeti-watcher.8 \
407
	man/gnt-backup.8 \
408
	man/gnt-cluster.8 \
409
	man/gnt-debug.8 \
410
	man/gnt-group.8 \
411
	man/gnt-instance.8 \
412
	man/gnt-job.8 \
413
	man/gnt-node.8 \
414
	man/gnt-os.8
415

    
416
manrst = $(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS)))
417
manhtml = $(patsubst %.rst,%.html,$(manrst))
418
maninput = \
419
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
420
	$(patsubst %.html,%.html.in,$(manhtml)) \
421
	man/footer.man man/footer.html
422

    
423
TEST_FILES = \
424
	test/data/bdev-drbd-8.0.txt \
425
	test/data/bdev-drbd-8.3.txt \
426
	test/data/bdev-drbd-disk.txt \
427
	test/data/bdev-drbd-net-ip4.txt \
428
	test/data/bdev-drbd-net-ip6.txt \
429
	test/data/cert1.pem \
430
	test/data/proc_drbd8.txt \
431
	test/data/proc_drbd80-emptyline.txt \
432
	test/data/proc_drbd83.txt \
433
	test/data/sys_drbd_usermode_helper.txt \
434
	test/import-export_unittest-helper
435

    
436
python_tests = \
437
	test/ganeti.asyncnotifier_unittest.py \
438
	test/ganeti.backend_unittest.py \
439
	test/ganeti.bdev_unittest.py \
440
	test/ganeti.cli_unittest.py \
441
	test/ganeti.daemon_unittest.py \
442
	test/ganeti.cmdlib_unittest.py \
443
	test/ganeti.compat_unittest.py \
444
	test/ganeti.confd.client_unittest.py \
445
	test/ganeti.config_unittest.py \
446
	test/ganeti.constants_unittest.py \
447
	test/ganeti.errors_unittest.py \
448
	test/ganeti.hooks_unittest.py \
449
	test/ganeti.http_unittest.py \
450
	test/ganeti.hypervisor_unittest.py \
451
	test/ganeti.hypervisor.hv_kvm_unittest.py \
452
	test/ganeti.impexpd_unittest.py \
453
	test/ganeti.jqueue_unittest.py \
454
	test/ganeti.locking_unittest.py \
455
	test/ganeti.luxi_unittest.py \
456
	test/ganeti.masterd.instance_unittest.py \
457
	test/ganeti.mcpu_unittest.py \
458
	test/ganeti.netutils_unittest.py \
459
	test/ganeti.objects_unittest.py \
460
	test/ganeti.opcodes_unittest.py \
461
	test/ganeti.qlang_unittest.py \
462
	test/ganeti.query_unittest.py \
463
	test/ganeti.rapi.client_unittest.py \
464
	test/ganeti.rapi.resources_unittest.py \
465
	test/ganeti.rapi.rlib2_unittest.py \
466
	test/ganeti.rpc_unittest.py \
467
	test/ganeti.runtime_unittest.py \
468
	test/ganeti.serializer_unittest.py \
469
	test/ganeti.ssh_unittest.py \
470
	test/ganeti.uidpool_unittest.py \
471
	test/ganeti.utils_unittest.py \
472
	test/ganeti.utils_mlockall_unittest.py \
473
	test/ganeti.workerpool_unittest.py \
474
	test/cfgupgrade_unittest.py \
475
	test/docs_unittest.py \
476
	test/tempfile_fork_unittest.py
477

    
478
dist_TESTS = \
479
	test/check-cert-expired_unittest.bash \
480
	test/daemon-util_unittest.bash \
481
	test/ganeti-cleaner_unittest.bash \
482
	test/import-export_unittest.bash \
483
	$(python_tests)
484

    
485
nodist_TESTS =
486

    
487
TESTS = $(dist_TESTS) $(nodist_TESTS)
488

    
489
# Environment for all tests
490
PLAIN_TESTS_ENVIRONMENT = \
491
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
492

    
493
# Environment for tests run by automake
494
TESTS_ENVIRONMENT = \
495
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
496

    
497
all_python_code = \
498
	$(dist_sbin_SCRIPTS) \
499
	$(dist_tools_SCRIPTS) \
500
	$(pkglib_python_scripts) \
501
	$(python_tests) \
502
	$(pkgpython_PYTHON) \
503
	$(client_PYTHON) \
504
	$(hypervisor_PYTHON) \
505
	$(rapi_PYTHON) \
506
	$(server_PYTHON) \
507
	$(http_PYTHON) \
508
	$(confd_PYTHON) \
509
	$(masterd_PYTHON) \
510
	$(impexpd_PYTHON) \
511
	$(watcher_PYTHON) \
512
	$(noinst_PYTHON) \
513
	$(qa_scripts)
514

    
515
srclink_files = \
516
	man/footer.rst \
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
	$(all_python_code)
522

    
523
check_python_code = \
524
	$(BUILD_BASH_COMPLETION) \
525
	$(all_python_code)
526

    
527
lint_python_code = \
528
	ganeti \
529
	ganeti/http/server.py \
530
	$(dist_sbin_SCRIPTS) \
531
	$(dist_tools_SCRIPTS) \
532
	$(pkglib_python_scripts) \
533
	$(BUILD_BASH_COMPLETION) \
534
	$(PYTHON_BOOTSTRAP)
535

    
536
test/daemon-util_unittest.bash: daemons/daemon-util
537

    
538
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
539

    
540
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
541
	sed -f $(REPLACE_VARS_SED) < $< > $@
542
	chmod u+x $@
543

    
544
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
545
	sed -f $(REPLACE_VARS_SED) < $< > $@
546
	chmod +x $@
547

    
548
doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
549
	sed -f $(REPLACE_VARS_SED) < $< > $@
550

    
551
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
552
	sed -f $(REPLACE_VARS_SED) < $< > $@
553

    
554
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
555
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
556
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
557

    
558
doc/%.png: doc/%.dot
559
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
560
	$(DOT) -Tpng -o $@ $<
561

    
562
man/footer.man: man/footer.rst
563
	@test -n "$(PANDOC)" || \
564
	  { echo 'pandoc' not found during configure; exit 1; }
565
	$(PANDOC) -f rst -t man -o $@ $<
566

    
567
man/footer.html: man/footer.rst
568
	@test -n "$(PANDOC)" || \
569
	  { echo 'pandoc' not found during configure; exit 1; }
570
	$(PANDOC) -f rst -t html -o $@ $<
571

    
572
man/%.7.in man/%.8.in: man/%.rst man/footer.man
573
	@test -n "$(PANDOC)" || \
574
	  { echo 'pandoc' not found during configure; exit 1; }
575
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
576
	  sed -e 's/\\@/@/g' > $@
577
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
578

    
579
man/%.html.in: man/%.rst man/footer.html
580
	@test -n "$(PANDOC)" || \
581
	  { echo 'pandoc' not found during configure; exit 1; }
582
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
583
	  sed -e 's/\\@/@/g' > $@
584

    
585

    
586
man/%.7: man/%.7.in $(REPLACE_VARS_SED)
587
	sed -f $(REPLACE_VARS_SED) < $< > $@
588

    
589
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
590
	sed -f $(REPLACE_VARS_SED) < $< > $@
591

    
592
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
593
	sed -f $(REPLACE_VARS_SED) < $< > $@
594

    
595
vcs-version:
596
	if test -d .git; then \
597
	  git describe > $@; \
598
	elif test ! -f $@ ; then \
599
	  echo "Cannot auto-generate $@ file"; exit 1; \
600
	fi
601

    
602
.PHONY: regen-vcs-version
603
regen-vcs-version:
604
	set -e; \
605
	cd $(srcdir); \
606
	if test -d .git; then \
607
	  rm -f vcs-version; \
608
	  $(MAKE) vcs-version; \
609
	fi
610

    
611
lib/_autoconf.py: Makefile vcs-version | lib/.dir
612
	set -e; \
613
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
614
	{ echo '# This file is automatically generated, do not edit!'; \
615
	  echo '#'; \
616
	  echo ''; \
617
	  echo '"""Build-time configuration for Ganeti.'; \
618
	  echo '';\
619
	  echo 'This file is autogenerated by the build process.'; \
620
	  echo 'For any changes you need to re-run ./configure (and'; \
621
	  echo 'not edit by hand).'; \
622
	  echo ''; \
623
	  echo '"""'; \
624
	  echo ''; \
625
	  echo '# pylint: disable-msg=C0301,C0324'; \
626
	  echo '# because this is autogenerated, we do not want'; \
627
	  echo '# style warnings' ; \
628
	  echo ''; \
629
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
630
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
631
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
632
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
633
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
634
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
635
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
636
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
637
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
638
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
639
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
640
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
641
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
642
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
643
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
644
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
645
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
646
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
647
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
648
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
649
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
650
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
651
	  echo "TOOLSDIR = '$(toolsdir)'"; \
652
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
653
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
654
	  echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
655
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
656
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
657
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
658
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
659
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
660
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
661
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
662
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
663
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
664
	  echo "NODED_USER = '$(NODED_USER)'"; \
665
	  echo "VCS_VERSION = '$$VCSVER'"; \
666
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
667
	} > $@
668

    
669
$(REPLACE_VARS_SED): Makefile
670
	set -e; \
671
	{ echo 's#@PREFIX@#$(prefix)#g'; \
672
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
673
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
674
	  echo 's#@BINDIR@#$(bindir)#g'; \
675
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
676
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
677
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
678
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
679
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
680
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
681
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
682
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
683
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
684
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
685
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
686
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
687
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
688
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
689
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
690
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
691
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
692
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
693
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
694
	} > $@
695

    
696
# Using deferred evaluation
697
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
698
daemons/ganeti-watcher: MODULE = ganeti.watcher
699
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
700

    
701
$(PYTHON_BOOTSTRAP): Makefile | $(all_dirfiles)
702
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
703
	set -e; \
704
	{ echo '#!/usr/bin/python'; \
705
	  echo '# This file is automatically generated, do not edit!'; \
706
	  echo "# Edit $(MODULE) instead."; \
707
	  echo; \
708
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
709
	  echo; \
710
	  echo '# pylint: disable-msg=C0103'; \
711
	  echo '# C0103: Invalid name'; \
712
	  echo; \
713
	  echo 'import sys'; \
714
	  echo 'import $(MODULE) as main'; \
715
	  echo; \
716
	  echo '# Temporarily alias commands until bash completion'; \
717
	  echo '# generator is changed'; \
718
	  echo 'if hasattr(main, "commands"):'; \
719
		echo '  commands = main.commands # pylint: disable-msg=E1101'; \
720
	  echo; \
721
	  echo 'if __name__ == "__main__":'; \
722
	  echo '  sys.exit(main.Main())'; \
723
	} > $@
724
	chmod u+x $@
725

    
726
# We need to create symlinks because "make distcheck" will not install Python
727
# files when building.
728
stamp-srclinks: Makefile | $(all_dirfiles)
729
	set -e; \
730
	for i in $(srclink_files); do \
731
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
732
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
733
		fi; \
734
	done
735
	touch $@
736

    
737
.PHONY: ganeti
738
ganeti:
739
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
740

    
741
.PHONY: check-dirs
742
check-dirs: $(BUILT_SOURCES)
743
	@set -e; \
744
	find . -type d \( \( -name . \) -o \( \
745
		-name .git -o \
746
		-name autom4te.cache \
747
		\) -prune -o -print \) | { \
748
		error=; \
749
		while read dir; do \
750
			case "$$dir" in \
751
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
752
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
753
			esac; \
754
		done; \
755
		for dir in $(DIRS); do \
756
			if ! test -d "$$dir"; then \
757
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
758
				error=1; \
759
			fi \
760
		done; \
761
		if test -n "$$error"; then exit 1; else exit 0; fi; \
762
	}
763

    
764
check-local: check-dirs
765
	$(CHECK_PYTHON_CODE) $(check_python_code)
766
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
767

    
768
.PHONY: lint
769
lint: $(BUILT_SOURCES)
770
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
771
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
772

    
773
# a dist hook rule for updating the vcs-version file; this is
774
# hardcoded due to where it needs to build the file...
775
dist-hook:
776
	$(MAKE) regen-vcs-version && \
777
	rm -f $(top_distdir)/vcs-version && \
778
	cp -p $(srcdir)/vcs-version $(top_distdir)
779

    
780
# a distcheck hook rule for catching revision control directories
781
distcheck-hook:
782
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
783
		echo "Found revision control files in final archive." 1>&2; \
784
		exit 1; \
785
	fi
786
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
787
		echo "Found Python byte code in final archive." 1>&2; \
788
		exit 1; \
789
	fi
790
	if find $(top_distdir) -name '*~' | grep .; then \
791
		echo "Found backup files in final archive." 1>&2; \
792
		exit 1; \
793
	fi
794
# Empty files or directories should not be distributed. They can cause
795
# unnecessary warnings for packagers. Directories used by automake during
796
# distcheck must be excluded.
797
	if find $(top_distdir) -empty -and -not \( \
798
			-path $(top_distdir)/_build -or \
799
			-path $(top_distdir)/_inst \) | grep .; then \
800
		echo "Found empty files or directories in final archive." 1>&2; \
801
		exit 1; \
802
	fi
803
	if test -n "$(BUILD_RELEASE)" && \
804
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
805
		echo "Found unreleased version in NEWS." >&2; \
806
		exit 1; \
807
	fi
808

    
809
# When building a release, stricter checks should be used
810
distcheck-release dist-release: export BUILD_RELEASE = 1
811
distcheck-release: distcheck
812

    
813
dist-release: dist
814
	set -e; \
815
	for i in $(DIST_ARCHIVES); do \
816
		echo -n "Checking $$i ... "; \
817
		autotools/check-tar < $$i; \
818
		echo OK; \
819
	done
820

    
821
install-exec-local:
822
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
823
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
824
	  "$(DESTDIR)${localstatedir}/run/ganeti"
825

    
826
# To avoid conflicts between directory names and other targets, a file inside
827
# the directory is used to ensure its existence.
828
%.dir:
829
	@mkdir_p@ $* && touch $@
830

    
831
.PHONY: apidoc
832
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
833
	$(RUN_IN_TEMPDIR) epydoc -v \
834
		--conf $(CURDIR)/epydoc.conf \
835
		--output $(CURDIR)/doc/api
836

    
837
.PHONY: TAGS
838
TAGS: $(BUILT_SOURCES)
839
	rm -f TAGS
840
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
841
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
842
	  -path './qa/*.py' | \
843
	  etags -l python -
844

    
845
.PHONY: coverage
846
coverage: $(BUILT_SOURCES) $(python_tests)
847
	set -e; \
848
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
849
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
850
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
851
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
852
	$(python_tests)
853

    
854
commit-check: distcheck lint apidoc
855

    
856
-include ./Makefile.local
857

    
858
# vim: set noet :