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