Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 1e86ee97

History | View | Annotate | Download (20.9 kB)

1
# Ganeti makefile
2
# - Indent with tabs only.
3
# - Keep files sorted; one line per file.
4
# - Directories in lib/ must have their own *dir variable (see hypervisor).
5
# - All directories must be listed DIRS.
6
# - Use autogen.sh to generate Makefile.in and configure script.
7

    
8
# Automake doesn't export these variables before version 1.10.
9
abs_top_builddir = @abs_top_builddir@
10
abs_top_srcdir = @abs_top_srcdir@
11

    
12
ACLOCAL_AMFLAGS = -I autotools
13
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
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_DIRS = \
61
	scripts \
62
	doc/api \
63
	doc/coverage \
64
	doc/html
65

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

    
71
all_dirfiles = $(addsuffix /.dir,$(DIRS) $(BUILDTIME_DIRS))
72

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

    
80
maintainer-clean-local:
81
	rm -rf $(BUILDTIME_DIRS)
82

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

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

    
111
nodist_pkgpython_PYTHON = \
112
	lib/_autoconf.py
113

    
114
noinst_PYTHON = \
115
	lib/build/__init__.py
116

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

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

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

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

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

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

    
188
masterd_PYTHON = \
189
	lib/masterd/__init__.py \
190
	lib/masterd/instance.py
191

    
192
impexpd_PYTHON = \
193
	lib/impexpd/__init__.py
194

    
195
watcher_PYTHON = \
196
	lib/watcher/__init__.py
197

    
198
server_PYTHON = \
199
	lib/server/__init__.py \
200
	lib/server/confd.py \
201
	lib/server/masterd.py \
202
	lib/server/noded.py \
203
	lib/server/rapi.py
204

    
205
docrst = \
206
	doc/admin.rst \
207
	doc/design-2.0.rst \
208
	doc/design-2.1.rst \
209
	doc/design-2.2.rst \
210
	doc/design-2.3.rst \
211
	doc/design-oob.rst \
212
	doc/cluster-merge.rst \
213
	doc/devnotes.rst \
214
	doc/glossary.rst \
215
	doc/hooks.rst \
216
	doc/iallocator.rst \
217
	doc/index.rst \
218
	doc/install-quick.rst \
219
	doc/install.rst \
220
	doc/locking.rst \
221
	doc/move-instance.rst \
222
	doc/news.rst \
223
	doc/rapi.rst \
224
	doc/security.rst \
225
	doc/walkthrough.rst
226

    
227
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
228

    
229
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
230
	$(RUN_IN_TEMPDIR) | doc/html/.dir
231
	@test -n "$(SPHINX)" || \
232
	    { echo 'sphinx-build' not found during configure; exit 1; }
233
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
234
	    -d . \
235
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
236
	    -D release="$(PACKAGE_VERSION)" \
237
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
238
	rm -f doc/html/.buildinfo doc/html/objects.inv
239
	touch $@
240

    
241
doc/html: doc/html/index.html
242

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

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

    
259
docdot = \
260
	doc/arch-2.0.dot \
261
	doc/design-2.1-lock-acquire.dot \
262
	doc/design-2.1-lock-release.dot
263

    
264
docpng = $(patsubst %.dot,%.png,$(docdot))
265

    
266
# Things to build but not to install (add it to EXTRA_DIST if it should be
267
# distributed)
268
noinst_DATA = \
269
	devel/upload \
270
	doc/html \
271
	doc/examples/bash_completion \
272
	doc/examples/ganeti.cron \
273
	doc/examples/ganeti.initd \
274
	doc/examples/gnt-config-backup \
275
	doc/examples/hooks/ipsec \
276
	$(manhtml)
277

    
278
gnt_scripts = \
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
PYTHON_BOOTSTRAP = \
288
	daemons/ganeti-confd \
289
	daemons/ganeti-masterd \
290
	daemons/ganeti-noded \
291
	daemons/ganeti-watcher \
292
	daemons/ganeti-rapi \
293
	scripts/gnt-backup \
294
	scripts/gnt-cluster \
295
	scripts/gnt-debug \
296
	scripts/gnt-instance \
297
	scripts/gnt-job \
298
	scripts/gnt-node \
299
	scripts/gnt-os
300

    
301
dist_sbin_SCRIPTS =
302

    
303
nodist_sbin_SCRIPTS = \
304
	$(PYTHON_BOOTSTRAP) \
305
	daemons/ganeti-cleaner
306

    
307
dist_tools_SCRIPTS = \
308
	tools/burnin \
309
	tools/cfgshell \
310
	tools/cfgupgrade \
311
	tools/cfgupgrade12 \
312
	tools/cluster-merge \
313
	tools/lvmstrap \
314
	tools/move-instance \
315
	tools/setup-ssh \
316
	tools/sanitize-config
317

    
318
pkglib_python_scripts = \
319
	daemons/import-export \
320
	tools/check-cert-expired
321

    
322
pkglib_SCRIPTS = \
323
	daemons/daemon-util \
324
	daemons/ensure-dirs \
325
	$(pkglib_python_scripts)
326

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

    
379
man_MANS = \
380
	man/ganeti.7 \
381
	man/ganeti-cleaner.8 \
382
	man/ganeti-confd.8 \
383
	man/ganeti-masterd.8 \
384
	man/ganeti-noded.8 \
385
	man/ganeti-os-interface.7 \
386
	man/ganeti-rapi.8 \
387
	man/ganeti-watcher.8 \
388
	man/gnt-backup.8 \
389
	man/gnt-cluster.8 \
390
	man/gnt-debug.8 \
391
	man/gnt-instance.8 \
392
	man/gnt-job.8 \
393
	man/gnt-node.8 \
394
	man/gnt-os.8
395

    
396
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
397
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
398
maninput = \
399
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
400
	$(patsubst %.html,%.html.in,$(manhtml))
401

    
402
TEST_FILES = \
403
	test/data/bdev-drbd-8.0.txt \
404
	test/data/bdev-drbd-8.3.txt \
405
	test/data/bdev-drbd-disk.txt \
406
	test/data/bdev-drbd-net-ip4.txt \
407
	test/data/bdev-drbd-net-ip6.txt \
408
	test/data/cert1.pem \
409
	test/data/proc_drbd8.txt \
410
	test/data/proc_drbd80-emptyline.txt \
411
	test/data/proc_drbd83.txt \
412
	test/data/sys_drbd_usermode_helper.txt \
413
	test/import-export_unittest-helper
414

    
415
python_tests = \
416
	test/ganeti.asyncnotifier_unittest.py \
417
	test/ganeti.backend_unittest.py \
418
	test/ganeti.bdev_unittest.py \
419
	test/ganeti.cli_unittest.py \
420
	test/ganeti.daemon_unittest.py \
421
	test/ganeti.cmdlib_unittest.py \
422
	test/ganeti.compat_unittest.py \
423
	test/ganeti.confd.client_unittest.py \
424
	test/ganeti.config_unittest.py \
425
	test/ganeti.constants_unittest.py \
426
	test/ganeti.errors_unittest.py \
427
	test/ganeti.hooks_unittest.py \
428
	test/ganeti.http_unittest.py \
429
	test/ganeti.hypervisor.hv_kvm_unittest.py \
430
	test/ganeti.impexpd_unittest.py \
431
	test/ganeti.jqueue_unittest.py \
432
	test/ganeti.locking_unittest.py \
433
	test/ganeti.luxi_unittest.py \
434
	test/ganeti.masterd.instance_unittest.py \
435
	test/ganeti.mcpu_unittest.py \
436
	test/ganeti.netutils_unittest.py \
437
	test/ganeti.objects_unittest.py \
438
	test/ganeti.opcodes_unittest.py \
439
	test/ganeti.rapi.client_unittest.py \
440
	test/ganeti.rapi.resources_unittest.py \
441
	test/ganeti.rapi.rlib2_unittest.py \
442
	test/ganeti.rpc_unittest.py \
443
	test/ganeti.runtime_unittest.py \
444
	test/ganeti.serializer_unittest.py \
445
	test/ganeti.ssh_unittest.py \
446
	test/ganeti.uidpool_unittest.py \
447
	test/ganeti.utils_unittest.py \
448
	test/ganeti.utils_mlockall_unittest.py \
449
	test/ganeti.workerpool_unittest.py \
450
	test/cfgupgrade_unittest.py \
451
	test/docs_unittest.py \
452
	test/tempfile_fork_unittest.py
453

    
454
dist_TESTS = \
455
	test/check-cert-expired_unittest.bash \
456
	test/daemon-util_unittest.bash \
457
	test/ganeti-cleaner_unittest.bash \
458
	test/import-export_unittest.bash \
459
	$(python_tests)
460

    
461
nodist_TESTS =
462

    
463
TESTS = $(dist_TESTS) $(nodist_TESTS)
464

    
465
# Environment for all tests
466
PLAIN_TESTS_ENVIRONMENT = \
467
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
468

    
469
# Environment for tests run by automake
470
TESTS_ENVIRONMENT = \
471
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
472

    
473
all_python_code = \
474
	$(dist_sbin_SCRIPTS) \
475
	$(dist_tools_SCRIPTS) \
476
	$(pkglib_python_scripts) \
477
	$(python_tests) \
478
	$(pkgpython_PYTHON) \
479
	$(client_PYTHON) \
480
	$(hypervisor_PYTHON) \
481
	$(rapi_PYTHON) \
482
	$(server_PYTHON) \
483
	$(http_PYTHON) \
484
	$(confd_PYTHON) \
485
	$(masterd_PYTHON) \
486
	$(impexpd_PYTHON) \
487
	$(watcher_PYTHON) \
488
	$(noinst_PYTHON)
489

    
490
srclink_files = \
491
	man/footer.sgml \
492
	test/check-cert-expired_unittest.bash \
493
	test/daemon-util_unittest.bash \
494
	test/ganeti-cleaner_unittest.bash \
495
	test/import-export_unittest.bash \
496
	$(all_python_code)
497

    
498
check_python_code = \
499
	$(BUILD_BASH_COMPLETION) \
500
	$(all_python_code)
501

    
502
lint_python_code = \
503
	ganeti \
504
	ganeti/http/server.py \
505
	$(dist_sbin_SCRIPTS) \
506
	$(dist_tools_SCRIPTS) \
507
	$(pkglib_python_scripts) \
508
	$(BUILD_BASH_COMPLETION) \
509
	$(PYTHON_BOOTSTRAP)
510

    
511
test/daemon-util_unittest.bash: daemons/daemon-util
512

    
513
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
514

    
515
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
516
	sed -f $(REPLACE_VARS_SED) < $< > $@
517
	chmod u+x $@
518

    
519
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
520
	sed -f $(REPLACE_VARS_SED) < $< > $@
521
	chmod +x $@
522

    
523
doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
524
	sed -f $(REPLACE_VARS_SED) < $< > $@
525

    
526
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
527
	sed -f $(REPLACE_VARS_SED) < $< > $@
528

    
529
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
530
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
531
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
532

    
533
doc/%.png: doc/%.dot
534
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
535
	$(DOT) -Tpng -o $@ $<
536

    
537
man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
538
	@test -n "$(DOCBOOK2MAN)" || \
539
	  { echo 'docbook2man' not found during configure; exit 1; }
540
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $(notdir $(@:.in=)) $@
541
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
542

    
543
man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
544
	@test -n "$(DOCBOOK2HTML)" || \
545
	  { echo 'docbook2html' not found during configure; exit 1; }
546
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
547

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

    
551
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
552
	sed -f $(REPLACE_VARS_SED) < $< > $@
553

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

    
557
vcs-version:
558
	if test -d .git; then \
559
	  git describe > $@; \
560
	elif test ! -f $@ ; then \
561
	  echo "Cannot auto-generate $@ file"; exit 1; \
562
	fi
563

    
564
.PHONY: regen-vcs-version
565
regen-vcs-version:
566
	set -e; \
567
	cd $(srcdir); \
568
	if test -d .git; then \
569
	  rm -f vcs-version; \
570
	  $(MAKE) vcs-version; \
571
	fi
572

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

    
629
$(REPLACE_VARS_SED): Makefile
630
	set -e; \
631
	{ echo 's#@PREFIX@#$(prefix)#g'; \
632
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
633
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
634
	  echo 's#@BINDIR@#$(bindir)#g'; \
635
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
636
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
637
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
638
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
639
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
640
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
641
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
642
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
643
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
644
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
645
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
646
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
647
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
648
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
649
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
650
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
651
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
652
	} > $@
653

    
654
# Using deferred evaluation
655
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
656
daemons/ganeti-watcher: MODULE = ganeti.watcher
657
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
658

    
659
$(PYTHON_BOOTSTRAP): Makefile | $(all_dirfiles)
660
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
661
	set -e; \
662
	{ echo '#!/usr/bin/python'; \
663
	  echo '# This file is automatically generated, do not edit!'; \
664
	  echo "# Edit $(MODULE) instead."; \
665
	  echo; \
666
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
667
	  echo; \
668
	  echo '# pylint: disable-msg=C0103'; \
669
	  echo '# C0103: Invalid name'; \
670
	  echo; \
671
	  echo 'import sys'; \
672
	  echo 'import $(MODULE) as main'; \
673
	  echo; \
674
	  echo '# Temporarily alias commands until bash completion'; \
675
	  echo '# generator is changed'; \
676
	  echo 'if hasattr(main, "commands"):'; \
677
		echo '  commands = main.commands # pylint: disable-msg=E1101'; \
678
	  echo; \
679
	  echo 'if __name__ == "__main__":'; \
680
	  echo '  sys.exit(main.Main())'; \
681
	} > $@
682
	chmod u+x $@
683

    
684
# We need to create symlinks because "make distcheck" will not install Python
685
# files when building.
686
stamp-srclinks: Makefile | $(all_dirfiles)
687
	set -e; \
688
	for i in $(srclink_files); do \
689
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
690
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
691
		fi; \
692
	done
693
	touch $@
694

    
695
.PHONY: ganeti
696
ganeti:
697
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
698

    
699
.PHONY: check-dirs
700
check-dirs: $(BUILT_SOURCES)
701
	@set -e; \
702
	find . -type d \( \( -name . \) -o \( \
703
		-name .git -o \
704
		-name autom4te.cache \
705
		\) -prune -o -print \) | { \
706
		error=; \
707
		while read dir; do \
708
			case "$$dir" in \
709
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
710
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
711
			esac; \
712
		done; \
713
		for dir in $(DIRS); do \
714
			if ! test -d "$$dir"; then \
715
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
716
				error=1; \
717
			fi \
718
		done; \
719
		if test -n "$$error"; then exit 1; else exit 0; fi; \
720
	}
721

    
722
check-local: check-dirs
723
	$(CHECK_PYTHON_CODE) $(check_python_code)
724

    
725
.PHONY: lint
726
lint: $(BUILT_SOURCES)
727
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
728
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
729

    
730
# a dist hook rule for updating the vcs-version file; this is
731
# hardcoded due to where it needs to build the file...
732
dist-hook:
733
	$(MAKE) regen-vcs-version && \
734
	rm -f $(top_distdir)/vcs-version && \
735
	cp -p $(srcdir)/vcs-version $(top_distdir)
736
	rm $(top_distdir)/doc/html/.dir
737

    
738
# a distcheck hook rule for catching revision control directories
739
distcheck-hook:
740
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
741
		echo "Found revision control files in final archive." 1>&2; \
742
		exit 1; \
743
	fi
744
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
745
		echo "Found Python byte code in final archive." 1>&2; \
746
		exit 1; \
747
	fi
748
	if find $(top_distdir) -name '*~' | grep .; then \
749
		echo "Found backup files in final archive." 1>&2; \
750
		exit 1; \
751
	fi
752
	if test -n "$(BUILD_RELEASE)" && \
753
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
754
		echo "Found unreleased version in NEWS." >&2; \
755
		exit 1; \
756
	fi
757

    
758
# When building a release, stricter checks should be used
759
distcheck-release: export BUILD_RELEASE = 1
760
distcheck-release: distcheck
761

    
762
install-exec-local:
763
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
764
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
765
	  "$(DESTDIR)${localstatedir}/run/ganeti"
766

    
767
# To avoid conflicts between directory names and other targets, a file inside
768
# the directory is used to ensure its existence.
769
%.dir:
770
	@mkdir_p@ $* && touch $@
771

    
772
.PHONY: apidoc
773
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
774
	$(RUN_IN_TEMPDIR) epydoc -v \
775
		--conf $(CURDIR)/epydoc.conf \
776
		--output $(CURDIR)/doc/api
777

    
778
.PHONY: TAGS
779
TAGS: $(BUILT_SOURCES)
780
	rm -f TAGS
781
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
782
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
783
	  -path './qa/*.py' | \
784
	  etags -l python -
785

    
786
.PHONY: coverage
787
coverage: $(BUILT_SOURCES) $(python_tests)
788
	set -e; \
789
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
790
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
791
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
792
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
793
	$(python_tests)
794

    
795
commit-check: distcheck lint apidoc
796

    
797
-include ./Makefile.local
798

    
799
# vim: set noet :