Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 55cc0a44

History | View | Annotate | Download (22.8 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_chroot_unittest.py \
453
	test/ganeti.hypervisor.hv_fake_unittest.py \
454
	test/ganeti.hypervisor.hv_kvm_unittest.py \
455
	test/ganeti.hypervisor.hv_lxc_unittest.py \
456
	test/ganeti.hypervisor.hv_xen_unittest.py \
457
	test/ganeti.impexpd_unittest.py \
458
	test/ganeti.jqueue_unittest.py \
459
	test/ganeti.locking_unittest.py \
460
	test/ganeti.luxi_unittest.py \
461
	test/ganeti.masterd.instance_unittest.py \
462
	test/ganeti.mcpu_unittest.py \
463
	test/ganeti.netutils_unittest.py \
464
	test/ganeti.objects_unittest.py \
465
	test/ganeti.opcodes_unittest.py \
466
	test/ganeti.qlang_unittest.py \
467
	test/ganeti.query_unittest.py \
468
	test/ganeti.rapi.baserlib_unittest.py \
469
	test/ganeti.rapi.client_unittest.py \
470
	test/ganeti.rapi.resources_unittest.py \
471
	test/ganeti.rapi.rlib2_unittest.py \
472
	test/ganeti.rpc_unittest.py \
473
	test/ganeti.runtime_unittest.py \
474
	test/ganeti.serializer_unittest.py \
475
	test/ganeti.ssh_unittest.py \
476
	test/ganeti.uidpool_unittest.py \
477
	test/ganeti.utils_unittest.py \
478
	test/ganeti.utils_mlockall_unittest.py \
479
	test/ganeti.workerpool_unittest.py \
480
	test/cfgupgrade_unittest.py \
481
	test/docs_unittest.py \
482
	test/tempfile_fork_unittest.py
483

    
484
dist_TESTS = \
485
	test/check-cert-expired_unittest.bash \
486
	test/daemon-util_unittest.bash \
487
	test/ganeti-cleaner_unittest.bash \
488
	test/import-export_unittest.bash \
489
	$(python_tests)
490

    
491
nodist_TESTS =
492

    
493
TESTS = $(dist_TESTS) $(nodist_TESTS)
494

    
495
# Environment for all tests
496
PLAIN_TESTS_ENVIRONMENT = \
497
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
498

    
499
# Environment for tests run by automake
500
TESTS_ENVIRONMENT = \
501
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
502

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

    
521
srclink_files = \
522
	man/footer.rst \
523
	test/check-cert-expired_unittest.bash \
524
	test/daemon-util_unittest.bash \
525
	test/ganeti-cleaner_unittest.bash \
526
	test/import-export_unittest.bash \
527
	$(all_python_code)
528

    
529
check_python_code = \
530
	$(BUILD_BASH_COMPLETION) \
531
	$(all_python_code)
532

    
533
lint_python_code = \
534
	ganeti \
535
	ganeti/http/server.py \
536
	$(dist_sbin_SCRIPTS) \
537
	$(dist_tools_SCRIPTS) \
538
	$(pkglib_python_scripts) \
539
	$(BUILD_BASH_COMPLETION) \
540
	$(PYTHON_BOOTSTRAP)
541

    
542
test/daemon-util_unittest.bash: daemons/daemon-util
543

    
544
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
545

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

    
550
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
551
	sed -f $(REPLACE_VARS_SED) < $< > $@
552
	chmod +x $@
553

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

    
557
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
558
	sed -f $(REPLACE_VARS_SED) < $< > $@
559

    
560
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
561
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
562
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
563

    
564
doc/%.png: doc/%.dot
565
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
566
	$(DOT) -Tpng -o $@ $<
567

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

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

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

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

    
591

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

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

    
598
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
599
	sed -f $(REPLACE_VARS_SED) < $< > $@
600

    
601
vcs-version:
602
	if test -d .git; then \
603
	  git describe > $@; \
604
	elif test ! -f $@ ; then \
605
	  echo "Cannot auto-generate $@ file"; exit 1; \
606
	fi
607

    
608
.PHONY: regen-vcs-version
609
regen-vcs-version:
610
	set -e; \
611
	cd $(srcdir); \
612
	if test -d .git; then \
613
	  rm -f vcs-version; \
614
	  $(MAKE) vcs-version; \
615
	fi
616

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

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

    
702
# Using deferred evaluation
703
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
704
daemons/ganeti-watcher: MODULE = ganeti.watcher
705
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
706

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

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

    
743
.PHONY: ganeti
744
ganeti:
745
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
746

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

    
770
check-local: check-dirs
771
	$(CHECK_PYTHON_CODE) $(check_python_code)
772
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
773

    
774
.PHONY: lint
775
lint: $(BUILT_SOURCES)
776
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
777
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
778

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

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

    
815
# When building a release, stricter checks should be used
816
distcheck-release dist-release: export BUILD_RELEASE = 1
817
distcheck-release: distcheck
818

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

    
827
install-exec-local:
828
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
829
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
830
	  "$(DESTDIR)${localstatedir}/run/ganeti"
831

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

    
837
.PHONY: apidoc
838
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
839
	$(RUN_IN_TEMPDIR) epydoc -v \
840
		--conf $(CURDIR)/epydoc.conf \
841
		--output $(CURDIR)/doc/api
842

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

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

    
860
commit-check: distcheck lint apidoc
861

    
862
-include ./Makefile.local
863

    
864
# vim: set noet :