Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 9f4bb951

History | View | Annotate | Download (20.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
DOCBOOK_WRAPPER = $(top_srcdir)/autotools/docbook-wrapper
14
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
15
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
16
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
17
CHECK_MAN = $(top_srcdir)/autotools/check-man
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
watcherdir = $(pkgpythondir)/watcher
27
impexpddir = $(pkgpythondir)/impexpd
28
toolsdir = $(pkglibdir)/tools
29
docdir = $(datadir)/doc/$(PACKAGE)
30

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

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

    
58
BUILDTIME_DIRS = \
59
	scripts \
60
	doc/api \
61
	doc/coverage \
62
	doc/html
63

    
64
DIRCHECK_EXCLUDE = \
65
	$(BUILDTIME_DIRS) \
66
	ganeti-[0-9]*.[0-9]*.[0-9]* \
67
	doc/html/_*
68

    
69
all_dirfiles = $(addsuffix /.dir,$(DIRS) $(BUILDTIME_DIRS))
70

    
71
MAINTAINERCLEANFILES = \
72
	$(docpng) \
73
	$(maninput) \
74
	doc/install-quick.rst \
75
	doc/news.rst \
76
	vcs-version
77

    
78
maintainer-clean-local:
79
	rm -rf $(BUILDTIME_DIRS)
80

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

    
100
# BUILT_SOURCES should only be used as a dependency on phony targets. Otherwise
101
# it'll cause the target to rebuild every time.
102
BUILT_SOURCES = \
103
	ganeti \
104
	stamp-srclinks \
105
	lib/_autoconf.py \
106
	$(all_dirfiles) \
107
	$(PYTHON_BOOTSTRAP)
108

    
109
nodist_pkgpython_PYTHON = \
110
	lib/_autoconf.py
111

    
112
noinst_PYTHON = \
113
	lib/build/__init__.py
114

    
115
pkgpython_PYTHON = \
116
	lib/__init__.py \
117
	lib/asyncnotifier.py \
118
	lib/backend.py \
119
	lib/bdev.py \
120
	lib/bootstrap.py \
121
	lib/cli.py \
122
	lib/cmdlib.py \
123
	lib/compat.py \
124
	lib/config.py \
125
	lib/constants.py \
126
	lib/daemon.py \
127
	lib/errors.py \
128
	lib/ht.py \
129
	lib/jqueue.py \
130
	lib/jstore.py \
131
	lib/locking.py \
132
	lib/luxi.py \
133
	lib/mcpu.py \
134
	lib/netutils.py \
135
	lib/objects.py \
136
	lib/opcodes.py \
137
	lib/rpc.py \
138
	lib/runtime.py \
139
	lib/serializer.py \
140
	lib/ssconf.py \
141
	lib/ssh.py \
142
	lib/storage.py \
143
	lib/utils.py \
144
	lib/uidpool.py \
145
	lib/workerpool.py
146

    
147
client_PYTHON = \
148
	lib/client/__init__.py \
149
	lib/client/gnt_backup.py \
150
	lib/client/gnt_cluster.py \
151
	lib/client/gnt_debug.py \
152
	lib/client/gnt_instance.py \
153
	lib/client/gnt_job.py \
154
	lib/client/gnt_node.py \
155
	lib/client/gnt_os.py
156

    
157
hypervisor_PYTHON = \
158
	lib/hypervisor/__init__.py \
159
	lib/hypervisor/hv_base.py \
160
	lib/hypervisor/hv_chroot.py \
161
	lib/hypervisor/hv_fake.py \
162
	lib/hypervisor/hv_kvm.py \
163
	lib/hypervisor/hv_lxc.py \
164
	lib/hypervisor/hv_xen.py
165

    
166
rapi_PYTHON = \
167
	lib/rapi/__init__.py \
168
	lib/rapi/baserlib.py \
169
	lib/rapi/client.py \
170
	lib/rapi/client_utils.py \
171
	lib/rapi/connector.py \
172
	lib/rapi/rlib2.py
173

    
174
http_PYTHON = \
175
	lib/http/__init__.py \
176
	lib/http/auth.py \
177
	lib/http/client.py \
178
	lib/http/server.py
179

    
180
confd_PYTHON = \
181
	lib/confd/__init__.py \
182
	lib/confd/client.py \
183
	lib/confd/querylib.py \
184
	lib/confd/server.py
185

    
186
masterd_PYTHON = \
187
	lib/masterd/__init__.py \
188
	lib/masterd/instance.py
189

    
190
impexpd_PYTHON = \
191
	lib/impexpd/__init__.py
192

    
193
watcher_PYTHON = \
194
	lib/watcher/__init__.py
195

    
196
docrst = \
197
	doc/admin.rst \
198
	doc/design-2.0.rst \
199
	doc/design-2.1.rst \
200
	doc/design-2.2.rst \
201
	doc/design-2.3.rst \
202
	doc/cluster-merge.rst \
203
	doc/devnotes.rst \
204
	doc/glossary.rst \
205
	doc/hooks.rst \
206
	doc/iallocator.rst \
207
	doc/index.rst \
208
	doc/install-quick.rst \
209
	doc/install.rst \
210
	doc/locking.rst \
211
	doc/move-instance.rst \
212
	doc/news.rst \
213
	doc/rapi.rst \
214
	doc/security.rst \
215
	doc/walkthrough.rst
216

    
217
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
218

    
219
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
220
	$(RUN_IN_TEMPDIR) | doc/html/.dir
221
	@test -n "$(SPHINX)" || \
222
	    { echo 'sphinx-build' not found during configure; exit 1; }
223
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
224
	    -d . \
225
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
226
	    -D release="$(PACKAGE_VERSION)" \
227
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
228
	rm -f doc/html/.buildinfo doc/html/objects.inv
229
	touch $@
230

    
231
doc/html: doc/html/index.html
232

    
233
doc/news.rst: NEWS
234
	set -e; \
235
	{ echo '.. This file is automatically updated at build time from $<.'; \
236
	  echo '.. Do not edit.'; \
237
	  echo; \
238
	  cat $<; \
239
	} > $@
240

    
241
doc/install-quick.rst: INSTALL
242
	set -e; \
243
	{ echo '.. This file is automatically updated at build time from $<.'; \
244
	  echo '.. Do not edit.'; \
245
	  echo; \
246
	  cat $<; \
247
	} > $@
248

    
249
docdot = \
250
	doc/arch-2.0.dot \
251
	doc/design-2.1-lock-acquire.dot \
252
	doc/design-2.1-lock-release.dot
253

    
254
docpng = $(patsubst %.dot,%.png,$(docdot))
255

    
256
# Things to build but not to install (add it to EXTRA_DIST if it should be
257
# distributed)
258
noinst_DATA = \
259
	devel/upload \
260
	doc/html \
261
	doc/examples/bash_completion \
262
	doc/examples/ganeti.cron \
263
	doc/examples/ganeti.initd \
264
	doc/examples/gnt-config-backup \
265
	doc/examples/hooks/ipsec \
266
	$(manhtml)
267

    
268
gnt_scripts = \
269
	scripts/gnt-backup \
270
	scripts/gnt-cluster \
271
	scripts/gnt-debug \
272
	scripts/gnt-instance \
273
	scripts/gnt-job \
274
	scripts/gnt-node \
275
	scripts/gnt-os
276

    
277
PYTHON_BOOTSTRAP = \
278
	daemons/ganeti-watcher \
279
	scripts/gnt-backup \
280
	scripts/gnt-cluster \
281
	scripts/gnt-debug \
282
	scripts/gnt-instance \
283
	scripts/gnt-job \
284
	scripts/gnt-node \
285
	scripts/gnt-os
286

    
287
dist_sbin_SCRIPTS = \
288
	daemons/ganeti-noded \
289
	daemons/ganeti-masterd \
290
	daemons/ganeti-confd \
291
	daemons/ganeti-rapi
292

    
293
nodist_sbin_SCRIPTS = \
294
	$(PYTHON_BOOTSTRAP) \
295
	daemons/ganeti-cleaner
296

    
297
dist_tools_SCRIPTS = \
298
	tools/burnin \
299
	tools/cfgshell \
300
	tools/cfgupgrade \
301
	tools/cfgupgrade12 \
302
	tools/cluster-merge \
303
	tools/lvmstrap \
304
	tools/move-instance \
305
	tools/setup-ssh \
306
	tools/sanitize-config
307

    
308
pkglib_python_scripts = \
309
	daemons/import-export \
310
	tools/check-cert-expired
311

    
312
pkglib_SCRIPTS = \
313
	daemons/daemon-util \
314
	daemons/ensure-dirs \
315
	$(pkglib_python_scripts)
316

    
317
EXTRA_DIST = \
318
	NEWS \
319
	pylintrc \
320
	autotools/build-bash-completion \
321
	autotools/check-python-code \
322
	autotools/check-man \
323
	autotools/docbook-wrapper \
324
	autotools/gen-coverage \
325
	autotools/testrunner \
326
	$(RUN_IN_TEMPDIR) \
327
	daemons/daemon-util.in \
328
	daemons/ensure-dirs.in \
329
	daemons/ganeti-cleaner.in \
330
	$(pkglib_python_scripts) \
331
	devel/upload.in \
332
	$(docdot) \
333
	$(docpng) \
334
	$(docrst) \
335
	doc/conf.py \
336
	doc/html \
337
	doc/examples/ganeti.initd.in \
338
	doc/examples/ganeti.cron.in \
339
	doc/examples/gnt-config-backup.in \
340
	doc/examples/dumb-allocator \
341
	doc/examples/ganeti.default \
342
	doc/examples/ganeti.default-debug \
343
	doc/examples/hooks/ethers \
344
	doc/examples/hooks/ipsec.in \
345
	doc/examples/gnt-debug/README \
346
	doc/examples/gnt-debug/delay0.json \
347
	doc/examples/gnt-debug/delay50.json \
348
	test/testutils.py \
349
	test/mocks.py \
350
	$(dist_TESTS) \
351
	$(TEST_FILES) \
352
	man/footer.sgml \
353
	$(mansgml) \
354
	$(maninput) \
355
	qa/ganeti-qa.py \
356
	qa/qa-sample.json \
357
	qa/qa_cluster.py \
358
	qa/qa_config.py \
359
	qa/qa_daemon.py \
360
	qa/qa_env.py \
361
	qa/qa_error.py \
362
	qa/qa_instance.py \
363
	qa/qa_node.py \
364
	qa/qa_os.py \
365
	qa/qa_rapi.py \
366
	qa/qa_tags.py \
367
	qa/qa_utils.py
368

    
369
man_MANS = \
370
	man/ganeti.7 \
371
	man/ganeti-cleaner.8 \
372
	man/ganeti-confd.8 \
373
	man/ganeti-masterd.8 \
374
	man/ganeti-noded.8 \
375
	man/ganeti-os-interface.7 \
376
	man/ganeti-rapi.8 \
377
	man/ganeti-watcher.8 \
378
	man/gnt-backup.8 \
379
	man/gnt-cluster.8 \
380
	man/gnt-debug.8 \
381
	man/gnt-instance.8 \
382
	man/gnt-job.8 \
383
	man/gnt-node.8 \
384
	man/gnt-os.8
385

    
386
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
387
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
388
maninput = \
389
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
390
	$(patsubst %.html,%.html.in,$(manhtml))
391

    
392
TEST_FILES = \
393
	test/data/bdev-drbd-8.0.txt \
394
	test/data/bdev-drbd-8.3.txt \
395
	test/data/bdev-drbd-disk.txt \
396
	test/data/bdev-drbd-net-ip4.txt \
397
	test/data/bdev-drbd-net-ip6.txt \
398
	test/data/cert1.pem \
399
	test/data/proc_drbd8.txt \
400
	test/data/proc_drbd80-emptyline.txt \
401
	test/data/proc_drbd83.txt \
402
	test/data/sys_drbd_usermode_helper.txt \
403
	test/import-export_unittest-helper
404

    
405
python_tests = \
406
	test/ganeti.asyncnotifier_unittest.py \
407
	test/ganeti.backend_unittest.py \
408
	test/ganeti.bdev_unittest.py \
409
	test/ganeti.cli_unittest.py \
410
	test/ganeti.daemon_unittest.py \
411
	test/ganeti.cmdlib_unittest.py \
412
	test/ganeti.compat_unittest.py \
413
	test/ganeti.confd.client_unittest.py \
414
	test/ganeti.config_unittest.py \
415
	test/ganeti.constants_unittest.py \
416
	test/ganeti.errors_unittest.py \
417
	test/ganeti.hooks_unittest.py \
418
	test/ganeti.http_unittest.py \
419
	test/ganeti.hypervisor.hv_kvm_unittest.py \
420
	test/ganeti.impexpd_unittest.py \
421
	test/ganeti.jqueue_unittest.py \
422
	test/ganeti.locking_unittest.py \
423
	test/ganeti.luxi_unittest.py \
424
	test/ganeti.masterd.instance_unittest.py \
425
	test/ganeti.mcpu_unittest.py \
426
	test/ganeti.netutils_unittest.py \
427
	test/ganeti.objects_unittest.py \
428
	test/ganeti.opcodes_unittest.py \
429
	test/ganeti.rapi.client_unittest.py \
430
	test/ganeti.rapi.resources_unittest.py \
431
	test/ganeti.rapi.rlib2_unittest.py \
432
	test/ganeti.rpc_unittest.py \
433
	test/ganeti.runtime_unittest.py \
434
	test/ganeti.serializer_unittest.py \
435
	test/ganeti.ssh_unittest.py \
436
	test/ganeti.uidpool_unittest.py \
437
	test/ganeti.utils_unittest.py \
438
	test/ganeti.utils_mlockall_unittest.py \
439
	test/ganeti.workerpool_unittest.py \
440
	test/cfgupgrade_unittest.py \
441
	test/docs_unittest.py \
442
	test/tempfile_fork_unittest.py
443

    
444
dist_TESTS = \
445
	test/check-cert-expired_unittest.bash \
446
	test/daemon-util_unittest.bash \
447
	test/ganeti-cleaner_unittest.bash \
448
	test/import-export_unittest.bash \
449
	$(python_tests)
450

    
451
nodist_TESTS =
452

    
453
TESTS = $(dist_TESTS) $(nodist_TESTS)
454

    
455
# Environment for all tests
456
PLAIN_TESTS_ENVIRONMENT = \
457
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
458

    
459
# Environment for tests run by automake
460
TESTS_ENVIRONMENT = \
461
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
462

    
463
all_python_code = \
464
	$(dist_sbin_SCRIPTS) \
465
	$(dist_tools_SCRIPTS) \
466
	$(pkglib_python_scripts) \
467
	$(python_tests) \
468
	$(pkgpython_PYTHON) \
469
	$(client_PYTHON) \
470
	$(hypervisor_PYTHON) \
471
	$(rapi_PYTHON) \
472
	$(http_PYTHON) \
473
	$(confd_PYTHON) \
474
	$(masterd_PYTHON) \
475
	$(impexpd_PYTHON) \
476
	$(watcher_PYTHON) \
477
	$(noinst_PYTHON)
478

    
479
srclink_files = \
480
	man/footer.sgml \
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
	$(all_python_code)
486

    
487
check_python_code = \
488
	$(BUILD_BASH_COMPLETION) \
489
	$(all_python_code)
490

    
491
lint_python_code = \
492
	ganeti \
493
	ganeti/http/server.py \
494
	$(dist_sbin_SCRIPTS) \
495
	$(dist_tools_SCRIPTS) \
496
	$(pkglib_python_scripts) \
497
	$(BUILD_BASH_COMPLETION)
498

    
499
test/daemon-util_unittest.bash: daemons/daemon-util
500

    
501
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
502

    
503
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
504
	sed -f $(REPLACE_VARS_SED) < $< > $@
505
	chmod u+x $@
506

    
507
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
508
	sed -f $(REPLACE_VARS_SED) < $< > $@
509
	chmod +x $@
510

    
511
doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
512
	sed -f $(REPLACE_VARS_SED) < $< > $@
513

    
514
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
515
	sed -f $(REPLACE_VARS_SED) < $< > $@
516

    
517
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
518
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
519
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
520

    
521
doc/%.png: doc/%.dot
522
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
523
	$(DOT) -Tpng -o $@ $<
524

    
525
man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
526
	@test -n "$(DOCBOOK2MAN)" || \
527
	  { echo 'docbook2man' not found during configure; exit 1; }
528
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $(notdir $(@:.in=)) $@
529
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
530

    
531
man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
532
	@test -n "$(DOCBOOK2HTML)" || \
533
	  { echo 'docbook2html' not found during configure; exit 1; }
534
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
535

    
536
man/%.7: man/%.7.in $(REPLACE_VARS_SED)
537
	sed -f $(REPLACE_VARS_SED) < $< > $@
538

    
539
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
540
	sed -f $(REPLACE_VARS_SED) < $< > $@
541

    
542
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
543
	sed -f $(REPLACE_VARS_SED) < $< > $@
544

    
545
vcs-version:
546
	if test -d .git; then \
547
	  git describe > $@; \
548
	elif test ! -f $@ ; then \
549
	  echo "Cannot auto-generate $@ file"; exit 1; \
550
	fi
551

    
552
.PHONY: regen-vcs-version
553
regen-vcs-version:
554
	set -e; \
555
	cd $(srcdir); \
556
	if test -d .git; then \
557
	  rm -f vcs-version; \
558
	  $(MAKE) vcs-version; \
559
	fi
560

    
561
lib/_autoconf.py: Makefile vcs-version | lib/.dir
562
	set -e; \
563
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
564
	{ echo '# This file is automatically generated, do not edit!'; \
565
	  echo '#'; \
566
	  echo ''; \
567
	  echo '"""Build-time configuration for Ganeti.'; \
568
	  echo '';\
569
	  echo 'This file is autogenerated by the build process.'; \
570
	  echo 'For any changes you need to re-run ./configure (and'; \
571
	  echo 'not edit by hand).'; \
572
	  echo ''; \
573
	  echo '"""'; \
574
	  echo ''; \
575
	  echo '# pylint: disable-msg=C0301,C0324'; \
576
	  echo '# because this is autogenerated, we do not want'; \
577
	  echo '# style warnings' ; \
578
	  echo ''; \
579
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
580
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
581
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
582
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
583
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
584
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
585
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
586
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
587
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
588
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
589
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
590
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
591
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
592
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
593
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
594
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
595
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
596
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
597
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
598
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
599
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
600
	  echo "TOOLSDIR = '$(toolsdir)'"; \
601
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
602
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
603
	  echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
604
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
605
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
606
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
607
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
608
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
609
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
610
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
611
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
612
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
613
	  echo "NODED_USER = '$(NODED_USER)'"; \
614
	  echo "VCS_VERSION = '$$VCSVER'"; \
615
	} > $@
616

    
617
$(REPLACE_VARS_SED): Makefile
618
	set -e; \
619
	{ echo 's#@PREFIX@#$(prefix)#g'; \
620
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
621
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
622
	  echo 's#@BINDIR@#$(bindir)#g'; \
623
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
624
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
625
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
626
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
627
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
628
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
629
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
630
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
631
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
632
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
633
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
634
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
635
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
636
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
637
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
638
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
639
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
640
	} > $@
641

    
642
# Using deferred evaluation
643
daemons/ganeti-watcher: MODULE = ganeti.watcher
644
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
645

    
646
$(PYTHON_BOOTSTRAP): Makefile | $(all_dirfiles)
647
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
648
	set -e; \
649
	{ echo '#!/usr/bin/python'; \
650
	  echo '# This file is automatically generated, do not edit!'; \
651
	  echo "# Edit $(MODULE) instead."; \
652
	  echo; \
653
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
654
	  echo; \
655
	  echo '# pylint: disable-msg=C0103'; \
656
	  echo '# C0103: Invalid name'; \
657
	  echo; \
658
	  echo 'import sys'; \
659
	  echo 'import $(MODULE) as main'; \
660
	  echo; \
661
	  echo '# Temporarily alias commands until bash completion'; \
662
	  echo '# generator is changed'; \
663
	  echo 'if hasattr(main, "commands"):'; \
664
	  echo '  commands = main.commands'; \
665
	  echo; \
666
	  echo 'if __name__ == "__main__":'; \
667
	  echo '  sys.exit(main.Main())'; \
668
	} > $@
669
	chmod u+x $@
670

    
671
# We need to create symlinks because "make distcheck" will not install Python
672
# files when building.
673
stamp-srclinks: Makefile | $(all_dirfiles)
674
	set -e; \
675
	for i in $(srclink_files); do \
676
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
677
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
678
		fi; \
679
	done
680
	touch $@
681

    
682
.PHONY: ganeti
683
ganeti:
684
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
685

    
686
.PHONY: check-dirs
687
check-dirs: $(BUILT_SOURCES)
688
	@set -e; \
689
	find . -type d \( \( -name . \) -o \( \
690
		-name .git -o \
691
		-name autom4te.cache \
692
		\) -prune -o -print \) | { \
693
		error=; \
694
		while read dir; do \
695
			case "$$dir" in \
696
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
697
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
698
			esac; \
699
		done; \
700
		for dir in $(DIRS); do \
701
			if ! test -d "$$dir"; then \
702
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
703
				error=1; \
704
			fi \
705
		done; \
706
		if test -n "$$error"; then exit 1; else exit 0; fi; \
707
	}
708

    
709
check-local: check-dirs
710
	$(CHECK_PYTHON_CODE) $(check_python_code)
711

    
712
.PHONY: lint
713
lint: $(BUILT_SOURCES)
714
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
715
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
716

    
717
# a dist hook rule for updating the vcs-version file; this is
718
# hardcoded due to where it needs to build the file...
719
dist-hook:
720
	$(MAKE) regen-vcs-version && \
721
	rm -f $(top_distdir)/vcs-version && \
722
	cp -p $(srcdir)/vcs-version $(top_distdir)
723

    
724
# a distcheck hook rule for catching revision control directories
725
distcheck-hook:
726
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
727
		echo "Found revision control files in final archive." 1>&2; \
728
		exit 1; \
729
	fi
730
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
731
		echo "Found Python byte code in final archive." 1>&2; \
732
		exit 1; \
733
	fi
734
	if find $(top_distdir) -name '*~' | grep .; then \
735
		echo "Found backup files in final archive." 1>&2; \
736
		exit 1; \
737
	fi
738
	if test -n "$(BUILD_RELEASE)" && \
739
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
740
		echo "Found unreleased version in NEWS." >&2; \
741
		exit 1; \
742
	fi
743

    
744
# When building a release, stricter checks should be used
745
distcheck-release: export BUILD_RELEASE = 1
746
distcheck-release: distcheck
747

    
748
install-exec-local:
749
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
750
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
751
	  "$(DESTDIR)${localstatedir}/run/ganeti"
752

    
753
# To avoid conflicts between directory names and other targets, a file inside
754
# the directory is used to ensure its existence.
755
%.dir:
756
	@mkdir_p@ $* && touch $@
757

    
758
.PHONY: apidoc
759
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
760
	$(RUN_IN_TEMPDIR) epydoc -v \
761
		--conf $(CURDIR)/epydoc.conf \
762
		--output $(CURDIR)/doc/api
763

    
764
.PHONY: TAGS
765
TAGS: $(BUILT_SOURCES)
766
	rm -f TAGS
767
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
768
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
769
	  -path './qa/*.py' | \
770
	  etags -l python -
771

    
772
.PHONY: coverage
773
coverage: $(BUILT_SOURCES) $(python_tests)
774
	set -e; \
775
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
776
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
777
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
778
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
779
	$(python_tests)
780

    
781
commit-check: distcheck lint apidoc
782

    
783
-include ./Makefile.local
784

    
785
# vim: set noet :