Pass debug mode to noded for OS-related calls
[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 hypervisordir = $(pkgpythondir)/hypervisor
21 httpdir = $(pkgpythondir)/http
22 confddir = $(pkgpythondir)/confd
23 rapidir = $(pkgpythondir)/rapi
24 toolsdir = $(pkglibdir)/tools
25 docdir = $(datadir)/doc/$(PACKAGE)
26
27 # Delete output file if an error occurred while building it
28 .DELETE_ON_ERROR:
29
30 DIRS = \
31         autotools \
32         daemons \
33         devel \
34         doc \
35         doc/examples \
36         doc/examples/hooks \
37         lib \
38         lib/build \
39         lib/http \
40         lib/hypervisor \
41         lib/rapi \
42         lib/confd \
43         man \
44         qa \
45         scripts \
46         test \
47         test/data \
48         tools
49
50 MAINTAINERCLEANFILES = \
51         $(docpng) \
52         $(maninput) \
53         doc/install-quick.rst \
54         doc/news.rst
55
56 maintainer-clean-local:
57         rm -rf doc/api doc/html
58
59 CLEANFILES = \
60         autotools/replace_vars.sed \
61         daemons/daemon-util \
62         daemons/ganeti-cleaner \
63         devel/upload \
64         doc/examples/bash_completion \
65         doc/examples/ganeti.initd \
66         doc/examples/ganeti.cron \
67         doc/examples/gnt-config-backup \
68         doc/examples/hooks/ipsec \
69         lib/*.py[co] \
70         lib/build/*.py[co] \
71         lib/http/*.py[co] \
72         lib/hypervisor/*.py[co] \
73         lib/rapi/*.py[co] \
74         $(man_MANS) \
75         $(manhtml) \
76         qa/*.py[co] \
77         test/*.py[co] \
78         stamp-directories \
79         stamp-srclinks \
80         $(nodist_pkgpython_PYTHON)
81
82 BUILT_SOURCES = \
83         ganeti \
84         stamp-srclinks \
85         stamp-directories \
86         lib/_autoconf.py
87
88 nodist_pkgpython_PYTHON = \
89         lib/_autoconf.py
90
91 noinst_PYTHON = \
92         lib/build/__init__.py
93
94 pkgpython_PYTHON = \
95         lib/__init__.py \
96         lib/asyncnotifier.py \
97         lib/backend.py \
98         lib/bdev.py \
99         lib/bootstrap.py \
100         lib/cli.py \
101         lib/cmdlib.py \
102         lib/config.py \
103         lib/constants.py \
104         lib/daemon.py \
105         lib/errors.py \
106         lib/jqueue.py \
107         lib/jstore.py \
108         lib/locking.py \
109         lib/luxi.py \
110         lib/mcpu.py \
111         lib/objects.py \
112         lib/opcodes.py \
113         lib/rpc.py \
114         lib/serializer.py \
115         lib/ssconf.py \
116         lib/ssh.py \
117         lib/storage.py \
118         lib/utils.py \
119         lib/workerpool.py
120
121 hypervisor_PYTHON = \
122         lib/hypervisor/__init__.py \
123         lib/hypervisor/hv_base.py \
124         lib/hypervisor/hv_chroot.py \
125         lib/hypervisor/hv_fake.py \
126         lib/hypervisor/hv_kvm.py \
127         lib/hypervisor/hv_xen.py
128
129 rapi_PYTHON = \
130         lib/rapi/__init__.py \
131         lib/rapi/baserlib.py \
132         lib/rapi/connector.py \
133         lib/rapi/rlib2.py
134
135 http_PYTHON = \
136         lib/http/__init__.py \
137         lib/http/auth.py \
138         lib/http/client.py \
139         lib/http/server.py
140
141 confd_PYTHON = \
142         lib/confd/__init__.py \
143         lib/confd/client.py \
144         lib/confd/server.py \
145         lib/confd/querylib.py
146
147 docrst = \
148         doc/admin.rst \
149         doc/design-2.0.rst \
150         doc/design-2.1.rst \
151         doc/devnotes.rst \
152         doc/glossary.rst \
153         doc/hooks.rst \
154         doc/iallocator.rst \
155         doc/index.rst \
156         doc/install-quick.rst \
157         doc/install.rst \
158         doc/locking.rst \
159         doc/news.rst \
160         doc/rapi.rst \
161         doc/security.rst \
162         doc/walkthrough.rst
163
164 doc/html/.stamp: $(docrst) $(docpng) doc/conf.py configure.ac
165         @test -n "$(SPHINX)" || \
166             { echo 'sphinx-build' not found during configure; exit 1; }
167         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
168             -d . \
169             -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
170             -D release="$(PACKAGE_VERSION)" \
171             $(abs_top_srcdir)/doc $(CURDIR)/doc/html
172         rm -f doc/html/.buildinfo doc/html/objects.inv
173         touch $@
174
175 doc/html: doc/html/.stamp
176
177 doc/news.rst: NEWS
178         set -e; \
179         { echo '.. This file is automatically updated at build time from $<.'; \
180           echo '.. Do not edit.'; \
181           echo; \
182           cat $<; \
183         } > $@
184
185 doc/install-quick.rst: INSTALL
186         set -e; \
187         { echo '.. This file is automatically updated at build time from $<.'; \
188           echo '.. Do not edit.'; \
189           echo; \
190           cat $<; \
191         } > $@
192
193 docdot = \
194         doc/arch-2.0.dot \
195         doc/design-2.1-lock-acquire.dot \
196         doc/design-2.1-lock-release.dot
197
198 docpng = $(patsubst %.dot,%.png,$(docdot))
199
200 # Things to build but not to install (add it to EXTRA_DIST if it should be
201 # distributed)
202 noinst_DATA = \
203         devel/upload \
204         doc/html \
205         doc/examples/bash_completion \
206         doc/examples/ganeti.cron \
207         doc/examples/ganeti.initd \
208         doc/examples/gnt-config-backup \
209         doc/examples/hooks/ipsec \
210         $(manhtml)
211
212 gnt_scripts = \
213         scripts/gnt-backup \
214         scripts/gnt-cluster \
215         scripts/gnt-debug \
216         scripts/gnt-instance \
217         scripts/gnt-job \
218         scripts/gnt-node \
219         scripts/gnt-os
220
221 dist_sbin_SCRIPTS = \
222         daemons/ganeti-noded \
223         daemons/ganeti-watcher \
224         daemons/ganeti-masterd \
225         daemons/ganeti-confd \
226         daemons/ganeti-rapi \
227         $(gnt_scripts)
228
229 nodist_sbin_SCRIPTS = \
230         daemons/ganeti-cleaner
231
232 dist_tools_SCRIPTS = \
233         tools/burnin \
234         tools/cfgshell \
235         tools/cfgupgrade \
236         tools/lvmstrap
237
238 pkglib_SCRIPTS = \
239         daemons/daemon-util
240
241 EXTRA_DIST = \
242         NEWS \
243         pylintrc \
244         autotools/build-bash-completion \
245         autotools/check-python-code \
246         autotools/check-man \
247         autotools/docbook-wrapper \
248         $(RUN_IN_TEMPDIR) \
249         daemons/daemon-util.in \
250         daemons/ganeti-cleaner.in \
251         devel/upload.in \
252         $(docdot) \
253         $(docpng) \
254         $(docrst) \
255         doc/conf.py \
256         doc/html \
257         doc/examples/ganeti.initd.in \
258         doc/examples/ganeti.cron.in \
259         doc/examples/gnt-config-backup.in \
260         doc/examples/dumb-allocator \
261         doc/examples/ganeti.default \
262         doc/examples/ganeti.default-debug \
263         doc/examples/hooks/ethers \
264         doc/examples/hooks/ipsec.in \
265         test/testutils.py \
266         test/mocks.py \
267         $(dist_TESTS) \
268         $(TEST_FILES) \
269         man/footer.sgml \
270         $(mansgml) \
271         $(maninput) \
272         qa/ganeti-qa.py \
273         qa/qa-sample.json \
274         qa/qa_cluster.py \
275         qa/qa_config.py \
276         qa/qa_daemon.py \
277         qa/qa_env.py \
278         qa/qa_error.py \
279         qa/qa_instance.py \
280         qa/qa_node.py \
281         qa/qa_os.py \
282         qa/qa_rapi.py \
283         qa/qa_tags.py \
284         qa/qa_utils.py
285
286 man_MANS = \
287         man/ganeti.7 \
288         man/ganeti-cleaner.8 \
289         man/ganeti-confd.8 \
290         man/ganeti-masterd.8 \
291         man/ganeti-noded.8 \
292         man/ganeti-os-interface.7 \
293         man/ganeti-rapi.8 \
294         man/ganeti-watcher.8 \
295         man/gnt-backup.8 \
296         man/gnt-cluster.8 \
297         man/gnt-debug.8 \
298         man/gnt-instance.8 \
299         man/gnt-job.8 \
300         man/gnt-node.8 \
301         man/gnt-os.8
302
303 mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
304 manhtml = $(patsubst %.sgml,%.html,$(mansgml))
305 maninput = \
306         $(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
307         $(patsubst %.html,%.html.in,$(manhtml))
308
309 TEST_FILES = \
310         test/data/bdev-both.txt \
311         test/data/bdev-8.3-both.txt \
312         test/data/bdev-disk.txt \
313         test/data/bdev-net.txt \
314         test/data/proc_drbd8.txt \
315         test/data/proc_drbd80-emptyline.txt \
316         test/data/proc_drbd83.txt
317
318 dist_TESTS = \
319         test/ganeti.bdev_unittest.py \
320         test/ganeti.cli_unittest.py \
321         test/ganeti.cmdlib_unittest.py \
322         test/ganeti.confd_client_unittest.py \
323         test/ganeti.config_unittest.py \
324         test/ganeti.constants_unittest.py \
325         test/ganeti.hooks_unittest.py \
326         test/ganeti.http_unittest.py \
327         test/ganeti.locking_unittest.py \
328         test/ganeti.mcpu_unittest.py \
329         test/ganeti.objects_unittest.py \
330         test/ganeti.rapi.resources_unittest.py \
331         test/ganeti.serializer_unittest.py \
332         test/ganeti.ssh_unittest.py \
333         test/ganeti.utils_unittest.py \
334         test/ganeti.workerpool_unittest.py \
335         test/docs_unittest.py
336
337 nodist_TESTS =
338
339 TESTS = $(dist_TESTS) $(nodist_TESTS)
340
341 TESTS_ENVIRONMENT = \
342         PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) \
343         $(RUN_IN_TEMPDIR) $(PYTHON)
344
345 all_python_code = \
346         $(dist_sbin_SCRIPTS) \
347         $(dist_tools_SCRIPTS) \
348         $(dist_TESTS) \
349         $(pkgpython_PYTHON) \
350         $(hypervisor_PYTHON) \
351         $(rapi_PYTHON) \
352         $(http_PYTHON) \
353         $(confd_PYTHON) \
354         $(noinst_PYTHON)
355
356 srclink_files = \
357         man/footer.sgml \
358         $(all_python_code)
359
360 check_python_code = \
361         $(BUILD_BASH_COMPLETION) \
362         $(all_python_code)
363
364 lint_python_code = \
365         ganeti \
366         $(dist_sbin_SCRIPTS) \
367         $(dist_tools_SCRIPTS) \
368         $(BUILD_BASH_COMPLETION)
369
370 devel/upload: devel/upload.in $(REPLACE_VARS_SED)
371         sed -f $(REPLACE_VARS_SED) < $< > $@
372         chmod u+x $@
373
374 daemons/%: daemons/%.in \
375                 $(REPLACE_VARS_SED)
376         sed -f $(REPLACE_VARS_SED) < $< > $@
377         chmod +x $@
378
379 doc/examples/%: doc/examples/%.in \
380                 $(REPLACE_VARS_SED)
381         sed -f $(REPLACE_VARS_SED) < $< > $@
382
383 doc/examples/hooks/%: doc/examples/hooks/%.in \
384                 $(REPLACE_VARS_SED)
385         sed -f $(REPLACE_VARS_SED) < $< > $@
386
387 doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
388         lib/cli.py $(gnt_scripts) tools/burnin
389         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
390
391 doc/%.png: doc/%.dot
392         @test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
393         $(DOT) -Tpng -o $@ $<
394
395 man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
396         @test -n "$(DOCBOOK2MAN)" || \
397           { echo 'docbook2man' not found during configure; exit 1; }
398         $(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $(notdir $(@:.in=)) $@
399
400 man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
401         @test -n "$(DOCBOOK2HTML)" || \
402           { echo 'docbook2html' not found during configure; exit 1; }
403         $(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
404
405 man/%.7: man/%.7.in $(REPLACE_VARS_SED)
406         sed -f $(REPLACE_VARS_SED) < $< > $@
407         $(CHECK_MAN) $@
408
409 man/%.8: man/%.8.in $(REPLACE_VARS_SED)
410         sed -f $(REPLACE_VARS_SED) < $< > $@
411         $(CHECK_MAN) $@
412
413 man/%.html: man/%.html.in $(REPLACE_VARS_SED)
414         sed -f $(REPLACE_VARS_SED) < $< > $@
415
416 lib/_autoconf.py: Makefile stamp-directories
417         set -e; \
418         { echo '# This file is automatically generated, do not edit!'; \
419           echo '#'; \
420           echo ''; \
421           echo '"""Build-time configuration for Ganeti.'; \
422           echo '';\
423           echo 'This file is autogenerated by the build process.'; \
424           echo 'For any changes you need to re-run ./configure (and'; \
425           echo 'not edit by hand).'; \
426           echo ''; \
427           echo '"""'; \
428           echo ''; \
429           echo '# pylint: disable-msg=C0301,C0324'; \
430           echo '# because this is autogenerated, we do not want'; \
431           echo '# style warnings' ; \
432           echo ''; \
433           echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
434           echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
435           echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
436           echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
437           echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
438           echo "VERSION_FULL = '$(VERSION_FULL)'"; \
439           echo "LOCALSTATEDIR = '$(localstatedir)'"; \
440           echo "SYSCONFDIR = '$(sysconfdir)'"; \
441           echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
442           echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
443           echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
444           echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
445           echo "XEN_INITRD = '$(XEN_INITRD)'"; \
446           echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
447           echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
448           echo "KVM_PATH = '$(KVM_PATH)'"; \
449           echo "SOCAT_PATH = '$(SOCAT)'"; \
450           echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
451           echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
452           echo "TOOLSDIR = '$(toolsdir)'"; \
453           echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
454           echo "PKGLIBDIR = '$(pkglibdir)'"; \
455           echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
456           echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
457         } > $@
458
459 $(REPLACE_VARS_SED): Makefile
460         set -e; \
461         { echo 's#@PREFIX@#$(prefix)#g'; \
462           echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
463           echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
464           echo 's#@BINDIR@#$(bindir)#g'; \
465           echo 's#@SBINDIR@#$(sbindir)#g'; \
466           echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
467           echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
468           echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
469           echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
470           echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
471           echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
472           echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
473         } > $@
474
475 # We need to create symlinks because "make distcheck" will not install Python
476 # files when building.
477 stamp-srclinks: Makefile stamp-directories
478         set -e; \
479         for i in $(srclink_files); do \
480                 if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
481                         $(LN_S) $(abs_top_srcdir)/$$i $$i; \
482                 fi; \
483         done
484         touch $@
485
486 .PHONY: ganeti
487 ganeti:
488         cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
489
490 check-local:
491         $(CHECK_PYTHON_CODE) $(check_python_code)
492
493 .PHONY: lint
494 lint: ganeti $(BUILT_SOURCES)
495         @test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
496         $(PYLINT) $(LINT_OPTS) $(lint_python_code)
497
498 # a dist hook rule for catching revision control directories
499 distcheck-hook:
500         if find $(top_distdir) -name .svn -or -name .git | grep .; then \
501                 echo "Found revision control files in final archive." 1>&2; \
502                 exit 1; \
503         fi
504         if find $(top_distdir) -name '*.py[co]' | grep .; then \
505                 echo "Found Python byte code in final archive." 1>&2; \
506                 exit 1; \
507         fi
508         if find $(top_distdir) -name '*~' | grep .; then \
509                 echo "Found backup files in final archive." 1>&2; \
510                 exit 1; \
511         fi
512
513 install-exec-local:
514         @mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
515           "$(DESTDIR)${localstatedir}/log/ganeti" \
516           "$(DESTDIR)${localstatedir}/run/ganeti"
517
518 stamp-directories: Makefile
519         @mkdir_p@ $(DIRS)
520         touch $@
521
522 .PHONY: apidoc
523 apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
524         test -e doc/api || mkdir doc/api
525         $(RUN_IN_TEMPDIR) epydoc -v \
526                 --conf $(CURDIR)/epydoc.conf \
527                 --output $(CURDIR)/doc/api
528
529 .PHONY: TAGS
530 TAGS: $(BUILT_SOURCES)
531         rm -f TAGS
532         find . -path './lib/*.py' -o -path 'scripts/gnt-*' -o \
533           -path 'daemons/ganeti-*' -o -path 'tools/*' | \
534           etags -
535
536 # vim: set noet :