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