Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 25ce3ec4

History | View | Annotate | Download (22.6 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
	doc/upgrade.rst \
82
	vcs-version
83

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

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

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

    
116
nodist_pkgpython_PYTHON = \
117
	lib/_autoconf.py
118

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

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

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

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

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

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

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

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

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

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

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

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

    
237
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
238

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

    
252
doc/html: doc/html/index.html
253

    
254
doc/install-quick.rst: INSTALL
255
doc/news.rst: NEWS
256
doc/upgrade.rst: UPGRADE
257

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

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

    
271
docpng = $(patsubst %.dot,%.png,$(docdot))
272

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

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

    
296
PYTHON_BOOTSTRAP = \
297
	daemons/ganeti-confd \
298
	daemons/ganeti-masterd \
299
	daemons/ganeti-noded \
300
	daemons/ganeti-watcher \
301
	daemons/ganeti-rapi \
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
qa_scripts = \
312
	qa/ganeti-qa.py \
313
	qa/qa_cluster.py \
314
	qa/qa_config.py \
315
	qa/qa_daemon.py \
316
	qa/qa_env.py \
317
	qa/qa_error.py \
318
	qa/qa_instance.py \
319
	qa/qa_node.py \
320
	qa/qa_os.py \
321
	qa/qa_rapi.py \
322
	qa/qa_tags.py \
323
	qa/qa_utils.py
324

    
325
dist_sbin_SCRIPTS = \
326
	tools/ganeti-listrunner
327

    
328
nodist_sbin_SCRIPTS = \
329
	$(PYTHON_BOOTSTRAP) \
330
	daemons/ganeti-cleaner
331

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

    
343
pkglib_python_scripts = \
344
	daemons/import-export \
345
	tools/check-cert-expired
346

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

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

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

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

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

    
435
python_tests = \
436
	test/ganeti.asyncnotifier_unittest.py \
437
	test/ganeti.backend_unittest.py \
438
	test/ganeti.bdev_unittest.py \
439
	test/ganeti.cli_unittest.py \
440
	test/ganeti.client.gnt_instance_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.ht_unittest.py \
450
	test/ganeti.http_unittest.py \
451
	test/ganeti.hypervisor_unittest.py \
452
	test/ganeti.hypervisor.hv_kvm_unittest.py \
453
	test/ganeti.impexpd_unittest.py \
454
	test/ganeti.jqueue_unittest.py \
455
	test/ganeti.locking_unittest.py \
456
	test/ganeti.luxi_unittest.py \
457
	test/ganeti.masterd.instance_unittest.py \
458
	test/ganeti.mcpu_unittest.py \
459
	test/ganeti.netutils_unittest.py \
460
	test/ganeti.objects_unittest.py \
461
	test/ganeti.opcodes_unittest.py \
462
	test/ganeti.qlang_unittest.py \
463
	test/ganeti.query_unittest.py \
464
	test/ganeti.rapi.baserlib_unittest.py \
465
	test/ganeti.rapi.client_unittest.py \
466
	test/ganeti.rapi.resources_unittest.py \
467
	test/ganeti.rapi.rlib2_unittest.py \
468
	test/ganeti.rpc_unittest.py \
469
	test/ganeti.runtime_unittest.py \
470
	test/ganeti.serializer_unittest.py \
471
	test/ganeti.ssh_unittest.py \
472
	test/ganeti.uidpool_unittest.py \
473
	test/ganeti.utils_unittest.py \
474
	test/ganeti.utils_mlockall_unittest.py \
475
	test/ganeti.workerpool_unittest.py \
476
	test/cfgupgrade_unittest.py \
477
	test/docs_unittest.py \
478
	test/tempfile_fork_unittest.py
479

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

    
487
nodist_TESTS =
488

    
489
TESTS = $(dist_TESTS) $(nodist_TESTS)
490

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

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

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

    
517
srclink_files = \
518
	man/footer.rst \
519
	test/check-cert-expired_unittest.bash \
520
	test/daemon-util_unittest.bash \
521
	test/ganeti-cleaner_unittest.bash \
522
	test/import-export_unittest.bash \
523
	$(all_python_code)
524

    
525
check_python_code = \
526
	$(BUILD_BASH_COMPLETION) \
527
	$(all_python_code)
528

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

    
538
test/daemon-util_unittest.bash: daemons/daemon-util
539

    
540
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
541

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

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

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

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

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

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

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

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

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

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

    
587

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
856
commit-check: distcheck lint apidoc
857

    
858
-include ./Makefile.local
859

    
860
# vim: set noet :