Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 29d91329

History | View | Annotate | Download (20.7 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/masterd.py
201

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

    
223
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
224

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

    
237
doc/html: doc/html/index.html
238

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

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

    
255
docdot = \
256
	doc/arch-2.0.dot \
257
	doc/design-2.1-lock-acquire.dot \
258
	doc/design-2.1-lock-release.dot
259

    
260
docpng = $(patsubst %.dot,%.png,$(docdot))
261

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

    
274
gnt_scripts = \
275
	scripts/gnt-backup \
276
	scripts/gnt-cluster \
277
	scripts/gnt-debug \
278
	scripts/gnt-instance \
279
	scripts/gnt-job \
280
	scripts/gnt-node \
281
	scripts/gnt-os
282

    
283
PYTHON_BOOTSTRAP = \
284
	daemons/ganeti-masterd \
285
	daemons/ganeti-watcher \
286
	scripts/gnt-backup \
287
	scripts/gnt-cluster \
288
	scripts/gnt-debug \
289
	scripts/gnt-instance \
290
	scripts/gnt-job \
291
	scripts/gnt-node \
292
	scripts/gnt-os
293

    
294
dist_sbin_SCRIPTS = \
295
	daemons/ganeti-noded \
296
	daemons/ganeti-confd \
297
	daemons/ganeti-rapi
298

    
299
nodist_sbin_SCRIPTS = \
300
	$(PYTHON_BOOTSTRAP) \
301
	daemons/ganeti-cleaner
302

    
303
dist_tools_SCRIPTS = \
304
	tools/burnin \
305
	tools/cfgshell \
306
	tools/cfgupgrade \
307
	tools/cfgupgrade12 \
308
	tools/cluster-merge \
309
	tools/lvmstrap \
310
	tools/move-instance \
311
	tools/setup-ssh \
312
	tools/sanitize-config
313

    
314
pkglib_python_scripts = \
315
	daemons/import-export \
316
	tools/check-cert-expired
317

    
318
pkglib_SCRIPTS = \
319
	daemons/daemon-util \
320
	daemons/ensure-dirs \
321
	$(pkglib_python_scripts)
322

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

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

    
392
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
393
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
394
maninput = \
395
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
396
	$(patsubst %.html,%.html.in,$(manhtml))
397

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

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

    
450
dist_TESTS = \
451
	test/check-cert-expired_unittest.bash \
452
	test/daemon-util_unittest.bash \
453
	test/ganeti-cleaner_unittest.bash \
454
	test/import-export_unittest.bash \
455
	$(python_tests)
456

    
457
nodist_TESTS =
458

    
459
TESTS = $(dist_TESTS) $(nodist_TESTS)
460

    
461
# Environment for all tests
462
PLAIN_TESTS_ENVIRONMENT = \
463
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
464

    
465
# Environment for tests run by automake
466
TESTS_ENVIRONMENT = \
467
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
468

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

    
486
srclink_files = \
487
	man/footer.sgml \
488
	test/check-cert-expired_unittest.bash \
489
	test/daemon-util_unittest.bash \
490
	test/ganeti-cleaner_unittest.bash \
491
	test/import-export_unittest.bash \
492
	$(all_python_code)
493

    
494
check_python_code = \
495
	$(BUILD_BASH_COMPLETION) \
496
	$(all_python_code)
497

    
498
lint_python_code = \
499
	ganeti \
500
	ganeti/http/server.py \
501
	$(dist_sbin_SCRIPTS) \
502
	$(dist_tools_SCRIPTS) \
503
	$(pkglib_python_scripts) \
504
	$(BUILD_BASH_COMPLETION)
505

    
506
test/daemon-util_unittest.bash: daemons/daemon-util
507

    
508
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
509

    
510
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
511
	sed -f $(REPLACE_VARS_SED) < $< > $@
512
	chmod u+x $@
513

    
514
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
515
	sed -f $(REPLACE_VARS_SED) < $< > $@
516
	chmod +x $@
517

    
518
doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
519
	sed -f $(REPLACE_VARS_SED) < $< > $@
520

    
521
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
522
	sed -f $(REPLACE_VARS_SED) < $< > $@
523

    
524
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
525
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
526
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
527

    
528
doc/%.png: doc/%.dot
529
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
530
	$(DOT) -Tpng -o $@ $<
531

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

    
538
man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
539
	@test -n "$(DOCBOOK2HTML)" || \
540
	  { echo 'docbook2html' not found during configure; exit 1; }
541
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
542

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

    
546
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
547
	sed -f $(REPLACE_VARS_SED) < $< > $@
548

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

    
552
vcs-version:
553
	if test -d .git; then \
554
	  git describe > $@; \
555
	elif test ! -f $@ ; then \
556
	  echo "Cannot auto-generate $@ file"; exit 1; \
557
	fi
558

    
559
.PHONY: regen-vcs-version
560
regen-vcs-version:
561
	set -e; \
562
	cd $(srcdir); \
563
	if test -d .git; then \
564
	  rm -f vcs-version; \
565
	  $(MAKE) vcs-version; \
566
	fi
567

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

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

    
649
# Using deferred evaluation
650
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
651
daemons/ganeti-watcher: MODULE = ganeti.watcher
652
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
653

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

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

    
690
.PHONY: ganeti
691
ganeti:
692
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
693

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

    
717
check-local: check-dirs
718
	$(CHECK_PYTHON_CODE) $(check_python_code)
719

    
720
.PHONY: lint
721
lint: $(BUILT_SOURCES)
722
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
723
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
724

    
725
# a dist hook rule for updating the vcs-version file; this is
726
# hardcoded due to where it needs to build the file...
727
dist-hook:
728
	$(MAKE) regen-vcs-version && \
729
	rm -f $(top_distdir)/vcs-version && \
730
	cp -p $(srcdir)/vcs-version $(top_distdir)
731

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

    
752
# When building a release, stricter checks should be used
753
distcheck-release: export BUILD_RELEASE = 1
754
distcheck-release: distcheck
755

    
756
install-exec-local:
757
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
758
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
759
	  "$(DESTDIR)${localstatedir}/run/ganeti"
760

    
761
# To avoid conflicts between directory names and other targets, a file inside
762
# the directory is used to ensure its existence.
763
%.dir:
764
	@mkdir_p@ $* && touch $@
765

    
766
.PHONY: apidoc
767
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
768
	$(RUN_IN_TEMPDIR) epydoc -v \
769
		--conf $(CURDIR)/epydoc.conf \
770
		--output $(CURDIR)/doc/api
771

    
772
.PHONY: TAGS
773
TAGS: $(BUILT_SOURCES)
774
	rm -f TAGS
775
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
776
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
777
	  -path './qa/*.py' | \
778
	  etags -l python -
779

    
780
.PHONY: coverage
781
coverage: $(BUILT_SOURCES) $(python_tests)
782
	set -e; \
783
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
784
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
785
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
786
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
787
	$(python_tests)
788

    
789
commit-check: distcheck lint apidoc
790

    
791
-include ./Makefile.local
792

    
793
# vim: set noet :