Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 899c4d2c

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

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

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

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

    
236
doc/html: doc/html/index.html
237

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

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

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

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

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

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

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

    
292
dist_sbin_SCRIPTS = \
293
	daemons/ganeti-noded \
294
	daemons/ganeti-masterd \
295
	daemons/ganeti-confd \
296
	daemons/ganeti-rapi
297

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

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

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

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

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

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

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

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

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

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

    
456
nodist_TESTS =
457

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
788
commit-check: distcheck lint apidoc
789

    
790
-include ./Makefile.local
791

    
792
# vim: set noet :