Merge branch 'devel-2.3'
[ganeti-local] / Makefile.am
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 BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
14 RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
15 CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
16 CHECK_MAN = $(top_srcdir)/autotools/check-man
17 CHECK_VERSION = $(top_srcdir)/autotools/check-version
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/qlang.py \
143         lib/query.py \
144         lib/rpc.py \
145         lib/runtime.py \
146         lib/serializer.py \
147         lib/ssconf.py \
148         lib/ssh.py \
149         lib/storage.py \
150         lib/utils.py \
151         lib/uidpool.py \
152         lib/workerpool.py
153
154 client_PYTHON = \
155         lib/client/__init__.py \
156         lib/client/gnt_backup.py \
157         lib/client/gnt_cluster.py \
158         lib/client/gnt_debug.py \
159         lib/client/gnt_instance.py \
160         lib/client/gnt_job.py \
161         lib/client/gnt_node.py \
162         lib/client/gnt_os.py
163
164 hypervisor_PYTHON = \
165         lib/hypervisor/__init__.py \
166         lib/hypervisor/hv_base.py \
167         lib/hypervisor/hv_chroot.py \
168         lib/hypervisor/hv_fake.py \
169         lib/hypervisor/hv_kvm.py \
170         lib/hypervisor/hv_lxc.py \
171         lib/hypervisor/hv_xen.py
172
173 rapi_PYTHON = \
174         lib/rapi/__init__.py \
175         lib/rapi/baserlib.py \
176         lib/rapi/client.py \
177         lib/rapi/client_utils.py \
178         lib/rapi/connector.py \
179         lib/rapi/rlib2.py
180
181 http_PYTHON = \
182         lib/http/__init__.py \
183         lib/http/auth.py \
184         lib/http/client.py \
185         lib/http/server.py
186
187 confd_PYTHON = \
188         lib/confd/__init__.py \
189         lib/confd/client.py \
190         lib/confd/querylib.py \
191         lib/confd/server.py
192
193 masterd_PYTHON = \
194         lib/masterd/__init__.py \
195         lib/masterd/instance.py
196
197 impexpd_PYTHON = \
198         lib/impexpd/__init__.py
199
200 watcher_PYTHON = \
201         lib/watcher/__init__.py
202
203 server_PYTHON = \
204         lib/server/__init__.py \
205         lib/server/confd.py \
206         lib/server/masterd.py \
207         lib/server/noded.py \
208         lib/server/rapi.py
209
210 docrst = \
211         doc/admin.rst \
212         doc/design-2.0.rst \
213         doc/design-2.1.rst \
214         doc/design-2.2.rst \
215         doc/design-2.3.rst \
216         doc/design-oob.rst \
217         doc/design-query2.rst \
218         doc/cluster-merge.rst \
219         doc/devnotes.rst \
220         doc/glossary.rst \
221         doc/hooks.rst \
222         doc/iallocator.rst \
223         doc/index.rst \
224         doc/install-quick.rst \
225         doc/install.rst \
226         doc/locking.rst \
227         doc/move-instance.rst \
228         doc/news.rst \
229         doc/rapi.rst \
230         doc/security.rst \
231         doc/walkthrough.rst
232
233 $(RUN_IN_TEMPDIR): | $(all_dirfiles)
234
235 doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
236         $(RUN_IN_TEMPDIR)
237         @test -n "$(SPHINX)" || \
238             { echo 'sphinx-build' not found during configure; exit 1; }
239         @mkdir_p@ $(dir $@)
240         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
241             -d . \
242             -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
243             -D release="$(PACKAGE_VERSION)" \
244             $(abs_top_srcdir)/doc $(CURDIR)/doc/html
245         rm -f doc/html/.buildinfo doc/html/objects.inv
246         touch $@
247
248 doc/html: doc/html/index.html
249
250 doc/news.rst: NEWS
251         set -e; \
252         { echo '.. This file is automatically updated at build time from $<.'; \
253           echo '.. Do not edit.'; \
254           echo; \
255           cat $<; \
256         } > $@
257
258 doc/install-quick.rst: INSTALL
259         set -e; \
260         { echo '.. This file is automatically updated at build time from $<.'; \
261           echo '.. Do not edit.'; \
262           echo; \
263           cat $<; \
264         } > $@
265
266 docdot = \
267         doc/arch-2.0.dot \
268         doc/design-2.1-lock-acquire.dot \
269         doc/design-2.1-lock-release.dot
270
271 docpng = $(patsubst %.dot,%.png,$(docdot))
272
273 # Things to build but not to install (add it to EXTRA_DIST if it should be
274 # distributed)
275 noinst_DATA = \
276         devel/upload \
277         doc/html \
278         doc/examples/bash_completion \
279         doc/examples/ganeti.cron \
280         doc/examples/ganeti.initd \
281         doc/examples/gnt-config-backup \
282         doc/examples/hooks/ipsec \
283         $(manhtml)
284
285 gnt_scripts = \
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 PYTHON_BOOTSTRAP = \
295         daemons/ganeti-confd \
296         daemons/ganeti-masterd \
297         daemons/ganeti-noded \
298         daemons/ganeti-watcher \
299         daemons/ganeti-rapi \
300         scripts/gnt-backup \
301         scripts/gnt-cluster \
302         scripts/gnt-debug \
303         scripts/gnt-instance \
304         scripts/gnt-job \
305         scripts/gnt-node \
306         scripts/gnt-os
307
308 dist_sbin_SCRIPTS =
309
310 nodist_sbin_SCRIPTS = \
311         $(PYTHON_BOOTSTRAP) \
312         daemons/ganeti-cleaner
313
314 dist_tools_SCRIPTS = \
315         tools/burnin \
316         tools/cfgshell \
317         tools/cfgupgrade \
318         tools/cfgupgrade12 \
319         tools/cluster-merge \
320         tools/lvmstrap \
321         tools/move-instance \
322         tools/setup-ssh \
323         tools/sanitize-config
324
325 pkglib_python_scripts = \
326         daemons/import-export \
327         tools/check-cert-expired
328
329 pkglib_SCRIPTS = \
330         daemons/daemon-util \
331         daemons/ensure-dirs \
332         $(pkglib_python_scripts)
333
334 EXTRA_DIST = \
335         NEWS \
336         pylintrc \
337         autotools/build-bash-completion \
338         autotools/check-python-code \
339         autotools/check-man \
340         autotools/check-tar \
341         autotools/check-version \
342         autotools/gen-coverage \
343         autotools/testrunner \
344         $(RUN_IN_TEMPDIR) \
345         daemons/daemon-util.in \
346         daemons/ensure-dirs.in \
347         daemons/ganeti-cleaner.in \
348         $(pkglib_python_scripts) \
349         devel/upload.in \
350         $(docdot) \
351         $(docpng) \
352         $(docrst) \
353         doc/conf.py \
354         doc/html \
355         doc/examples/ganeti.initd.in \
356         doc/examples/ganeti.cron.in \
357         doc/examples/gnt-config-backup.in \
358         doc/examples/dumb-allocator \
359         doc/examples/ganeti.default \
360         doc/examples/ganeti.default-debug \
361         doc/examples/hooks/ethers \
362         doc/examples/hooks/ipsec.in \
363         doc/examples/gnt-debug/README \
364         doc/examples/gnt-debug/delay0.json \
365         doc/examples/gnt-debug/delay50.json \
366         test/testutils.py \
367         test/mocks.py \
368         $(dist_TESTS) \
369         $(TEST_FILES) \
370         man/footer.rst \
371         $(manrst) \
372         $(maninput) \
373         qa/ganeti-qa.py \
374         qa/qa-sample.json \
375         qa/qa_cluster.py \
376         qa/qa_config.py \
377         qa/qa_daemon.py \
378         qa/qa_env.py \
379         qa/qa_error.py \
380         qa/qa_instance.py \
381         qa/qa_node.py \
382         qa/qa_os.py \
383         qa/qa_rapi.py \
384         qa/qa_tags.py \
385         qa/qa_utils.py
386
387 man_MANS = \
388         man/ganeti.7 \
389         man/ganeti-cleaner.8 \
390         man/ganeti-confd.8 \
391         man/ganeti-masterd.8 \
392         man/ganeti-noded.8 \
393         man/ganeti-os-interface.7 \
394         man/ganeti-rapi.8 \
395         man/ganeti-watcher.8 \
396         man/gnt-backup.8 \
397         man/gnt-cluster.8 \
398         man/gnt-debug.8 \
399         man/gnt-instance.8 \
400         man/gnt-job.8 \
401         man/gnt-node.8 \
402         man/gnt-os.8
403
404 manrst = $(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS)))
405 manhtml = $(patsubst %.rst,%.html,$(manrst))
406 maninput = \
407         $(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
408         $(patsubst %.html,%.html.in,$(manhtml)) \
409         man/footer.man man/footer.html
410
411 TEST_FILES = \
412         test/data/bdev-drbd-8.0.txt \
413         test/data/bdev-drbd-8.3.txt \
414         test/data/bdev-drbd-disk.txt \
415         test/data/bdev-drbd-net-ip4.txt \
416         test/data/bdev-drbd-net-ip6.txt \
417         test/data/cert1.pem \
418         test/data/proc_drbd8.txt \
419         test/data/proc_drbd80-emptyline.txt \
420         test/data/proc_drbd83.txt \
421         test/data/sys_drbd_usermode_helper.txt \
422         test/import-export_unittest-helper
423
424 python_tests = \
425         test/ganeti.asyncnotifier_unittest.py \
426         test/ganeti.backend_unittest.py \
427         test/ganeti.bdev_unittest.py \
428         test/ganeti.cli_unittest.py \
429         test/ganeti.daemon_unittest.py \
430         test/ganeti.cmdlib_unittest.py \
431         test/ganeti.compat_unittest.py \
432         test/ganeti.confd.client_unittest.py \
433         test/ganeti.config_unittest.py \
434         test/ganeti.constants_unittest.py \
435         test/ganeti.errors_unittest.py \
436         test/ganeti.hooks_unittest.py \
437         test/ganeti.http_unittest.py \
438         test/ganeti.hypervisor_unittest.py \
439         test/ganeti.hypervisor.hv_kvm_unittest.py \
440         test/ganeti.impexpd_unittest.py \
441         test/ganeti.jqueue_unittest.py \
442         test/ganeti.locking_unittest.py \
443         test/ganeti.luxi_unittest.py \
444         test/ganeti.masterd.instance_unittest.py \
445         test/ganeti.mcpu_unittest.py \
446         test/ganeti.netutils_unittest.py \
447         test/ganeti.objects_unittest.py \
448         test/ganeti.opcodes_unittest.py \
449         test/ganeti.qlang_unittest.py \
450         test/ganeti.query_unittest.py \
451         test/ganeti.rapi.client_unittest.py \
452         test/ganeti.rapi.resources_unittest.py \
453         test/ganeti.rapi.rlib2_unittest.py \
454         test/ganeti.rpc_unittest.py \
455         test/ganeti.runtime_unittest.py \
456         test/ganeti.serializer_unittest.py \
457         test/ganeti.ssh_unittest.py \
458         test/ganeti.uidpool_unittest.py \
459         test/ganeti.utils_unittest.py \
460         test/ganeti.utils_mlockall_unittest.py \
461         test/ganeti.workerpool_unittest.py \
462         test/cfgupgrade_unittest.py \
463         test/docs_unittest.py \
464         test/tempfile_fork_unittest.py
465
466 dist_TESTS = \
467         test/check-cert-expired_unittest.bash \
468         test/daemon-util_unittest.bash \
469         test/ganeti-cleaner_unittest.bash \
470         test/import-export_unittest.bash \
471         $(python_tests)
472
473 nodist_TESTS =
474
475 TESTS = $(dist_TESTS) $(nodist_TESTS)
476
477 # Environment for all tests
478 PLAIN_TESTS_ENVIRONMENT = \
479         PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
480
481 # Environment for tests run by automake
482 TESTS_ENVIRONMENT = \
483         $(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
484
485 all_python_code = \
486         $(dist_sbin_SCRIPTS) \
487         $(dist_tools_SCRIPTS) \
488         $(pkglib_python_scripts) \
489         $(python_tests) \
490         $(pkgpython_PYTHON) \
491         $(client_PYTHON) \
492         $(hypervisor_PYTHON) \
493         $(rapi_PYTHON) \
494         $(server_PYTHON) \
495         $(http_PYTHON) \
496         $(confd_PYTHON) \
497         $(masterd_PYTHON) \
498         $(impexpd_PYTHON) \
499         $(watcher_PYTHON) \
500         $(noinst_PYTHON)
501
502 srclink_files = \
503         man/footer.rst \
504         test/check-cert-expired_unittest.bash \
505         test/daemon-util_unittest.bash \
506         test/ganeti-cleaner_unittest.bash \
507         test/import-export_unittest.bash \
508         $(all_python_code)
509
510 check_python_code = \
511         $(BUILD_BASH_COMPLETION) \
512         $(all_python_code)
513
514 lint_python_code = \
515         ganeti \
516         ganeti/http/server.py \
517         $(dist_sbin_SCRIPTS) \
518         $(dist_tools_SCRIPTS) \
519         $(pkglib_python_scripts) \
520         $(BUILD_BASH_COMPLETION) \
521         $(PYTHON_BOOTSTRAP)
522
523 test/daemon-util_unittest.bash: daemons/daemon-util
524
525 test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
526
527 devel/upload: devel/upload.in $(REPLACE_VARS_SED)
528         sed -f $(REPLACE_VARS_SED) < $< > $@
529         chmod u+x $@
530
531 daemons/%: daemons/%.in $(REPLACE_VARS_SED)
532         sed -f $(REPLACE_VARS_SED) < $< > $@
533         chmod +x $@
534
535 doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
536         sed -f $(REPLACE_VARS_SED) < $< > $@
537
538 doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
539         sed -f $(REPLACE_VARS_SED) < $< > $@
540
541 doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
542         lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
543         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
544
545 doc/%.png: doc/%.dot
546         @test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
547         $(DOT) -Tpng -o $@ $<
548
549 man/footer.man: man/footer.rst
550         @test -n "$(PANDOC)" || \
551           { echo 'pandoc' not found during configure; exit 1; }
552         $(PANDOC) -f rst -t man -o $@ $<
553
554 man/footer.html: man/footer.rst
555         @test -n "$(PANDOC)" || \
556           { echo 'pandoc' not found during configure; exit 1; }
557         $(PANDOC) -f rst -t html -o $@ $<
558
559 man/%.7.in man/%.8.in: man/%.rst man/footer.man
560         @test -n "$(PANDOC)" || \
561           { echo 'pandoc' not found during configure; exit 1; }
562         $(PANDOC) -s -f rst -t man -A man/footer.man $< | \
563           sed -e 's/\\@/@/g' > $@
564         if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
565
566 man/%.html.in: man/%.rst man/footer.html
567         @test -n "$(PANDOC)" || \
568           { echo 'pandoc' not found during configure; exit 1; }
569         $(PANDOC) -s -f rst -t html -A man/footer.html $< | \
570           sed -e 's/\\@/@/g' > $@
571
572
573 man/%.7: man/%.7.in $(REPLACE_VARS_SED)
574         sed -f $(REPLACE_VARS_SED) < $< > $@
575
576 man/%.8: man/%.8.in $(REPLACE_VARS_SED)
577         sed -f $(REPLACE_VARS_SED) < $< > $@
578
579 man/%.html: man/%.html.in $(REPLACE_VARS_SED)
580         sed -f $(REPLACE_VARS_SED) < $< > $@
581
582 vcs-version:
583         if test -d .git; then \
584           git describe > $@; \
585         elif test ! -f $@ ; then \
586           echo "Cannot auto-generate $@ file"; exit 1; \
587         fi
588
589 .PHONY: regen-vcs-version
590 regen-vcs-version:
591         set -e; \
592         cd $(srcdir); \
593         if test -d .git; then \
594           rm -f vcs-version; \
595           $(MAKE) vcs-version; \
596         fi
597
598 lib/_autoconf.py: Makefile vcs-version | lib/.dir
599         set -e; \
600         VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
601         { echo '# This file is automatically generated, do not edit!'; \
602           echo '#'; \
603           echo ''; \
604           echo '"""Build-time configuration for Ganeti.'; \
605           echo '';\
606           echo 'This file is autogenerated by the build process.'; \
607           echo 'For any changes you need to re-run ./configure (and'; \
608           echo 'not edit by hand).'; \
609           echo ''; \
610           echo '"""'; \
611           echo ''; \
612           echo '# pylint: disable-msg=C0301,C0324'; \
613           echo '# because this is autogenerated, we do not want'; \
614           echo '# style warnings' ; \
615           echo ''; \
616           echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
617           echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
618           echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
619           echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
620           echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
621           echo "VERSION_FULL = '$(VERSION_FULL)'"; \
622           echo "LOCALSTATEDIR = '$(localstatedir)'"; \
623           echo "SYSCONFDIR = '$(sysconfdir)'"; \
624           echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
625           echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
626           echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
627           echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
628           echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
629           echo "XEN_INITRD = '$(XEN_INITRD)'"; \
630           echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
631           echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
632           echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
633           echo "KVM_PATH = '$(KVM_PATH)'"; \
634           echo "SOCAT_PATH = '$(SOCAT)'"; \
635           echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
636           echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
637           echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
638           echo "TOOLSDIR = '$(toolsdir)'"; \
639           echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
640           echo "PKGLIBDIR = '$(pkglibdir)'"; \
641           echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
642           echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
643           echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
644           echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
645           echo "MASTERD_USER = '$(MASTERD_USER)'"; \
646           echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
647           echo "RAPI_USER = '$(RAPI_USER)'"; \
648           echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
649           echo "CONFD_USER = '$(CONFD_USER)'"; \
650           echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
651           echo "NODED_USER = '$(NODED_USER)'"; \
652           echo "VCS_VERSION = '$$VCSVER'"; \
653         } > $@
654
655 $(REPLACE_VARS_SED): Makefile
656         set -e; \
657         { echo 's#@PREFIX@#$(prefix)#g'; \
658           echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
659           echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
660           echo 's#@BINDIR@#$(bindir)#g'; \
661           echo 's#@SBINDIR@#$(sbindir)#g'; \
662           echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
663           echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
664           echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
665           echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
666           echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
667           echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
668           echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
669           echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
670           echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
671           echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
672           echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
673           echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
674           echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
675           echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
676           echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
677           echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
678           echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
679           echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
680         } > $@
681
682 # Using deferred evaluation
683 daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
684 daemons/ganeti-watcher: MODULE = ganeti.watcher
685 scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
686
687 $(PYTHON_BOOTSTRAP): Makefile | $(all_dirfiles)
688         test -n "$(MODULE)" || { echo Missing module; exit 1; }
689         set -e; \
690         { echo '#!/usr/bin/python'; \
691           echo '# This file is automatically generated, do not edit!'; \
692           echo "# Edit $(MODULE) instead."; \
693           echo; \
694           echo '"""Bootstrap script for L{$(MODULE)}"""'; \
695           echo; \
696           echo '# pylint: disable-msg=C0103'; \
697           echo '# C0103: Invalid name'; \
698           echo; \
699           echo 'import sys'; \
700           echo 'import $(MODULE) as main'; \
701           echo; \
702           echo '# Temporarily alias commands until bash completion'; \
703           echo '# generator is changed'; \
704           echo 'if hasattr(main, "commands"):'; \
705                 echo '  commands = main.commands # pylint: disable-msg=E1101'; \
706           echo; \
707           echo 'if __name__ == "__main__":'; \
708           echo '  sys.exit(main.Main())'; \
709         } > $@
710         chmod u+x $@
711
712 # We need to create symlinks because "make distcheck" will not install Python
713 # files when building.
714 stamp-srclinks: Makefile | $(all_dirfiles)
715         set -e; \
716         for i in $(srclink_files); do \
717                 if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
718                         $(LN_S) $(abs_top_srcdir)/$$i $$i; \
719                 fi; \
720         done
721         touch $@
722
723 .PHONY: ganeti
724 ganeti:
725         cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
726
727 .PHONY: check-dirs
728 check-dirs: $(BUILT_SOURCES)
729         @set -e; \
730         find . -type d \( \( -name . \) -o \( \
731                 -name .git -o \
732                 -name autom4te.cache \
733                 \) -prune -o -print \) | { \
734                 error=; \
735                 while read dir; do \
736                         case "$$dir" in \
737                                 $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
738                                 *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
739                         esac; \
740                 done; \
741                 for dir in $(DIRS); do \
742                         if ! test -d "$$dir"; then \
743                                 echo "Directory $$dir listed in DIRS does not exist" >&2; \
744                                 error=1; \
745                         fi \
746                 done; \
747                 if test -n "$$error"; then exit 1; else exit 0; fi; \
748         }
749
750 check-local: check-dirs
751         $(CHECK_PYTHON_CODE) $(check_python_code)
752         $(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
753
754 .PHONY: lint
755 lint: $(BUILT_SOURCES)
756         @test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
757         $(PYLINT) $(LINT_OPTS) $(lint_python_code)
758
759 # a dist hook rule for updating the vcs-version file; this is
760 # hardcoded due to where it needs to build the file...
761 dist-hook:
762         $(MAKE) regen-vcs-version && \
763         rm -f $(top_distdir)/vcs-version && \
764         cp -p $(srcdir)/vcs-version $(top_distdir)
765
766 # a distcheck hook rule for catching revision control directories
767 distcheck-hook:
768         if find $(top_distdir) -name .svn -or -name .git | grep .; then \
769                 echo "Found revision control files in final archive." 1>&2; \
770                 exit 1; \
771         fi
772         if find $(top_distdir) -name '*.py[co]' | grep .; then \
773                 echo "Found Python byte code in final archive." 1>&2; \
774                 exit 1; \
775         fi
776         if find $(top_distdir) -name '*~' | grep .; then \
777                 echo "Found backup files in final archive." 1>&2; \
778                 exit 1; \
779         fi
780 # Empty files or directories should not be distributed. They can cause
781 # unnecessary warnings for packagers. Directories used by automake during
782 # distcheck must be excluded.
783         if find $(top_distdir) -empty -and -not \( \
784                         -path $(top_distdir)/_build -or \
785                         -path $(top_distdir)/_inst \) | grep .; then \
786                 echo "Found empty files or directories in final archive." 1>&2; \
787                 exit 1; \
788         fi
789         if test -n "$(BUILD_RELEASE)" && \
790            grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
791                 echo "Found unreleased version in NEWS." >&2; \
792                 exit 1; \
793         fi
794
795 # When building a release, stricter checks should be used
796 distcheck-release dist-release: export BUILD_RELEASE = 1
797 distcheck-release: distcheck
798
799 dist-release: dist
800         set -e; \
801         for i in $(DIST_ARCHIVES); do \
802                 echo -n "Checking $$i ... "; \
803                 autotools/check-tar < $$i; \
804                 echo OK; \
805         done
806
807 install-exec-local:
808         @mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
809           "$(DESTDIR)${localstatedir}/log/ganeti" \
810           "$(DESTDIR)${localstatedir}/run/ganeti"
811
812 # To avoid conflicts between directory names and other targets, a file inside
813 # the directory is used to ensure its existence.
814 %.dir:
815         @mkdir_p@ $* && touch $@
816
817 .PHONY: apidoc
818 apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
819         $(RUN_IN_TEMPDIR) epydoc -v \
820                 --conf $(CURDIR)/epydoc.conf \
821                 --output $(CURDIR)/doc/api
822
823 .PHONY: TAGS
824 TAGS: $(BUILT_SOURCES)
825         rm -f TAGS
826         find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
827           -path './daemons/ganeti-*' -o -path './tools/*' -o \
828           -path './qa/*.py' | \
829           etags -l python -
830
831 .PHONY: coverage
832 coverage: $(BUILT_SOURCES) $(python_tests)
833         set -e; \
834         COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
835         TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
836         HTML_COVERAGE=$(CURDIR)/doc/coverage \
837         $(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
838         $(python_tests)
839
840 commit-check: distcheck lint apidoc
841
842 -include ./Makefile.local
843
844 # vim: set noet :