Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 5c9c0e0e

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/confd.py \
201
	lib/server/masterd.py
202

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

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

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

    
238
doc/html: doc/html/index.html
239

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

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

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

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

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

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

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

    
296
dist_sbin_SCRIPTS = \
297
	daemons/ganeti-noded \
298
	daemons/ganeti-rapi
299

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

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

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

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

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

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

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

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

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

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

    
458
nodist_TESTS =
459

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
790
commit-check: distcheck lint apidoc
791

    
792
-include ./Makefile.local
793

    
794
# vim: set noet :