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