Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ e5a246df

History | View | Annotate | Download (21.6 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_DIR_AUTOCREATE = \
61
	scripts \
62
	doc/api \
63
	doc/coverage
64

    
65
BUILDTIME_DIRS = \
66
	$(BUILDTIME_DIR_AUTOCREATE) \
67
	doc/html
68

    
69
DIRCHECK_EXCLUDE = \
70
	$(BUILDTIME_DIRS) \
71
	ganeti-[0-9]*.[0-9]*.[0-9]* \
72
	doc/html/_*
73

    
74
all_dirfiles = $(addsuffix /.dir,$(DIRS) $(BUILDTIME_DIR_AUTOCREATE))
75

    
76
MAINTAINERCLEANFILES = \
77
	$(docpng) \
78
	$(maninput) \
79
	doc/install-quick.rst \
80
	doc/news.rst \
81
	vcs-version
82

    
83
maintainer-clean-local:
84
	rm -rf $(BUILDTIME_DIRS)
85

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

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

    
114
nodist_pkgpython_PYTHON = \
115
	lib/_autoconf.py
116

    
117
noinst_PYTHON = \
118
	lib/build/__init__.py
119

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

    
152
client_PYTHON = \
153
	lib/client/__init__.py \
154
	lib/client/gnt_backup.py \
155
	lib/client/gnt_cluster.py \
156
	lib/client/gnt_debug.py \
157
	lib/client/gnt_instance.py \
158
	lib/client/gnt_job.py \
159
	lib/client/gnt_node.py \
160
	lib/client/gnt_os.py
161

    
162
hypervisor_PYTHON = \
163
	lib/hypervisor/__init__.py \
164
	lib/hypervisor/hv_base.py \
165
	lib/hypervisor/hv_chroot.py \
166
	lib/hypervisor/hv_fake.py \
167
	lib/hypervisor/hv_kvm.py \
168
	lib/hypervisor/hv_lxc.py \
169
	lib/hypervisor/hv_xen.py
170

    
171
rapi_PYTHON = \
172
	lib/rapi/__init__.py \
173
	lib/rapi/baserlib.py \
174
	lib/rapi/client.py \
175
	lib/rapi/client_utils.py \
176
	lib/rapi/connector.py \
177
	lib/rapi/rlib2.py
178

    
179
http_PYTHON = \
180
	lib/http/__init__.py \
181
	lib/http/auth.py \
182
	lib/http/client.py \
183
	lib/http/server.py
184

    
185
confd_PYTHON = \
186
	lib/confd/__init__.py \
187
	lib/confd/client.py \
188
	lib/confd/querylib.py \
189
	lib/confd/server.py
190

    
191
masterd_PYTHON = \
192
	lib/masterd/__init__.py \
193
	lib/masterd/instance.py
194

    
195
impexpd_PYTHON = \
196
	lib/impexpd/__init__.py
197

    
198
watcher_PYTHON = \
199
	lib/watcher/__init__.py
200

    
201
server_PYTHON = \
202
	lib/server/__init__.py \
203
	lib/server/confd.py \
204
	lib/server/masterd.py \
205
	lib/server/noded.py \
206
	lib/server/rapi.py
207

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

    
231
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
232

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

    
246
doc/html: doc/html/index.html
247

    
248
doc/news.rst: NEWS
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
doc/install-quick.rst: INSTALL
257
	set -e; \
258
	{ echo '.. This file is automatically updated at build time from $<.'; \
259
	  echo '.. Do not edit.'; \
260
	  echo; \
261
	  cat $<; \
262
	} > $@
263

    
264
docdot = \
265
	doc/arch-2.0.dot \
266
	doc/design-2.1-lock-acquire.dot \
267
	doc/design-2.1-lock-release.dot
268

    
269
docpng = $(patsubst %.dot,%.png,$(docdot))
270

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

    
283
gnt_scripts = \
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
PYTHON_BOOTSTRAP = \
293
	daemons/ganeti-confd \
294
	daemons/ganeti-masterd \
295
	daemons/ganeti-noded \
296
	daemons/ganeti-watcher \
297
	daemons/ganeti-rapi \
298
	scripts/gnt-backup \
299
	scripts/gnt-cluster \
300
	scripts/gnt-debug \
301
	scripts/gnt-instance \
302
	scripts/gnt-job \
303
	scripts/gnt-node \
304
	scripts/gnt-os
305

    
306
dist_sbin_SCRIPTS =
307

    
308
nodist_sbin_SCRIPTS = \
309
	$(PYTHON_BOOTSTRAP) \
310
	daemons/ganeti-cleaner
311

    
312
dist_tools_SCRIPTS = \
313
	tools/burnin \
314
	tools/cfgshell \
315
	tools/cfgupgrade \
316
	tools/cfgupgrade12 \
317
	tools/cluster-merge \
318
	tools/lvmstrap \
319
	tools/move-instance \
320
	tools/setup-ssh \
321
	tools/sanitize-config
322

    
323
pkglib_python_scripts = \
324
	daemons/import-export \
325
	tools/check-cert-expired
326

    
327
pkglib_SCRIPTS = \
328
	daemons/daemon-util \
329
	daemons/ensure-dirs \
330
	$(pkglib_python_scripts)
331

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

    
385
man_MANS = \
386
	man/ganeti.7 \
387
	man/ganeti-cleaner.8 \
388
	man/ganeti-confd.8 \
389
	man/ganeti-masterd.8 \
390
	man/ganeti-noded.8 \
391
	man/ganeti-os-interface.7 \
392
	man/ganeti-rapi.8 \
393
	man/ganeti-watcher.8 \
394
	man/gnt-backup.8 \
395
	man/gnt-cluster.8 \
396
	man/gnt-debug.8 \
397
	man/gnt-instance.8 \
398
	man/gnt-job.8 \
399
	man/gnt-node.8 \
400
	man/gnt-os.8
401

    
402
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
403
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
404
maninput = \
405
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
406
	$(patsubst %.html,%.html.in,$(manhtml))
407

    
408
TEST_FILES = \
409
	test/data/bdev-drbd-8.0.txt \
410
	test/data/bdev-drbd-8.3.txt \
411
	test/data/bdev-drbd-disk.txt \
412
	test/data/bdev-drbd-net-ip4.txt \
413
	test/data/bdev-drbd-net-ip6.txt \
414
	test/data/cert1.pem \
415
	test/data/proc_drbd8.txt \
416
	test/data/proc_drbd80-emptyline.txt \
417
	test/data/proc_drbd83.txt \
418
	test/data/sys_drbd_usermode_helper.txt \
419
	test/import-export_unittest-helper
420

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

    
460
dist_TESTS = \
461
	test/check-cert-expired_unittest.bash \
462
	test/daemon-util_unittest.bash \
463
	test/ganeti-cleaner_unittest.bash \
464
	test/import-export_unittest.bash \
465
	$(python_tests)
466

    
467
nodist_TESTS =
468

    
469
TESTS = $(dist_TESTS) $(nodist_TESTS)
470

    
471
# Environment for all tests
472
PLAIN_TESTS_ENVIRONMENT = \
473
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
474

    
475
# Environment for tests run by automake
476
TESTS_ENVIRONMENT = \
477
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
478

    
479
all_python_code = \
480
	$(dist_sbin_SCRIPTS) \
481
	$(dist_tools_SCRIPTS) \
482
	$(pkglib_python_scripts) \
483
	$(python_tests) \
484
	$(pkgpython_PYTHON) \
485
	$(client_PYTHON) \
486
	$(hypervisor_PYTHON) \
487
	$(rapi_PYTHON) \
488
	$(server_PYTHON) \
489
	$(http_PYTHON) \
490
	$(confd_PYTHON) \
491
	$(masterd_PYTHON) \
492
	$(impexpd_PYTHON) \
493
	$(watcher_PYTHON) \
494
	$(noinst_PYTHON)
495

    
496
srclink_files = \
497
	man/footer.sgml \
498
	test/check-cert-expired_unittest.bash \
499
	test/daemon-util_unittest.bash \
500
	test/ganeti-cleaner_unittest.bash \
501
	test/import-export_unittest.bash \
502
	$(all_python_code)
503

    
504
check_python_code = \
505
	$(BUILD_BASH_COMPLETION) \
506
	$(all_python_code)
507

    
508
lint_python_code = \
509
	ganeti \
510
	ganeti/http/server.py \
511
	$(dist_sbin_SCRIPTS) \
512
	$(dist_tools_SCRIPTS) \
513
	$(pkglib_python_scripts) \
514
	$(BUILD_BASH_COMPLETION) \
515
	$(PYTHON_BOOTSTRAP)
516

    
517
test/daemon-util_unittest.bash: daemons/daemon-util
518

    
519
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
520

    
521
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
522
	sed -f $(REPLACE_VARS_SED) < $< > $@
523
	chmod u+x $@
524

    
525
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
526
	sed -f $(REPLACE_VARS_SED) < $< > $@
527
	chmod +x $@
528

    
529
doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
530
	sed -f $(REPLACE_VARS_SED) < $< > $@
531

    
532
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
533
	sed -f $(REPLACE_VARS_SED) < $< > $@
534

    
535
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
536
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
537
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
538

    
539
doc/%.png: doc/%.dot
540
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
541
	$(DOT) -Tpng -o $@ $<
542

    
543
man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
544
	@test -n "$(DOCBOOK2MAN)" || \
545
	  { echo 'docbook2man' not found during configure; exit 1; }
546
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $(notdir $(@:.in=)) $@
547
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
548

    
549
man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
550
	@test -n "$(DOCBOOK2HTML)" || \
551
	  { echo 'docbook2html' not found during configure; exit 1; }
552
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
553

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

    
557
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
558
	sed -f $(REPLACE_VARS_SED) < $< > $@
559

    
560
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
561
	sed -f $(REPLACE_VARS_SED) < $< > $@
562

    
563
vcs-version:
564
	if test -d .git; then \
565
	  git describe > $@; \
566
	elif test ! -f $@ ; then \
567
	  echo "Cannot auto-generate $@ file"; exit 1; \
568
	fi
569

    
570
.PHONY: regen-vcs-version
571
regen-vcs-version:
572
	set -e; \
573
	cd $(srcdir); \
574
	if test -d .git; then \
575
	  rm -f vcs-version; \
576
	  $(MAKE) vcs-version; \
577
	fi
578

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

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

    
661
# Using deferred evaluation
662
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
663
daemons/ganeti-watcher: MODULE = ganeti.watcher
664
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
665

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

    
691
# We need to create symlinks because "make distcheck" will not install Python
692
# files when building.
693
stamp-srclinks: Makefile | $(all_dirfiles)
694
	set -e; \
695
	for i in $(srclink_files); do \
696
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
697
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
698
		fi; \
699
	done
700
	touch $@
701

    
702
.PHONY: ganeti
703
ganeti:
704
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
705

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

    
729
check-local: check-dirs
730
	$(CHECK_PYTHON_CODE) $(check_python_code)
731

    
732
.PHONY: lint
733
lint: $(BUILT_SOURCES)
734
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
735
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
736

    
737
# a dist hook rule for updating the vcs-version file; this is
738
# hardcoded due to where it needs to build the file...
739
dist-hook:
740
	$(MAKE) regen-vcs-version && \
741
	rm -f $(top_distdir)/vcs-version && \
742
	cp -p $(srcdir)/vcs-version $(top_distdir)
743

    
744
# a distcheck hook rule for catching revision control directories
745
distcheck-hook:
746
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
747
		echo "Found revision control files in final archive." 1>&2; \
748
		exit 1; \
749
	fi
750
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
751
		echo "Found Python byte code in final archive." 1>&2; \
752
		exit 1; \
753
	fi
754
	if find $(top_distdir) -name '*~' | grep .; then \
755
		echo "Found backup files in final archive." 1>&2; \
756
		exit 1; \
757
	fi
758
# Empty files or directories should not be distributed. They can cause
759
# unnecessary warnings for packagers. Directories used by automake during
760
# distcheck must be excluded.
761
	if find $(top_distdir) -empty -and -not \( \
762
			-path $(top_distdir)/_build -or \
763
			-path $(top_distdir)/_inst \) | grep .; then \
764
		echo "Found empty files or directories in final archive." 1>&2; \
765
		exit 1; \
766
	fi
767
	if test -n "$(BUILD_RELEASE)" && \
768
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
769
		echo "Found unreleased version in NEWS." >&2; \
770
		exit 1; \
771
	fi
772

    
773
# When building a release, stricter checks should be used
774
distcheck-release dist-release: export BUILD_RELEASE = 1
775
distcheck-release: distcheck
776

    
777
dist-release: dist
778
	set -e; \
779
	for i in $(DIST_ARCHIVES); do \
780
		echo -n "Checking $$i ... "; \
781
		autotools/check-tar < $$i; \
782
		echo OK; \
783
	done
784

    
785
install-exec-local:
786
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
787
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
788
	  "$(DESTDIR)${localstatedir}/run/ganeti"
789

    
790
# To avoid conflicts between directory names and other targets, a file inside
791
# the directory is used to ensure its existence.
792
%.dir:
793
	@mkdir_p@ $* && touch $@
794

    
795
.PHONY: apidoc
796
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
797
	$(RUN_IN_TEMPDIR) epydoc -v \
798
		--conf $(CURDIR)/epydoc.conf \
799
		--output $(CURDIR)/doc/api
800

    
801
.PHONY: TAGS
802
TAGS: $(BUILT_SOURCES)
803
	rm -f TAGS
804
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
805
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
806
	  -path './qa/*.py' | \
807
	  etags -l python -
808

    
809
.PHONY: coverage
810
coverage: $(BUILT_SOURCES) $(python_tests)
811
	set -e; \
812
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
813
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
814
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
815
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
816
	$(python_tests)
817

    
818
commit-check: distcheck lint apidoc
819

    
820
-include ./Makefile.local
821

    
822
# vim: set noet :