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