Remove physical_id field from disk object
[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 # Helper values for calling builtin functions
13 empty :=
14 space := $(empty) $(empty)
15 comma := ,
16
17 # Helper function to strip src/ and test/hs/ from a list
18 strip_hsroot = $(patsubst src/%,%,$(patsubst test/hs/%,%,$(1)))
19
20 # Use bash in order to be able to use pipefail
21 SHELL=/bin/bash
22
23 # Enable colors in shelltest
24 SHELLTESTARGS = "-c"
25
26 ACLOCAL_AMFLAGS = -I autotools
27 BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
28 RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
29 CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
30 CHECK_HEADER = $(top_srcdir)/autotools/check-header
31 CHECK_MAN_DASHES = $(top_srcdir)/autotools/check-man-dashes
32 CHECK_MAN_REFERENCES = $(top_srcdir)/autotools/check-man-references
33 CHECK_MAN_WARNINGS = $(top_srcdir)/autotools/check-man-warnings
34 CHECK_VERSION = $(top_srcdir)/autotools/check-version
35 CHECK_NEWS = $(top_srcdir)/autotools/check-news
36 CHECK_IMPORTS = $(top_srcdir)/autotools/check-imports
37 DOCPP = $(top_srcdir)/autotools/docpp
38 REPLACE_VARS_SED = autotools/replace_vars.sed
39 CONVERT_CONSTANTS = $(top_srcdir)/autotools/convert-constants
40 BUILD_RPC = $(top_srcdir)/autotools/build-rpc
41 SHELL_ENV_INIT = autotools/shell-env-init
42
43 # starting as of Ganeti 2.10, all files are stored in two directories,
44 # with only symbolic links added at other places.
45 #
46 # $(versiondir) contains most of Ganeti and all architecture-dependent files
47 # $(versionedsharedir) contains only architecture-independent files; all python
48 # executables need to go directly to $(versionedsharedir), as all ganeti python
49 # mdules are installed outside the usual python path, i.e., as private modules.
50 #
51 # $(defaultversiondir) and $(defaultversionedsharedir) are the corresponding
52 # directories for "the currently running" version of Ganeti. We never install
53 # there, but all symbolic links go there, rather than directory to $(versiondir)
54 # or $(versionedsharedir). Note that all links to $(default*dir) need to be stable;
55 # so, if some currently architecture-independent executable is replaced by an
56 # architecture-dependent one (and hence has to go under $(versiondir)), add a link
57 # under $(versionedsharedir) but do not change the external links.
58 if USE_VERSION_FULL
59 DIRVERSION=VERSION_FULL
60 else
61 DIRVERSION=$(VERSION_MAJOR).$(VERSION_MINOR)
62 endif
63 versiondir = $(libdir)/ganeti/$(DIRVERSION)
64 defaultversiondir = $(libdir)/ganeti/default
65 versionedsharedir = $(prefix)/share/ganeti/$(DIRVERSION)
66 defaultversionedsharedir = $(prefix)/share/ganeti/default
67
68
69 # Note: these are automake-specific variables, and must be named after
70 # the directory + 'dir' suffix
71 pkglibdir = $(versiondir)$(libdir)/ganeti
72 myexeclibdir = $(pkglibdir)
73 bindir = $(versiondir)$(exec_prefix)/bin
74 sbindir = $(versiondir)$(exec_prefix)/sbin
75 mandir = $(versionedsharedir)$(datarootdir)/man
76 pkgpythondir = $(versionedsharedir)/ganeti
77 gntpythondir = $(versionedsharedir)
78 pkgpython_bindir = $(versionedsharedir)
79 gnt_python_sbindir = $(versionedsharedir)
80 tools_pythondir = $(versionedsharedir)
81
82 clientdir = $(pkgpythondir)/client
83 cmdlibdir = $(pkgpythondir)/cmdlib
84 hypervisordir = $(pkgpythondir)/hypervisor
85 storagedir = $(pkgpythondir)/storage
86 httpdir = $(pkgpythondir)/http
87 masterddir = $(pkgpythondir)/masterd
88 confddir = $(pkgpythondir)/confd
89 rapidir = $(pkgpythondir)/rapi
90 serverdir = $(pkgpythondir)/server
91 watcherdir = $(pkgpythondir)/watcher
92 impexpddir = $(pkgpythondir)/impexpd
93 utilsdir = $(pkgpythondir)/utils
94 toolsdir = $(pkglibdir)/tools
95 iallocatorsdir = $(pkglibdir)/iallocators
96 pytoolsdir = $(pkgpythondir)/tools
97 docdir = $(versiondir)$(datadir)/doc/$(PACKAGE)
98
99 SYMLINK_TARGET_DIRS = \
100         $(sysconfdir)/ganeti \
101         $(libdir)/ganeti/iallocators \
102         $(libdir)/ganeti/tools \
103         $(prefix)/share/ganeti \
104         $(exec_prefix)/bin \
105         $(exec_prefix)/sbin \
106         $(datarootdir)/man/man1 \
107         $(datarootdir)/man/man7 \
108         $(datarootdir)/man/man8
109
110 # Delete output file if an error occurred while building it
111 .DELETE_ON_ERROR:
112
113 HS_DIRS = \
114         src \
115         src/Ganeti \
116         src/Ganeti/Confd \
117         src/Ganeti/Curl \
118         src/Ganeti/Cpu \
119         src/Ganeti/DataCollectors \
120         src/Ganeti/Hs2Py \
121         src/Ganeti/HTools \
122         src/Ganeti/HTools/Backend \
123         src/Ganeti/HTools/Program \
124         src/Ganeti/Hypervisor \
125         src/Ganeti/Hypervisor/Xen \
126         src/Ganeti/Monitoring \
127         src/Ganeti/Query \
128         src/Ganeti/Storage \
129         src/Ganeti/Storage/Diskstats \
130         src/Ganeti/Storage/Drbd \
131         src/Ganeti/Storage/Lvm \
132         test/hs \
133         test/hs/Test \
134         test/hs/Test/Ganeti \
135         test/hs/Test/Ganeti/Storage \
136         test/hs/Test/Ganeti/Storage/Diskstats \
137         test/hs/Test/Ganeti/Storage/Drbd \
138         test/hs/Test/Ganeti/Storage/Lvm \
139         test/hs/Test/Ganeti/Confd \
140         test/hs/Test/Ganeti/HTools \
141         test/hs/Test/Ganeti/HTools/Backend \
142         test/hs/Test/Ganeti/Hypervisor \
143         test/hs/Test/Ganeti/Hypervisor/Xen \
144         test/hs/Test/Ganeti/Query
145
146 # Haskell directories without the roots (src, test/hs)
147 HS_DIRS_NOROOT = $(filter-out src,$(filter-out test/hs,$(HS_DIRS)))
148
149 DIRS = \
150         $(HS_DIRS) \
151         autotools \
152         daemons \
153         devel \
154         devel/data \
155         doc \
156         doc/css \
157         doc/examples \
158         doc/examples/gnt-debug \
159         doc/examples/hooks \
160         doc/users \
161         test/data/htools \
162         test/data/htools/rapi \
163         test/hs/shelltests \
164         test/autotools \
165         lib \
166         lib/build \
167         lib/client \
168         lib/cmdlib \
169         lib/confd \
170         lib/http \
171         lib/hypervisor \
172         lib/impexpd \
173         lib/masterd \
174         lib/rapi \
175         lib/server \
176         lib/storage \
177         lib/tools \
178         lib/utils \
179         lib/watcher \
180         man \
181         qa \
182         test \
183         test/data \
184         test/data/bdev-rbd \
185         test/data/ovfdata \
186         test/data/ovfdata/other \
187         test/py \
188         test/py/cmdlib \
189         test/py/cmdlib/testsupport \
190         tools
191
192 ALL_APIDOC_HS_DIRS = \
193         $(APIDOC_HS_DIR) \
194         $(patsubst %,$(APIDOC_HS_DIR)/%,$(call strip_hsroot,$(HS_DIRS_NOROOT)))
195
196 BUILDTIME_DIR_AUTOCREATE = \
197         scripts \
198         $(APIDOC_DIR) \
199         $(ALL_APIDOC_HS_DIRS) \
200         $(APIDOC_PY_DIR) \
201         $(COVERAGE_DIR) \
202         $(COVERAGE_HS_DIR) \
203         $(COVERAGE_PY_DIR) \
204         .hpc
205
206 BUILDTIME_DIRS = \
207         $(BUILDTIME_DIR_AUTOCREATE) \
208         doc/html \
209         doc/man-html
210
211 DIRCHECK_EXCLUDE = \
212         $(BUILDTIME_DIRS) \
213         ganeti-[0-9]*.[0-9]*.[0-9]* \
214         doc/html/_* \
215         doc/man-html/_* \
216         autom4te.cache
217
218 # some helper vars
219 COVERAGE_DIR = doc/coverage
220 COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
221 COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
222 APIDOC_DIR = doc/api
223 APIDOC_PY_DIR = $(APIDOC_DIR)/py
224 APIDOC_HS_DIR = $(APIDOC_DIR)/hs
225
226 MAINTAINERCLEANFILES = \
227         $(maninput) \
228         doc/install-quick.rst \
229         doc/news.rst \
230         doc/upgrade.rst \
231         vcs-version
232
233 maintainer-clean-local:
234         rm -rf $(BUILDTIME_DIRS)
235
236 CLEANFILES = \
237         $(addsuffix /*.py[co],$(DIRS)) \
238         $(addsuffix /*.hi,$(HS_DIRS)) \
239         $(addsuffix /*.o,$(HS_DIRS)) \
240         $(PYTHON_BOOTSTRAP) \
241         $(gnt_python_sbin_SCRIPTS) \
242         epydoc.conf \
243         $(REPLACE_VARS_SED) \
244         $(SHELL_ENV_INIT) \
245         daemons/daemon-util \
246         daemons/ganeti-cleaner \
247         devel/squeeze-amd64.tar.gz \
248         devel/squeeze-amd64.conf \
249         $(mandocrst) \
250         doc/manpages-enabled.rst \
251         $(BUILT_EXAMPLES) \
252         doc/examples/bash_completion \
253         doc/examples/bash_completion-debug \
254         $(userspecs) \
255         lib/_generated_rpc.py \
256         $(man_MANS) \
257         $(manhtml) \
258         tools/kvm-ifup \
259         tools/vif-ganeti \
260         tools/net-common \
261         tools/users-setup \
262         tools/vcluster-setup \
263         stamp-directories \
264         stamp-srclinks \
265         $(nodist_pkgpython_PYTHON) \
266         $(gnt_scripts) \
267         $(HS_ALL_PROGS) $(HS_BUILT_SRCS) \
268         $(HS_BUILT_TEST_HELPERS) \
269         src/ganeti-confd \
270         src/ganeti-luxid \
271         src/ganeti-mond \
272         src/hs2py-constants \
273         .hpc/*.mix src/*.tix test/hs/*.tix *.tix \
274         doc/hs-lint.html
275
276 GENERATED_FILES = \
277         $(built_base_sources) \
278         $(BUILT_PYTHON_SOURCES) \
279         $(PYTHON_BOOTSTRAP) \
280         $(gnt_python_sbin_SCRIPTS)
281
282 HS_GENERATED_FILES =
283 if WANT_HTOOLS
284 HS_GENERATED_FILES += $(HS_PROGS)
285 if ENABLE_CONFD
286 HS_GENERATED_FILES += src/hconfd src/ganeti-confd src/hluxid src/ganeti-luxid
287 endif
288
289 if ENABLE_MOND
290 HS_GENERATED_FILES += src/ganeti-mond
291 endif
292 endif
293
294 built_base_sources = \
295         stamp-directories \
296         stamp-srclinks
297
298 built_python_base_sources = \
299         lib/_autoconf.py \
300         lib/_constants.py \
301         lib/_vcsversion.py \
302         lib/opcodes.py
303
304 BUILT_PYTHON_SOURCES = \
305         $(built_python_base_sources) \
306         lib/_generated_rpc.py
307
308 # Generating the RPC wrappers depends on many things, so make sure
309 # it's built at the end of the built sources
310 lib/_generated_rpc.py: | $(built_base_sources) $(built_python_base_sources)
311
312 # these are all built from the underlying %.in sources
313 BUILT_EXAMPLES = \
314         doc/examples/ganeti-kvm-poweroff.initd \
315         doc/examples/ganeti.cron \
316         doc/examples/ganeti.initd \
317         doc/examples/ganeti.logrotate \
318         doc/examples/ganeti-master-role.ocf \
319         doc/examples/ganeti-node-role.ocf \
320         doc/examples/gnt-config-backup \
321         doc/examples/hooks/ipsec
322
323 nodist_pkgpython_PYTHON = \
324         $(BUILT_PYTHON_SOURCES)
325
326 nodist_pkgpython_bin_SCRIPTS = \
327         $(nodist_pkglib_python_scripts)
328
329 pkgpython_bin_SCRIPTS = \
330         $(pkglib_python_scripts)
331
332 noinst_PYTHON = \
333         lib/build/__init__.py \
334         lib/build/shell_example_lexer.py \
335         lib/build/sphinx_ext.py
336
337 pkgpython_PYTHON = \
338         lib/__init__.py \
339         lib/asyncnotifier.py \
340         lib/backend.py \
341         lib/bootstrap.py \
342         lib/cli.py \
343         lib/compat.py \
344         lib/config.py \
345         lib/constants.py \
346         lib/daemon.py \
347         lib/errors.py \
348         lib/hooksmaster.py \
349         lib/ht.py \
350         lib/jqueue.py \
351         lib/jstore.py \
352         lib/locking.py \
353         lib/luxi.py \
354         lib/mcpu.py \
355         lib/netutils.py \
356         lib/objects.py \
357         lib/opcodes_base.py \
358         lib/outils.py \
359         lib/ovf.py \
360         lib/pathutils.py \
361         lib/qlang.py \
362         lib/query.py \
363         lib/rpc.py \
364         lib/rpc_defs.py \
365         lib/runtime.py \
366         lib/serializer.py \
367         lib/ssconf.py \
368         lib/ssh.py \
369         lib/uidpool.py \
370         lib/vcluster.py \
371         lib/network.py \
372         lib/workerpool.py
373
374 client_PYTHON = \
375         lib/client/__init__.py \
376         lib/client/gnt_backup.py \
377         lib/client/gnt_cluster.py \
378         lib/client/gnt_debug.py \
379         lib/client/gnt_group.py \
380         lib/client/gnt_instance.py \
381         lib/client/gnt_job.py \
382         lib/client/gnt_node.py \
383         lib/client/gnt_network.py \
384         lib/client/gnt_os.py \
385         lib/client/gnt_storage.py
386
387 cmdlib_PYTHON = \
388         lib/cmdlib/__init__.py \
389         lib/cmdlib/backup.py \
390         lib/cmdlib/base.py \
391         lib/cmdlib/cluster.py \
392         lib/cmdlib/common.py \
393         lib/cmdlib/group.py \
394         lib/cmdlib/instance.py \
395         lib/cmdlib/instance_migration.py \
396         lib/cmdlib/instance_operation.py \
397         lib/cmdlib/instance_query.py \
398         lib/cmdlib/instance_storage.py \
399         lib/cmdlib/instance_utils.py \
400         lib/cmdlib/misc.py \
401         lib/cmdlib/network.py \
402         lib/cmdlib/node.py \
403         lib/cmdlib/operating_system.py \
404         lib/cmdlib/query.py \
405         lib/cmdlib/tags.py \
406         lib/cmdlib/test.py
407
408 hypervisor_PYTHON = \
409         lib/hypervisor/__init__.py \
410         lib/hypervisor/hv_base.py \
411         lib/hypervisor/hv_chroot.py \
412         lib/hypervisor/hv_fake.py \
413         lib/hypervisor/hv_kvm.py \
414         lib/hypervisor/hv_lxc.py \
415         lib/hypervisor/hv_xen.py
416
417 storage_PYTHON = \
418         lib/storage/__init__.py \
419         lib/storage/bdev.py \
420         lib/storage/base.py \
421         lib/storage/container.py \
422         lib/storage/drbd.py \
423         lib/storage/drbd_info.py \
424         lib/storage/drbd_cmdgen.py \
425         lib/storage/filestorage.py
426
427 rapi_PYTHON = \
428         lib/rapi/__init__.py \
429         lib/rapi/baserlib.py \
430         lib/rapi/client.py \
431         lib/rapi/client_utils.py \
432         lib/rapi/connector.py \
433         lib/rapi/rlib2.py \
434         lib/rapi/testutils.py
435
436 http_PYTHON = \
437         lib/http/__init__.py \
438         lib/http/auth.py \
439         lib/http/client.py \
440         lib/http/server.py
441
442 confd_PYTHON = \
443         lib/confd/__init__.py \
444         lib/confd/client.py
445
446 masterd_PYTHON = \
447         lib/masterd/__init__.py \
448         lib/masterd/iallocator.py \
449         lib/masterd/instance.py
450
451 impexpd_PYTHON = \
452         lib/impexpd/__init__.py
453
454 watcher_PYTHON = \
455         lib/watcher/__init__.py \
456         lib/watcher/nodemaint.py \
457         lib/watcher/state.py
458
459 server_PYTHON = \
460         lib/server/__init__.py \
461         lib/server/masterd.py \
462         lib/server/noded.py \
463         lib/server/rapi.py
464
465 pytools_PYTHON = \
466         lib/tools/__init__.py \
467         lib/tools/burnin.py \
468         lib/tools/ensure_dirs.py \
469         lib/tools/node_cleanup.py \
470         lib/tools/node_daemon_setup.py \
471         lib/tools/prepare_node_join.py
472
473 utils_PYTHON = \
474         lib/utils/__init__.py \
475         lib/utils/algo.py \
476         lib/utils/filelock.py \
477         lib/utils/hash.py \
478         lib/utils/io.py \
479         lib/utils/log.py \
480         lib/utils/lvm.py \
481         lib/utils/mlock.py \
482         lib/utils/nodesetup.py \
483         lib/utils/process.py \
484         lib/utils/retry.py \
485         lib/utils/storage.py \
486         lib/utils/text.py \
487         lib/utils/wrapper.py \
488         lib/utils/x509.py
489
490 docinput = \
491         doc/conf.py \
492         doc/css/style.css \
493         doc/admin.rst \
494         doc/cluster-merge.rst \
495         doc/design-2.0.rst \
496         doc/design-2.1.rst \
497         doc/design-2.2.rst \
498         doc/design-2.3.rst \
499         doc/design-2.4.rst \
500         doc/design-2.5.rst \
501         doc/design-2.6.rst \
502         doc/design-2.7.rst \
503         doc/design-2.8.rst \
504         doc/design-2.9.rst \
505         doc/design-autorepair.rst \
506         doc/design-bulk-create.rst \
507         doc/design-chained-jobs.rst \
508         doc/design-cpu-pinning.rst \
509         doc/design-device-uuid-name.rst \
510         doc/design-draft.rst \
511         doc/design-hotplug.rst \
512         doc/design-htools-2.3.rst \
513         doc/design-http-server.rst \
514         doc/design-impexp2.rst \
515         doc/design-internal-shutdown.rst \
516         doc/design-lu-generated-jobs.rst \
517         doc/design-linuxha.rst \
518         doc/design-multi-reloc.rst \
519         doc/design-network.rst \
520         doc/design-node-add.rst \
521         doc/design-oob.rst \
522         doc/design-ovf-support.rst \
523         doc/design-opportunistic-locking.rst \
524         doc/design-optables.rst \
525         doc/design-partitioned.rst \
526         doc/design-query-splitting.rst \
527         doc/design-query2.rst \
528         doc/design-reason-trail.rst \
529         doc/design-resource-model.rst \
530         doc/design-restricted-commands.rst \
531         doc/design-shared-storage.rst \
532         doc/design-monitoring-agent.rst \
533         doc/design-virtual-clusters.rst \
534         doc/design-x509-ca.rst \
535         doc/design-hroller.rst \
536         doc/design-storagetypes.rst \
537         doc/design-upgrade.rst \
538         doc/devnotes.rst \
539         doc/glossary.rst \
540         doc/hooks.rst \
541         doc/iallocator.rst \
542         doc/index.rst \
543         doc/install-quick.rst \
544         doc/install.rst \
545         doc/locking.rst \
546         doc/manpages-disabled.rst \
547         doc/monitoring-query-format.rst \
548         doc/move-instance.rst \
549         doc/news.rst \
550         doc/ovfconverter.rst \
551         doc/rapi.rst \
552         doc/security.rst \
553         doc/upgrade.rst \
554         doc/virtual-cluster.rst \
555         doc/walkthrough.rst
556
557 # Generates file names such as "doc/man-gnt-instance.rst"
558 mandocrst = $(addprefix doc/man-,$(notdir $(manrst)))
559
560 # Haskell programs to be installed in $PREFIX/bin
561 HS_BIN_PROGS=src/htools
562
563 # Haskell programs to be installed in the MYEXECLIB dir
564 if ENABLE_MOND
565 HS_MYEXECLIB_PROGS=src/mon-collector
566 else
567 HS_MYEXECLIB_PROGS=
568 endif
569
570 # Haskell programs to be compiled by "make really-all"
571 HS_COMPILE_PROGS= \
572         src/ganeti-mond \
573         src/hconfd \
574         src/hluxid \
575         src/hs2py \
576         src/rpc-test
577
578 # All Haskell non-test programs to be compiled but not automatically installed
579 HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
580
581 HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller
582 HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
583
584 HS_ALL_PROGS = \
585         $(HS_PROGS) \
586         test/hs/hpc-htools \
587         test/hs/hpc-mon-collector \
588         test/hs/htest \
589         $(HS_COMPILE_PROGS)
590
591 HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS)) src/hs2py-constants.hs
592 HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
593
594 HFLAGS = \
595         -O -Wall -Werror -isrc \
596         -fwarn-monomorphism-restriction \
597         -fwarn-tabs \
598         $(GHC_BYVERSION_FLAGS)
599
600 # extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
601 HEXTRA =
602 # internal extra flags (used for test/hs/htest mainly)
603 HEXTRA_INT =
604 # exclude options for coverage reports
605 HPCEXCL = --exclude Main \
606         --exclude Ganeti.Constants \
607         --exclude Ganeti.HTools.QC \
608         --exclude Ganeti.THH \
609         --exclude Ganeti.Version \
610         --exclude Test.Ganeti.Attoparsec \
611         --exclude Test.Ganeti.TestCommon \
612         --exclude Test.Ganeti.TestHTools \
613         --exclude Test.Ganeti.TestHelper \
614         --exclude Test.Ganeti.TestImports \
615         $(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
616
617 HS_LIB_SRCS = \
618         src/Ganeti/BasicTypes.hs \
619         src/Ganeti/Common.hs \
620         src/Ganeti/Compat.hs \
621         src/Ganeti/Confd/Client.hs \
622         src/Ganeti/Confd/ClientFunctions.hs \
623         src/Ganeti/Confd/Server.hs \
624         src/Ganeti/Confd/Types.hs \
625         src/Ganeti/Confd/Utils.hs \
626         src/Ganeti/Config.hs \
627         src/Ganeti/ConfigReader.hs \
628         src/Ganeti/Constants.hs \
629         src/Ganeti/ConstantUtils.hs \
630         src/Ganeti/Cpu/LoadParser.hs \
631         src/Ganeti/Cpu/Types.hs \
632         src/Ganeti/Curl/Multi.hs \
633         src/Ganeti/Daemon.hs \
634         src/Ganeti/DataCollectors/CLI.hs \
635         src/Ganeti/DataCollectors/CPUload.hs \
636         src/Ganeti/DataCollectors/Diskstats.hs \
637         src/Ganeti/DataCollectors/Drbd.hs \
638         src/Ganeti/DataCollectors/InstStatus.hs \
639         src/Ganeti/DataCollectors/InstStatusTypes.hs \
640         src/Ganeti/DataCollectors/Lv.hs \
641         src/Ganeti/DataCollectors/Program.hs \
642         src/Ganeti/DataCollectors/Types.hs \
643         src/Ganeti/Errors.hs \
644         src/Ganeti/HTools/Backend/IAlloc.hs \
645         src/Ganeti/HTools/Backend/Luxi.hs \
646         src/Ganeti/HTools/Backend/Rapi.hs \
647         src/Ganeti/HTools/Backend/Simu.hs \
648         src/Ganeti/HTools/Backend/Text.hs \
649         src/Ganeti/HTools/CLI.hs \
650         src/Ganeti/HTools/Cluster.hs \
651         src/Ganeti/HTools/Container.hs \
652         src/Ganeti/HTools/ExtLoader.hs \
653         src/Ganeti/HTools/Graph.hs \
654         src/Ganeti/HTools/Group.hs \
655         src/Ganeti/HTools/Instance.hs \
656         src/Ganeti/HTools/Loader.hs \
657         src/Ganeti/HTools/Nic.hs \
658         src/Ganeti/HTools/Node.hs \
659         src/Ganeti/HTools/PeerMap.hs \
660         src/Ganeti/HTools/Program/Hail.hs \
661         src/Ganeti/HTools/Program/Harep.hs \
662         src/Ganeti/HTools/Program/Hbal.hs \
663         src/Ganeti/HTools/Program/Hcheck.hs \
664         src/Ganeti/HTools/Program/Hinfo.hs \
665         src/Ganeti/HTools/Program/Hscan.hs \
666         src/Ganeti/HTools/Program/Hspace.hs \
667         src/Ganeti/HTools/Program/Hroller.hs \
668         src/Ganeti/HTools/Program/Main.hs \
669         src/Ganeti/HTools/Types.hs \
670         src/Ganeti/Hypervisor/Xen.hs \
671         src/Ganeti/Hypervisor/Xen/XmParser.hs \
672         src/Ganeti/Hypervisor/Xen/Types.hs \
673         src/Ganeti/Hash.hs \
674         src/Ganeti/Hs2Py/GenConstants.hs \
675         src/Ganeti/Hs2Py/GenOpCodes.hs \
676         src/Ganeti/Hs2Py/OpDoc.hs \
677         src/Ganeti/HsConstants.hs \
678         src/Ganeti/JQueue.hs \
679         src/Ganeti/JSON.hs \
680         src/Ganeti/Jobs.hs \
681         src/Ganeti/Logging.hs \
682         src/Ganeti/Luxi.hs \
683         src/Ganeti/Monitoring/Server.hs \
684         src/Ganeti/Network.hs \
685         src/Ganeti/Objects.hs \
686         src/Ganeti/OpCodes.hs \
687         src/Ganeti/OpParams.hs \
688         src/Ganeti/Path.hs \
689         src/Ganeti/Parsers.hs \
690         src/Ganeti/PyValueInstances.hs \
691         src/Ganeti/Query/Cluster.hs \
692         src/Ganeti/Query/Common.hs \
693         src/Ganeti/Query/Export.hs \
694         src/Ganeti/Query/Filter.hs \
695         src/Ganeti/Query/Group.hs \
696         src/Ganeti/Query/Job.hs \
697         src/Ganeti/Query/Language.hs \
698         src/Ganeti/Query/Network.hs \
699         src/Ganeti/Query/Node.hs \
700         src/Ganeti/Query/Query.hs \
701         src/Ganeti/Query/Server.hs \
702         src/Ganeti/Query/Types.hs \
703         src/Ganeti/Rpc.hs \
704         src/Ganeti/Runtime.hs \
705         src/Ganeti/Ssconf.hs \
706         src/Ganeti/Storage/Diskstats/Parser.hs \
707         src/Ganeti/Storage/Diskstats/Types.hs \
708         src/Ganeti/Storage/Drbd/Parser.hs \
709         src/Ganeti/Storage/Drbd/Types.hs \
710         src/Ganeti/Storage/Lvm/LVParser.hs \
711         src/Ganeti/Storage/Lvm/Types.hs \
712         src/Ganeti/Storage/Utils.hs \
713         src/Ganeti/THH.hs \
714         src/Ganeti/Types.hs \
715         src/Ganeti/Utils.hs
716
717 HS_TEST_SRCS = \
718         test/hs/Test/Ganeti/Attoparsec.hs \
719         test/hs/Test/Ganeti/BasicTypes.hs \
720         test/hs/Test/Ganeti/Common.hs \
721         test/hs/Test/Ganeti/Confd/Types.hs \
722         test/hs/Test/Ganeti/Confd/Utils.hs \
723         test/hs/Test/Ganeti/Daemon.hs \
724         test/hs/Test/Ganeti/Errors.hs \
725         test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
726         test/hs/Test/Ganeti/HTools/Backend/Text.hs \
727         test/hs/Test/Ganeti/HTools/CLI.hs \
728         test/hs/Test/Ganeti/HTools/Cluster.hs \
729         test/hs/Test/Ganeti/HTools/Container.hs \
730         test/hs/Test/Ganeti/HTools/Graph.hs \
731         test/hs/Test/Ganeti/HTools/Instance.hs \
732         test/hs/Test/Ganeti/HTools/Loader.hs \
733         test/hs/Test/Ganeti/HTools/Node.hs \
734         test/hs/Test/Ganeti/HTools/PeerMap.hs \
735         test/hs/Test/Ganeti/HTools/Types.hs \
736         test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \
737         test/hs/Test/Ganeti/JSON.hs \
738         test/hs/Test/Ganeti/Jobs.hs \
739         test/hs/Test/Ganeti/JQueue.hs \
740         test/hs/Test/Ganeti/Luxi.hs \
741         test/hs/Test/Ganeti/Network.hs \
742         test/hs/Test/Ganeti/Objects.hs \
743         test/hs/Test/Ganeti/OpCodes.hs \
744         test/hs/Test/Ganeti/Query/Filter.hs \
745         test/hs/Test/Ganeti/Query/Language.hs \
746         test/hs/Test/Ganeti/Query/Network.hs \
747         test/hs/Test/Ganeti/Query/Query.hs \
748         test/hs/Test/Ganeti/Rpc.hs \
749         test/hs/Test/Ganeti/Runtime.hs \
750         test/hs/Test/Ganeti/Ssconf.hs \
751         test/hs/Test/Ganeti/Storage/Diskstats/Parser.hs \
752         test/hs/Test/Ganeti/Storage/Drbd/Parser.hs \
753         test/hs/Test/Ganeti/Storage/Drbd/Types.hs \
754         test/hs/Test/Ganeti/Storage/Lvm/LVParser.hs \
755         test/hs/Test/Ganeti/THH.hs \
756         test/hs/Test/Ganeti/TestCommon.hs \
757         test/hs/Test/Ganeti/TestHTools.hs \
758         test/hs/Test/Ganeti/TestHelper.hs \
759         test/hs/Test/Ganeti/Types.hs \
760         test/hs/Test/Ganeti/Utils.hs
761
762 HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
763
764 HS_BUILT_SRCS = \
765         test/hs/Test/Ganeti/TestImports.hs \
766         src/AutoConf.hs \
767         src/Ganeti/Hs2Py/ListConstants.hs \
768         src/Ganeti/PyConstants.hs \
769         src/Ganeti/Curl/Internal.hs \
770         src/Ganeti/Version.hs
771 HS_BUILT_SRCS_IN = \
772         $(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \
773         src/Ganeti/Curl/Internal.hsc \
774         lib/_constants.py.in \
775         lib/opcodes.py.in_after \
776         lib/opcodes.py.in_before
777
778 HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
779
780 $(RUN_IN_TEMPDIR): | stamp-directories
781
782 doc/html/index.html: ENABLE_MANPAGES =
783 doc/man-html/index.html: ENABLE_MANPAGES = 1
784 doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
785
786 # Note: we use here an order-only prerequisite, as the contents of
787 # _autoconf.py are not actually influencing the html build output: it
788 # has to exist in order for the sphinx module to be loaded
789 # successfully, but we certainly don't want the docs to be rebuilt if
790 # it changes
791 doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \
792         configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
793         lib/build/shell_example_lexer.py lib/ht.py \
794         doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \
795         autotools/sphinx-wrapper | $(BUILT_PYTHON_SOURCES)
796         @test -n "$(SPHINX)" || \
797             { echo 'sphinx-build' not found during configure; exit 1; }
798 if !MANPAGES_IN_DOC
799         if test -n '$(ENABLE_MANPAGES)'; then \
800           echo 'Man pages in documentation were disabled at configure time' >&2; \
801           exit 1; \
802         fi
803 endif
804 ## Sphinx provides little control over what content should be included. Some
805 ## mechanisms exist, but they all have drawbacks or actual issues. Since we
806 ## build two different versions of the documentation--once without man pages and
807 ## once, if enabled, with them--some control is necessary. xmpp-wrapper provides
808 ## us with this, but requires running in a temporary directory. It moves the
809 ## correct files into place depending on environment variables.
810         dir=$(dir $@) && \
811         @mkdir_p@ $$dir && \
812         PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \
813         $(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \
814             -d . \
815             -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
816             -D release="$(PACKAGE_VERSION)" \
817             -D graphviz_dot="$(DOT)" \
818             -D enable_manpages="$(ENABLE_MANPAGES)" \
819             doc $(CURDIR)/$$dir && \
820         rm -f $$dir/.buildinfo $$dir/objects.inv
821         touch $@
822
823 doc/html: doc/html/index.html
824
825 doc/man-html: doc/man-html/index.html
826
827 doc/install-quick.rst: INSTALL
828 doc/news.rst: NEWS
829 doc/upgrade.rst: UPGRADE
830
831 doc/install-quick.rst doc/news.rst doc/upgrade.rst:
832         set -e; \
833         { echo '.. This file is automatically updated at build time from $<.'; \
834           echo '.. Do not edit.'; \
835           echo; \
836           cat $<; \
837         } > $@
838
839 doc/manpages-enabled.rst: Makefile | $(built_base_sources)
840         { echo '.. This file is automatically generated, do not edit!'; \
841           echo ''; \
842           echo 'Man pages'; \
843           echo '========='; \
844           echo; \
845           echo '.. toctree::'; \
846           echo '   :maxdepth: 1'; \
847           echo; \
848           for i in $(notdir $(mandocrst)); do \
849             echo "   $$i"; \
850           done | LC_ALL=C sort; \
851         } > $@
852
853 doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources)
854 if MANPAGES_IN_DOC
855         { echo '.. This file is automatically updated at build time from $<.'; \
856           echo '.. Do not edit.'; \
857           echo; \
858           echo "$*"; \
859           echo '=========================================='; \
860           tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \
861         } > $@
862 else
863         echo 'Man pages in documentation were disabled at configure time' >&2; \
864         exit 1;
865 endif
866
867 doc/users/%: doc/users/%.in Makefile $(REPLACE_VARS_SED)
868         cat $< | sed -f $(REPLACE_VARS_SED) | LC_ALL=C sort | uniq | (grep -v '^root' || true) > $@
869
870 userspecs = \
871         doc/users/users \
872         doc/users/groups \
873         doc/users/groupmemberships
874
875 # Things to build but not to install (add it to EXTRA_DIST if it should be
876 # distributed)
877 noinst_DATA = \
878         $(BUILT_EXAMPLES) \
879         doc/examples/bash_completion \
880         doc/examples/bash_completion-debug \
881         $(userspecs) \
882         $(manhtml)
883
884 if HAS_SPHINX
885 if MANPAGES_IN_DOC
886 noinst_DATA += doc/man-html
887 else
888 noinst_DATA += doc/html
889 endif
890 endif
891
892 gnt_scripts = \
893         scripts/gnt-backup \
894         scripts/gnt-cluster \
895         scripts/gnt-debug \
896         scripts/gnt-group \
897         scripts/gnt-instance \
898         scripts/gnt-job \
899         scripts/gnt-network \
900         scripts/gnt-node \
901         scripts/gnt-os \
902         scripts/gnt-storage
903
904 gnt_scripts_basenames = \
905         $(patsubst scripts/%,%,$(patsubst daemons/%,%,$(gnt_scripts) $(gnt_python_sbin_SCRIPTS)))
906
907 gnt_python_sbin_SCRIPTS = \
908         $(PYTHON_BOOTSTRAP_SBIN)
909
910 gntpython_SCRIPTS = $(gnt_scripts)
911
912 PYTHON_BOOTSTRAP_SBIN = \
913         daemons/ganeti-masterd \
914         daemons/ganeti-noded \
915         daemons/ganeti-rapi \
916         daemons/ganeti-watcher
917
918 PYTHON_BOOTSTRAP = \
919         tools/burnin \
920         tools/ensure-dirs \
921         tools/node-cleanup \
922         tools/node-daemon-setup \
923         tools/prepare-node-join
924
925 qa_scripts = \
926         qa/__init__.py \
927         qa/ganeti-qa.py \
928         qa/qa_cluster.py \
929         qa/qa_config.py \
930         qa/qa_daemon.py \
931         qa/qa_env.py \
932         qa/qa_error.py \
933         qa/qa_group.py \
934         qa/qa_instance.py \
935         qa/qa_instance_utils.py \
936         qa/qa_job.py \
937         qa/qa_monitoring.py \
938         qa/qa_node.py \
939         qa/qa_os.py \
940         qa/qa_rapi.py \
941         qa/qa_tags.py \
942         qa/qa_utils.py
943
944 bin_SCRIPTS =
945 if WANT_HTOOLS
946 bin_SCRIPTS += $(HS_BIN_PROGS)
947 install-exec-hook:
948         @mkdir_p@ $(DESTDIR)$(iallocatorsdir)
949 # FIXME: this is a hardcoded logic, instead of auto-resolving
950         $(LN_S) -f ../../../bin/htools \
951           $(DESTDIR)$(iallocatorsdir)/hail
952         for role in $(HS_BIN_ROLES); do \
953           $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
954         done
955 endif
956
957 # This target cannot be merged with the '$(HS_ALL_PROGS)' target
958 # because 'hs2py-constants' cannot depend on 'Ganeti.Constants'.  And
959 # the reason for this is because 'hs2py-constants' needs to generate
960 # Python code, and 'Ganeti.Constants' is generated by Python.
961 src/hs2py-constants: src/hs2py-constants.hs src/AutoConf.hs \
962                      src/Ganeti/BasicTypes.hs src/Ganeti/ConstantUtils.hs \
963                      src/Ganeti/JSON.hs src/Ganeti/THH.hs \
964                      src/Ganeti/Hs2Py/GenConstants.hs \
965                      src/Ganeti/Hs2Py/ListConstants.hs \
966                      src/Ganeti/HsConstants.hs \
967                      src/Ganeti/PyValueInstances.hs \
968                    | stamp-srclinks
969         $(GHC) --make \
970           $(HFLAGS) \
971           -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
972           $(HEXTRA) $(HEXTRA_INT) src/hs2py-constants.hs
973
974 $(HS_ALL_PROGS): %: %.hs $(HS_LIBTESTBUILT_SRCS) Makefile
975         @if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \
976           echo "Error: cannot run unittests without the development" \
977                " libraries (see devnotes.rst)" 1>&2; \
978           exit 1; \
979         fi
980         @rm -f $(notdir $@).tix
981         $(GHC) --make \
982           $(HFLAGS) \
983           $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
984           -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
985           $(HEXTRA) $(HEXTRA_INT) $@
986         @touch "$@"
987
988 # for the test/hs/htest binary, we need to enable profiling/coverage
989 test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
990
991 # we compile the hpc-htools binary with the program coverage
992 test/hs/hpc-htools: HEXTRA_INT=-fhpc
993
994 # we compile the hpc-mon-collector binary with the program coverage
995 test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
996
997 # test dependency
998 test/hs/offline-test.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
999
1000 # rules for building profiling-enabled versions of the haskell
1001 # programs: hs-prof does the full two-step build, whereas
1002 # hs-prof-quick does only the final rebuild (hs-prof must have been
1003 # run before)
1004 .PHONY: hs-prof hs-prof-quick
1005 hs-prof:
1006         @if [ -z "$(TARGET)" ]; then \
1007           echo "You need to define TARGET when running this rule" 1>&2; \
1008           exit 1; \
1009         fi
1010         $(MAKE) $(AM_MAKEFLAGS) clean
1011         $(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o"
1012         rm -f $(HS_ALL_PROGS)
1013         $(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
1014
1015 hs-prof-quick:
1016         @if [ -z "$(TARGET)" ]; then \
1017           echo "You need to define TARGET when running this rule" 1>&2; \
1018           exit 1; \
1019         fi
1020         $(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
1021
1022 dist_sbin_SCRIPTS = \
1023         tools/ganeti-listrunner
1024
1025 nodist_sbin_SCRIPTS = \
1026         daemons/ganeti-cleaner
1027
1028 # strip path prefixes off the sbin scripts
1029 all_sbin_scripts = \
1030         $(patsubst tools/%,%,$(patsubst daemons/%,%,$(patsubst scripts/%,%,\
1031         $(patsubst src/%,%,$(dist_sbin_SCRIPTS) $(nodist_sbin_SCRIPTS)))))
1032
1033 if ENABLE_CONFD
1034 src/ganeti-confd: src/hconfd
1035         cp -f $< $@
1036
1037 src/ganeti-luxid: src/hluxid
1038         cp -f $< $@
1039
1040 nodist_sbin_SCRIPTS += src/ganeti-confd
1041 nodist_sbin_SCRIPTS += src/ganeti-luxid
1042 endif
1043
1044 if ENABLE_MOND
1045 nodist_sbin_SCRIPTS += src/ganeti-mond
1046 endif
1047
1048 python_scripts = \
1049         tools/cfgshell \
1050         tools/cfgupgrade \
1051         tools/cfgupgrade12 \
1052         tools/cluster-merge \
1053         tools/confd-client \
1054         tools/fmtjson \
1055         tools/lvmstrap \
1056         tools/move-instance \
1057         tools/ovfconverter \
1058         tools/sanitize-config
1059
1060 dist_tools_SCRIPTS = \
1061         tools/kvm-console-wrapper \
1062         tools/master-ip-setup \
1063         tools/xen-console-wrapper
1064
1065 dist_tools_python_SCRIPTS = \
1066         $(python_scripts) \
1067         tools/burnin
1068
1069 nodist_tools_python_SCRIPTS = \
1070         tools/node-cleanup
1071
1072 tools_python_basenames = $(patsubst tools/%,%,\
1073         $(dist_tools_python_SCRIPTS) $(nodist_tools_python_SCRIPTS))
1074
1075 nodist_tools_SCRIPTS = \
1076         tools/users-setup \
1077         tools/vcluster-setup
1078
1079 tools_basenames = $(patsubst tools/%,%,$(nodist_tools_SCRIPTS) $(dist_tools_SCRIPTS))
1080
1081 pkglib_python_scripts = \
1082         daemons/import-export \
1083         tools/check-cert-expired
1084
1085 nodist_pkglib_python_scripts = \
1086         tools/ensure-dirs \
1087         tools/node-daemon-setup \
1088         tools/prepare-node-join
1089
1090 pkglib_python_basenames = \
1091         $(patsubst daemons/%,%,$(patsubst tools/%,%,\
1092         $(pkglib_python_scripts) $(nodist_pkglib_python_scripts)))
1093
1094 myexeclib_SCRIPTS = \
1095         daemons/daemon-util \
1096         tools/kvm-ifup \
1097         tools/vif-ganeti \
1098         tools/net-common \
1099         $(HS_MYEXECLIB_PROGS)
1100
1101 # compute the basenames of the myexeclib_scripts
1102 myexeclib_scripts_basenames = \
1103         $(patsubst tools/%,%,$(patsubst daemons/%,%,$(patsubst src/%,%,$(myexeclib_SCRIPTS))))
1104
1105 EXTRA_DIST = \
1106         NEWS \
1107         UPGRADE \
1108         epydoc.conf.in \
1109         pylintrc \
1110         pylintrc-test \
1111         autotools/build-bash-completion \
1112         autotools/build-rpc \
1113         autotools/check-header \
1114         autotools/check-imports \
1115         autotools/check-man-dashes \
1116         autotools/check-man-references \
1117         autotools/check-man-warnings \
1118         autotools/check-news \
1119         autotools/check-python-code \
1120         autotools/check-tar \
1121         autotools/check-version \
1122         autotools/convert-constants \
1123         autotools/docpp \
1124         autotools/gen-py-coverage \
1125         autotools/sphinx-wrapper \
1126         autotools/testrunner \
1127         autotools/wrong-hardcoded-paths \
1128         $(RUN_IN_TEMPDIR) \
1129         daemons/daemon-util.in \
1130         daemons/ganeti-cleaner.in \
1131         $(pkglib_python_scripts) \
1132         devel/upload \
1133         devel/webserver \
1134         tools/kvm-ifup.in \
1135         tools/vif-ganeti.in \
1136         tools/net-common.in \
1137         tools/vcluster-setup.in \
1138         $(docinput) \
1139         doc/html \
1140         $(BUILT_EXAMPLES:%=%.in) \
1141         doc/examples/ganeti.default \
1142         doc/examples/ganeti.default-debug \
1143         doc/examples/hooks/ethers \
1144         doc/examples/gnt-debug/README \
1145         doc/examples/gnt-debug/delay0.json \
1146         doc/examples/gnt-debug/delay50.json \
1147         doc/users/groupmemberships.in \
1148         doc/users/groups.in \
1149         doc/users/users.in \
1150         $(dist_TESTS) \
1151         $(TEST_FILES) \
1152         $(python_test_support) \
1153         man/footer.rst \
1154         $(manrst) \
1155         $(maninput) \
1156         qa/qa-sample.json \
1157         $(qa_scripts) \
1158         $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
1159         $(HS_PROG_SRCS) \
1160         src/lint-hints.hs \
1161         test/hs/cli-tests-defs.sh \
1162         test/hs/offline-test.sh \
1163         .ghci
1164
1165 man_MANS = \
1166         man/ganeti-cleaner.8 \
1167         man/ganeti-confd.8 \
1168         man/ganeti-luxid.8 \
1169         man/ganeti-listrunner.8 \
1170         man/ganeti-masterd.8 \
1171         man/ganeti-mond.8 \
1172         man/ganeti-noded.8 \
1173         man/ganeti-os-interface.7 \
1174         man/ganeti-extstorage-interface.7 \
1175         man/ganeti-rapi.8 \
1176         man/ganeti-watcher.8 \
1177         man/ganeti.7 \
1178         man/gnt-backup.8 \
1179         man/gnt-cluster.8 \
1180         man/gnt-debug.8 \
1181         man/gnt-group.8 \
1182         man/gnt-network.8 \
1183         man/gnt-instance.8 \
1184         man/gnt-job.8 \
1185         man/gnt-node.8 \
1186         man/gnt-os.8 \
1187         man/gnt-storage.8 \
1188         man/hail.1 \
1189         man/harep.1 \
1190         man/hbal.1 \
1191         man/hcheck.1 \
1192         man/hinfo.1 \
1193         man/hscan.1 \
1194         man/hspace.1 \
1195         man/hroller.1 \
1196         man/htools.1 \
1197         man/mon-collector.7
1198
1199 # Remove extensions from all filenames in man_MANS
1200 mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
1201
1202 manrst = $(patsubst %,%.rst,$(mannoext))
1203 manhtml = $(patsubst %.rst,%.html,$(manrst))
1204 mangen = $(patsubst %.rst,%.gen,$(manrst))
1205 maninput = \
1206         $(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
1207         $(patsubst %.html,%.html.in,$(manhtml)) \
1208         $(mangen)
1209
1210 manfullpath = $(patsubst man/%.1,man1/%.1,\
1211         $(patsubst man/%.7,man7/%.7,\
1212         $(patsubst man/%.8,man8/%.8,$(man_MANS))))
1213
1214 TEST_FILES = \
1215         test/autotools/autotools-check-news.test \
1216         test/data/htools/clean-nonzero-score.data \
1217         test/data/htools/common-suffix.data \
1218         test/data/htools/empty-cluster.data \
1219         test/data/htools/hail-alloc-drbd.json \
1220         test/data/htools/hail-alloc-invalid-network.json \
1221         test/data/htools/hail-alloc-invalid-twodisks.json \
1222         test/data/htools/hail-alloc-restricted-network.json \
1223         test/data/htools/hail-alloc-spindles.json \
1224         test/data/htools/hail-alloc-twodisks.json \
1225         test/data/htools/hail-change-group.json \
1226         test/data/htools/hail-invalid-reloc.json \
1227         test/data/htools/hail-node-evac.json \
1228         test/data/htools/hail-reloc-drbd.json \
1229         test/data/htools/hbal-dyn.data \
1230         test/data/htools/hbal-excl-tags.data \
1231         test/data/htools/hbal-split-insts.data \
1232         test/data/htools/hspace-tiered-dualspec-exclusive.data \
1233         test/data/htools/hspace-tiered-dualspec.data \
1234         test/data/htools/hspace-tiered-exclusive.data \
1235         test/data/htools/hspace-tiered-ipolicy.data \
1236         test/data/htools/hspace-tiered-mixed.data \
1237         test/data/htools/hspace-tiered-resourcetypes.data \
1238         test/data/htools/hspace-tiered-vcpu.data \
1239         test/data/htools/hspace-tiered.data \
1240         test/data/htools/invalid-node.data \
1241         test/data/htools/missing-resources.data \
1242         test/data/htools/multiple-master.data \
1243         test/data/htools/multiple-tags.data \
1244         test/data/htools/n1-failure.data \
1245         test/data/htools/rapi/groups.json \
1246         test/data/htools/rapi/info.json \
1247         test/data/htools/rapi/instances.json \
1248         test/data/htools/rapi/nodes.json \
1249         test/data/htools/hroller-full.data \
1250         test/data/htools/hroller-nodegroups.data \
1251         test/data/htools/hroller-nonredundant.data \
1252         test/data/htools/hroller-online.data \
1253         test/data/htools/unique-reboot-order.data \
1254         test/hs/shelltests/htools-balancing.test \
1255         test/hs/shelltests/htools-basic.test \
1256         test/hs/shelltests/htools-dynutil.test \
1257         test/hs/shelltests/htools-excl.test \
1258         test/hs/shelltests/htools-hail.test \
1259         test/hs/shelltests/htools-hroller.test \
1260         test/hs/shelltests/htools-hspace.test \
1261         test/hs/shelltests/htools-invalid.test \
1262         test/hs/shelltests/htools-multi-group.test \
1263         test/hs/shelltests/htools-no-backend.test \
1264         test/hs/shelltests/htools-rapi.test \
1265         test/hs/shelltests/htools-single-group.test \
1266         test/hs/shelltests/htools-text-backend.test \
1267         test/hs/shelltests/htools-mon-collector.test \
1268         test/data/bdev-drbd-8.0.txt \
1269         test/data/bdev-drbd-8.3.txt \
1270         test/data/bdev-drbd-8.4.txt \
1271         test/data/bdev-drbd-8.4-no-disk-params.txt \
1272         test/data/bdev-drbd-disk.txt \
1273         test/data/bdev-drbd-net-ip4.txt \
1274         test/data/bdev-drbd-net-ip6.txt \
1275         test/data/bdev-rbd/json_output_empty.txt \
1276         test/data/bdev-rbd/json_output_extra_matches.txt \
1277         test/data/bdev-rbd/json_output_no_matches.txt \
1278         test/data/bdev-rbd/json_output_ok.txt \
1279         test/data/bdev-rbd/plain_output_new_extra_matches.txt \
1280         test/data/bdev-rbd/plain_output_new_no_matches.txt \
1281         test/data/bdev-rbd/plain_output_new_ok.txt \
1282         test/data/bdev-rbd/plain_output_old_empty.txt \
1283         test/data/bdev-rbd/plain_output_old_extra_matches.txt \
1284         test/data/bdev-rbd/plain_output_old_no_matches.txt \
1285         test/data/bdev-rbd/plain_output_old_ok.txt \
1286         test/data/bdev-rbd/output_invalid.txt \
1287         test/data/cert1.pem \
1288         test/data/cert2.pem \
1289         test/data/cluster_config_2.7.json \
1290         test/data/cluster_config_2.8.json \
1291         test/data/cluster_config_2.9.json \
1292         test/data/instance-minor-pairing.txt \
1293         test/data/instance-prim-sec.txt \
1294         test/data/ip-addr-show-dummy0.txt \
1295         test/data/ip-addr-show-lo-ipv4.txt \
1296         test/data/ip-addr-show-lo-ipv6.txt \
1297         test/data/ip-addr-show-lo-oneline-ipv4.txt \
1298         test/data/ip-addr-show-lo-oneline-ipv6.txt \
1299         test/data/ip-addr-show-lo-oneline.txt \
1300         test/data/ip-addr-show-lo.txt \
1301         test/data/kvm_0.12.5_help.txt \
1302         test/data/kvm_0.15.90_help.txt \
1303         test/data/kvm_0.9.1_help.txt \
1304         test/data/kvm_0.9.1_help_boot_test.txt \
1305         test/data/kvm_1.0_help.txt \
1306         test/data/kvm_1.1.2_help.txt \
1307         test/data/lvs_lv.txt \
1308         test/data/NEWS_OK.txt \
1309         test/data/NEWS_previous_unreleased.txt \
1310         test/data/ovfdata/compr_disk.vmdk.gz \
1311         test/data/ovfdata/config.ini \
1312         test/data/ovfdata/corrupted_resources.ovf \
1313         test/data/ovfdata/empty.ini \
1314         test/data/ovfdata/empty.ovf \
1315         test/data/ovfdata/ganeti.mf \
1316         test/data/ovfdata/ganeti.ovf \
1317         test/data/ovfdata/gzip_disk.ovf \
1318         test/data/ovfdata/new_disk.vmdk \
1319         test/data/ovfdata/no_disk.ini \
1320         test/data/ovfdata/no_disk_in_ref.ovf \
1321         test/data/ovfdata/no_os.ini \
1322         test/data/ovfdata/no_ovf.ova \
1323         test/data/ovfdata/other/rawdisk.raw \
1324         test/data/ovfdata/ova.ova \
1325         test/data/ovfdata/rawdisk.raw \
1326         test/data/ovfdata/second_disk.vmdk \
1327         test/data/ovfdata/unsafe_path.ini \
1328         test/data/ovfdata/virtualbox.ovf \
1329         test/data/ovfdata/wrong_config.ini \
1330         test/data/ovfdata/wrong_extension.ovd \
1331         test/data/ovfdata/wrong_manifest.mf \
1332         test/data/ovfdata/wrong_manifest.ovf \
1333         test/data/ovfdata/wrong_ova.ova \
1334         test/data/ovfdata/wrong_xml.ovf \
1335         test/data/proc_diskstats.txt \
1336         test/data/proc_drbd8.txt \
1337         test/data/proc_drbd80-emptyline.txt \
1338         test/data/proc_drbd80-emptyversion.txt \
1339         test/data/proc_drbd83.txt \
1340         test/data/proc_drbd83_sync.txt \
1341         test/data/proc_drbd83_sync_want.txt \
1342         test/data/proc_drbd83_sync_krnl2.6.39.txt \
1343         test/data/proc_drbd84.txt \
1344         test/data/proc_drbd84_sync.txt \
1345         test/data/proc_meminfo.txt \
1346         test/data/proc_cpuinfo.txt \
1347         test/data/qa-minimal-nodes-instances-only.json \
1348         test/data/sys_drbd_usermode_helper.txt \
1349         test/data/vgreduce-removemissing-2.02.02.txt \
1350         test/data/vgreduce-removemissing-2.02.66-fail.txt \
1351         test/data/vgreduce-removemissing-2.02.66-ok.txt \
1352         test/data/vgs-missing-pvs-2.02.02.txt \
1353         test/data/vgs-missing-pvs-2.02.66.txt \
1354         test/data/xen-xm-info-4.0.1.txt \
1355         test/data/xen-xm-list-4.0.1-dom0-only.txt \
1356         test/data/xen-xm-list-4.0.1-four-instances.txt \
1357         test/data/xen-xm-list-long-4.0.1.txt \
1358         test/data/xen-xm-uptime-4.0.1.txt \
1359         test/py/ganeti-cli.test \
1360         test/py/gnt-cli.test \
1361         test/py/import-export_unittest-helper
1362
1363
1364 python_tests = \
1365         doc/examples/rapi_testutils.py \
1366         test/py/cmdlib/cluster_unittest.py \
1367         test/py/cmdlib/cmdlib_unittest.py \
1368         test/py/cmdlib/group_unittest.py \
1369         test/py/cmdlib/instance_unittest.py \
1370         test/py/cmdlib/instance_migration_unittest.py \
1371         test/py/cmdlib/instance_query_unittest.py \
1372         test/py/cmdlib/instance_storage_unittest.py \
1373         test/py/cmdlib/node_unittest.py \
1374         test/py/cmdlib/test_unittest.py \
1375         test/py/cfgupgrade_unittest.py \
1376         test/py/docs_unittest.py \
1377         test/py/ganeti.asyncnotifier_unittest.py \
1378         test/py/ganeti.backend_unittest-runasroot.py \
1379         test/py/ganeti.backend_unittest.py \
1380         test/py/ganeti.bootstrap_unittest.py \
1381         test/py/ganeti.cli_unittest.py \
1382         test/py/ganeti.client.gnt_cluster_unittest.py \
1383         test/py/ganeti.client.gnt_instance_unittest.py \
1384         test/py/ganeti.client.gnt_job_unittest.py \
1385         test/py/ganeti.compat_unittest.py \
1386         test/py/ganeti.confd.client_unittest.py \
1387         test/py/ganeti.config_unittest.py \
1388         test/py/ganeti.constants_unittest.py \
1389         test/py/ganeti.daemon_unittest.py \
1390         test/py/ganeti.errors_unittest.py \
1391         test/py/ganeti.hooks_unittest.py \
1392         test/py/ganeti.ht_unittest.py \
1393         test/py/ganeti.http_unittest.py \
1394         test/py/ganeti.hypervisor.hv_chroot_unittest.py \
1395         test/py/ganeti.hypervisor.hv_fake_unittest.py \
1396         test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1397         test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1398         test/py/ganeti.hypervisor.hv_xen_unittest.py \
1399         test/py/ganeti.hypervisor_unittest.py \
1400         test/py/ganeti.impexpd_unittest.py \
1401         test/py/ganeti.jqueue_unittest.py \
1402         test/py/ganeti.jstore_unittest.py \
1403         test/py/ganeti.locking_unittest.py \
1404         test/py/ganeti.luxi_unittest.py \
1405         test/py/ganeti.masterd.iallocator_unittest.py \
1406         test/py/ganeti.masterd.instance_unittest.py \
1407         test/py/ganeti.mcpu_unittest.py \
1408         test/py/ganeti.netutils_unittest.py \
1409         test/py/ganeti.objects_unittest.py \
1410         test/py/ganeti.opcodes_unittest.py \
1411         test/py/ganeti.outils_unittest.py \
1412         test/py/ganeti.ovf_unittest.py \
1413         test/py/ganeti.qlang_unittest.py \
1414         test/py/ganeti.query_unittest.py \
1415         test/py/ganeti.rapi.baserlib_unittest.py \
1416         test/py/ganeti.rapi.client_unittest.py \
1417         test/py/ganeti.rapi.resources_unittest.py \
1418         test/py/ganeti.rapi.rlib2_unittest.py \
1419         test/py/ganeti.rapi.testutils_unittest.py \
1420         test/py/ganeti.rpc_unittest.py \
1421         test/py/ganeti.runtime_unittest.py \
1422         test/py/ganeti.serializer_unittest.py \
1423         test/py/ganeti.server.rapi_unittest.py \
1424         test/py/ganeti.ssconf_unittest.py \
1425         test/py/ganeti.ssh_unittest.py \
1426         test/py/ganeti.storage.bdev_unittest.py \
1427         test/py/ganeti.storage.container_unittest.py \
1428         test/py/ganeti.storage.drbd_unittest.py \
1429         test/py/ganeti.storage.filestorage_unittest.py \
1430         test/py/ganeti.tools.burnin_unittest.py \
1431         test/py/ganeti.tools.ensure_dirs_unittest.py \
1432         test/py/ganeti.tools.node_daemon_setup_unittest.py \
1433         test/py/ganeti.tools.prepare_node_join_unittest.py \
1434         test/py/ganeti.uidpool_unittest.py \
1435         test/py/ganeti.utils.algo_unittest.py \
1436         test/py/ganeti.utils.filelock_unittest.py \
1437         test/py/ganeti.utils.hash_unittest.py \
1438         test/py/ganeti.utils.io_unittest-runasroot.py \
1439         test/py/ganeti.utils.io_unittest.py \
1440         test/py/ganeti.utils.log_unittest.py \
1441         test/py/ganeti.utils.lvm_unittest.py \
1442         test/py/ganeti.utils.mlock_unittest.py \
1443         test/py/ganeti.utils.nodesetup_unittest.py \
1444         test/py/ganeti.utils.process_unittest.py \
1445         test/py/ganeti.utils.retry_unittest.py \
1446         test/py/ganeti.utils.storage_unittest.py \
1447         test/py/ganeti.utils.text_unittest.py \
1448         test/py/ganeti.utils.wrapper_unittest.py \
1449         test/py/ganeti.utils.x509_unittest.py \
1450         test/py/ganeti.utils_unittest.py \
1451         test/py/ganeti.vcluster_unittest.py \
1452         test/py/ganeti.workerpool_unittest.py \
1453         test/py/pycurl_reset_unittest.py \
1454         test/py/qa.qa_config_unittest.py \
1455         test/py/tempfile_fork_unittest.py
1456
1457 python_test_support = \
1458         test/py/__init__.py \
1459         test/py/lockperf.py \
1460         test/py/testutils.py \
1461         test/py/mocks.py \
1462         test/py/cmdlib/__init__.py \
1463         test/py/cmdlib/testsupport/__init__.py \
1464         test/py/cmdlib/testsupport/cmdlib_testcase.py \
1465         test/py/cmdlib/testsupport/config_mock.py \
1466         test/py/cmdlib/testsupport/iallocator_mock.py \
1467         test/py/cmdlib/testsupport/lock_manager_mock.py \
1468         test/py/cmdlib/testsupport/netutils_mock.py \
1469         test/py/cmdlib/testsupport/processor_mock.py \
1470         test/py/cmdlib/testsupport/rpc_runner_mock.py \
1471         test/py/cmdlib/testsupport/ssh_mock.py \
1472         test/py/cmdlib/testsupport/util.py
1473
1474 haskell_tests = test/hs/htest
1475
1476 dist_TESTS = \
1477         test/py/check-cert-expired_unittest.bash \
1478         test/py/daemon-util_unittest.bash \
1479         test/py/ganeti-cleaner_unittest.bash \
1480         test/py/import-export_unittest.bash \
1481         test/py/cli-test.bash \
1482         test/py/bash_completion.bash
1483
1484 if PY_UNIT
1485 dist_TESTS += $(python_tests)
1486 endif
1487
1488 nodist_TESTS =
1489 check_SCRIPTS =
1490
1491 if WANT_HSTESTS
1492 nodist_TESTS += $(haskell_tests)
1493 dist_TESTS += test/hs/offline-test.sh
1494 check_SCRIPTS += \
1495         test/hs/hpc-htools \
1496         test/hs/hpc-mon-collector \
1497         $(HS_BUILT_TEST_HELPERS)
1498 endif
1499
1500 TESTS = $(dist_TESTS) $(nodist_TESTS)
1501
1502 # Environment for all tests
1503 PLAIN_TESTS_ENVIRONMENT = \
1504         PYTHONPATH=.:./test/py \
1505         TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1506         PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1507         $(RUN_IN_TEMPDIR)
1508
1509 # Environment for tests run by automake
1510 TESTS_ENVIRONMENT = \
1511         $(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1512
1513 all_python_code = \
1514         $(dist_sbin_SCRIPTS) \
1515         $(python_scripts) \
1516         $(pkglib_python_scripts) \
1517         $(nodist_pkglib_python_scripts) \
1518         $(nodist_tools_python_scripts) \
1519         $(pkgpython_PYTHON) \
1520         $(client_PYTHON) \
1521         $(cmdlib_PYTHON) \
1522         $(hypervisor_PYTHON) \
1523         $(storage_PYTHON) \
1524         $(rapi_PYTHON) \
1525         $(server_PYTHON) \
1526         $(pytools_PYTHON) \
1527         $(http_PYTHON) \
1528         $(confd_PYTHON) \
1529         $(masterd_PYTHON) \
1530         $(impexpd_PYTHON) \
1531         $(utils_PYTHON) \
1532         $(watcher_PYTHON) \
1533         $(noinst_PYTHON) \
1534         $(qa_scripts)
1535
1536 if PY_UNIT
1537 all_python_code += $(python_tests)
1538 all_python_code += $(python_test_support)
1539 endif
1540
1541 srclink_files = \
1542         man/footer.rst \
1543         test/py/check-cert-expired_unittest.bash \
1544         test/py/daemon-util_unittest.bash \
1545         test/py/ganeti-cleaner_unittest.bash \
1546         test/py/import-export_unittest.bash \
1547         test/py/cli-test.bash \
1548         test/py/bash_completion.bash \
1549         test/hs/offline-test.sh \
1550         test/hs/cli-tests-defs.sh \
1551         $(all_python_code) \
1552         $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1553         $(docinput)
1554
1555 check_python_code = \
1556         $(BUILD_BASH_COMPLETION) \
1557         $(CHECK_IMPORTS) \
1558         $(CHECK_HEADER) \
1559         $(DOCPP) \
1560         $(all_python_code)
1561
1562 lint_python_code = \
1563         ganeti \
1564         ganeti/http/server.py \
1565         $(dist_sbin_SCRIPTS) \
1566         $(python_scripts) \
1567         $(pkglib_python_scripts) \
1568         $(BUILD_BASH_COMPLETION) \
1569         $(CHECK_IMPORTS) \
1570         $(CHECK_HEADER) \
1571         $(DOCPP) \
1572         $(gnt_python_sbin_SCRIPTS) \
1573         $(PYTHON_BOOTSTRAP)
1574
1575 standalone_python_modules = \
1576         lib/rapi/client.py \
1577         tools/ganeti-listrunner
1578
1579 pep8_python_code = \
1580         ganeti \
1581         ganeti/http/server.py \
1582         $(dist_sbin_SCRIPTS) \
1583         $(python_scripts) \
1584         $(pkglib_python_scripts) \
1585         $(BUILD_BASH_COMPLETION) \
1586         $(CHECK_HEADER) \
1587         $(DOCPP) \
1588         $(PYTHON_BOOTSTRAP) \
1589         $(gnt_python_sbin_SCRIPTS) \
1590         qa \
1591         $(python_test_support)
1592
1593 test/py/daemon-util_unittest.bash: daemons/daemon-util
1594
1595 test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1596
1597 test/py/bash_completion.bash: doc/examples/bash_completion-debug
1598
1599 tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1600         sed -f $(REPLACE_VARS_SED) < $< > $@
1601         chmod +x $@
1602
1603 tools/vif-ganeti: tools/vif-ganeti.in $(REPLACE_VARS_SED)
1604         sed -f $(REPLACE_VARS_SED) < $< > $@
1605         chmod +x $@
1606
1607 tools/net-common: tools/net-common.in $(REPLACE_VARS_SED)
1608         sed -f $(REPLACE_VARS_SED) < $< > $@
1609         chmod +x $@
1610
1611 tools/users-setup: Makefile $(userspecs)
1612         set -e; \
1613         { echo '#!/bin/sh'; \
1614           echo 'if [ "x$$1" != "x--yes-do-it" ];'; \
1615           echo 'then echo "This will do the following changes"'; \
1616           $(AWK) -- '{print "echo + Will add group ",$$1; count++}\
1617                      END {if (count == 0) {print "echo + No groups to add"}}' doc/users/groups; \
1618           $(AWK) -- '{if (NF > 1) {print "echo + Will add user",$$1,"with primary group",$$2} \
1619                                   else {print "echo + Will add user",$$1}; count++}\
1620                      END {if (count == 0) {print "echo + No users to add"}}' doc/users/users; \
1621           $(AWK) -- '{print "echo + Will add user",$$1,"to group",$$2}' doc/users/groupmemberships; \
1622           echo 'echo'; \
1623           echo 'echo "OK? (y/n)"'; \
1624           echo 'read confirm'; \
1625           echo 'if [ "x$$confirm" != "xy" ]; then exit 0; fi'; \
1626           echo 'fi'; \
1627           $(AWK) -- '{print "addgroup --system",$$1}' doc/users/groups; \
1628           $(AWK) -- '{if (NF > 1) {print "adduser --system --ingroup",$$2,$$1} else {print "adduser --system",$$1}}' doc/users/users; \
1629           $(AWK) -- '{print "adduser",$$1,$$2}' doc/users/groupmemberships; \
1630         } > $@
1631         chmod +x $@
1632
1633 tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1634         sed -f $(REPLACE_VARS_SED) < $< > $@
1635         chmod +x $@
1636
1637 daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1638         sed -f $(REPLACE_VARS_SED) < $< > $@
1639         chmod +x $@
1640
1641 doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1642         sed -f $(REPLACE_VARS_SED) < $< > $@
1643
1644 doc/examples/bash_completion: BC_ARGS = --compact
1645 doc/examples/bash_completion-debug: BC_ARGS =
1646
1647 doc/examples/bash_completion doc/examples/bash_completion-debug: \
1648         $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1649         lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1650         daemons/ganeti-cleaner \
1651         $(GENERATED_FILES) $(HS_GENERATED_FILES)
1652         PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1653           $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1654
1655 man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1656         lib/build/shell_example_lexer.py \
1657         | $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1658         @echo "Checking $< for hardcoded paths..."
1659         @if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1660           echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1661           exit 1; \
1662         fi
1663         set -e ; \
1664         trap 'echo auto-removing $@; rm $@' EXIT; \
1665         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1666         $(CHECK_MAN_REFERENCES) $@; \
1667         trap - EXIT
1668
1669 man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1670         @test -n "$(PANDOC)" || \
1671           { echo 'pandoc' not found during configure; exit 1; }
1672         set -o pipefail -e; \
1673         trap 'echo auto-removing $@; rm $@' EXIT; \
1674         $(PANDOC) -s -f rst -t man $< man/footer.rst | \
1675           sed -e 's/\\@/@/g' > $@; \
1676         if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1677         $(CHECK_MAN_DASHES) $@; \
1678         trap - EXIT
1679
1680 man/%.html.in: man/%.gen man/footer.rst
1681         @test -n "$(PANDOC)" || \
1682           { echo 'pandoc' not found during configure; exit 1; }
1683         set -o pipefail ; \
1684         $(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1685           sed -e 's/\\@/@/g' > $@
1686
1687 man/%: man/%.in  $(REPLACE_VARS_SED)
1688         sed -f $(REPLACE_VARS_SED) < $< > $@
1689
1690 epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1691         sed -f $(REPLACE_VARS_SED) < $< > $@
1692
1693 vcs-version:
1694         if test -d .git; then \
1695           git describe > $@; \
1696         elif test ! -f $@ ; then \
1697           echo "Cannot auto-generate $@ file"; exit 1; \
1698         fi
1699
1700 .PHONY: clean-vcs-version
1701 clean-vcs-version:
1702         rm -f vcs-version
1703
1704 .PHONY: regen-vcs-version
1705 regen-vcs-version:
1706         @set -e; \
1707         cd $(srcdir); \
1708         if test -d .git; then \
1709           T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1710           git describe > $$T; \
1711           if ! cmp --quiet $$T vcs-version; then \
1712             mv $$T vcs-version; \
1713           fi; \
1714         fi
1715
1716 src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1717         vcs-version $(built_base_sources)
1718         set -e; \
1719         VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1720         sed -e "s/%ver%/$$VCSVER/" < $< > $@
1721
1722 src/Ganeti/Hs2Py/ListConstants.hs: src/Ganeti/Hs2Py/ListConstants.hs.in \
1723                                    src/Ganeti/HsConstants.hs \
1724                                  | stamp-directories
1725         @echo Generating $@
1726         @set -e; \
1727 ## Extract constant names from 'HsConstants.hs' by extracting the left
1728 ## side of all lines containing an equal sign (i.e., '=') and
1729 ## prepending the apostrophe sign (i.e., "'").
1730 ##
1731 ## For example, the constant
1732 ##   adminstDown = ...
1733 ## becomes
1734 ##   'adminstDown
1735         NAMES=$$(sed -n -e "/=/ s/\(.*\) =.*/    '\1:/g p" \
1736                  $(abs_top_srcdir)/src/Ganeti/HsConstants.hs); \
1737         m4 -DPY_CONSTANT_NAMES="$$NAMES" $(abs_top_srcdir)/$< > $@
1738
1739 src/Ganeti/PyConstants.hs: src/Ganeti/PyConstants.hs.in \
1740         lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1741         lib/jstore.py $(RUN_IN_TEMPDIR) \
1742         $(CONVERT_CONSTANTS) $(built_base_sources) \
1743         | lib/_vcsversion.py
1744         set -e; \
1745         { cat $< ; \
1746           PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
1747         } > $@
1748
1749 src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1750         hsc2hs -o $@ $<
1751
1752 test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1753         $(built_base_sources)
1754         set -e; \
1755         { cat $< ; \
1756           echo ; \
1757           for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1758             echo "import $$name ()" ; \
1759           done ; \
1760         } > $@
1761
1762 lib/_autoconf.py: Makefile | stamp-directories
1763         set -e; \
1764         { echo '# This file is automatically generated, do not edit!'; \
1765           echo '#'; \
1766           echo ''; \
1767           echo '"""Build-time configuration for Ganeti.'; \
1768           echo '';\
1769           echo 'This file is autogenerated by the build process.'; \
1770           echo 'For any changes you need to re-run ./configure (and'; \
1771           echo 'not edit by hand).'; \
1772           echo ''; \
1773           echo '"""'; \
1774           echo ''; \
1775           echo '# pylint: disable=C0301,C0324'; \
1776           echo '# because this is autogenerated, we do not want'; \
1777           echo '# style warnings' ; \
1778           echo ''; \
1779           echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1780           echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1781           echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1782           echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1783           echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1784           echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1785           echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1786           echo "SYSCONFDIR = '$(sysconfdir)'"; \
1787           echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1788           echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1789           echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1790           echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1791           echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1792           echo "XEN_CONFIG_DIR = '$(XEN_CONFIG_DIR)'"; \
1793           echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1794           echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1795           echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1796           echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1797           echo "KVM_PATH = '$(KVM_PATH)'"; \
1798           echo "IP_PATH = '$(IP_PATH)'"; \
1799           echo "SOCAT_PATH = '$(SOCAT)'"; \
1800           echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1801           echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1802           echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1803           echo "TOOLSDIR = '$(libdir)/ganeti/tools'"; \
1804           echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1805           echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1806           echo "PKGLIBDIR = '$(libdir)/ganeti'"; \
1807           echo "VERSIONEDSHAREDIR = '$(versionedsharedir)'"; \
1808           echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1809           echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1810           echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1811           echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1812           echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1813           echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1814           echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1815           echo "RAPI_USER = '$(RAPI_USER)'"; \
1816           echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1817           echo "CONFD_USER = '$(CONFD_USER)'"; \
1818           echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1819           echo "LUXID_USER = '$(LUXID_USER)'"; \
1820           echo "LUXID_GROUP = '$(LUXID_GROUP)'"; \
1821           echo "NODED_USER = '$(NODED_USER)'"; \
1822           echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1823           echo "MOND_USER = '$(MOND_USER)'"; \
1824           echo "MOND_GROUP = '$(MOND_GROUP)'"; \
1825           echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1826           echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1827           echo "HTOOLS = True"; \
1828           echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1829           echo "XEN_CMD = '$(XEN_CMD)'"; \
1830           echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1831           echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1832           echo "ENABLE_MOND = $(ENABLE_MOND)"; \
1833 ## Write dictionary with man page name as the key and the section number as the
1834 ## value
1835           echo "MAN_PAGES = {"; \
1836           for i in $(notdir $(man_MANS)); do \
1837             echo "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/  "\1": \2,/g'; \
1838           done; \
1839           echo "}"; \
1840         } > $@
1841
1842 lib/_constants.py: Makefile lib/_constants.py.in src/hs2py-constants \
1843                  | stamp-directories
1844         cat $(abs_top_srcdir)/lib/_constants.py.in > $@
1845         src/hs2py-constants >> $@
1846
1847 lib/constants.py: lib/_constants.py
1848
1849 src/AutoConf.hs: Makefile src/AutoConf.hs.in | stamp-directories
1850         @echo "m4 ... >" $@
1851         @m4 -DPACKAGE_VERSION="$(PACKAGE_VERSION)" \
1852             -DVERSION_MAJOR="$(VERSION_MAJOR)" \
1853             -DVERSION_MINOR="$(VERSION_MINOR)" \
1854             -DVERSION_REVISION="$(VERSION_REVISION)" \
1855             -DVERSION_SUFFIX="$(VERSION_SUFFIX)" \
1856             -DVERSION_FULL="$(VERSION_FULL)" \
1857             -DLOCALSTATEDIR="$(localstatedir)" \
1858             -DSYSCONFDIR="$(sysconfdir)" \
1859             -DSSH_CONFIG_DIR="$(SSH_CONFIG_DIR)" \
1860             -DSSH_LOGIN_USER="$(SSH_LOGIN_USER)" \
1861             -DSSH_CONSOLE_USER="$(SSH_CONSOLE_USER)" \
1862             -DEXPORT_DIR="$(EXPORT_DIR)" \
1863             -DOS_SEARCH_PATH="$(foreach i,$(OS_SEARCH_PATH),\"$(i)\":)" \
1864             -DES_SEARCH_PATH="$(foreach i,$(ES_SEARCH_PATH),\"$(i)\":)" \
1865             -DXEN_BOOTLOADER="$(XEN_BOOTLOADER)" \
1866             -DXEN_CONFIG_DIR="$(XEN_CONFIG_DIR)" \
1867             -DXEN_KERNEL="$(XEN_KERNEL)" \
1868             -DXEN_INITRD="$(XEN_INITRD)" \
1869             -DKVM_KERNEL="$(KVM_KERNEL)" \
1870             -DSHARED_FILE_STORAGE_DIR="$(SHARED_FILE_STORAGE_DIR)" \
1871             -DIALLOCATOR_SEARCH_PATH="$(foreach i,$(IALLOCATOR_SEARCH_PATH),\"$(i)\":)" \
1872             -DKVM_PATH="$(KVM_PATH)" \
1873             -DIP_PATH="$(IP_PATH)" \
1874             -DSOCAT_PATH="$(SOCAT)" \
1875             -DSOCAT_USE_ESCAPE="$(SOCAT_USE_ESCAPE)" \
1876             -DSOCAT_USE_COMPRESS="$(SOCAT_USE_COMPRESS)" \
1877             -DLVM_STRIPECOUNT="$(LVM_STRIPECOUNT)" \
1878             -DTOOLSDIR="$(libdir)/ganeti/tools" \
1879             -DGNT_SCRIPTS="$(foreach i,$(notdir $(gnt_scripts)),\"$(i)\":)" \
1880             -DHS_HTOOLS_PROGS="$(foreach i,$(HS_HTOOLS_PROGS),\"$(i)\":)" \
1881             -DPKGLIBDIR="$(libdir)/ganeti" \
1882             -DVERSIONEDSHAREDIR="$(versionedsharedir)" \
1883             -DDRBD_BARRIERS="$(DRBD_BARRIERS)" \
1884             -DDRBD_NO_META_FLUSH="$(DRBD_NO_META_FLUSH)" \
1885             -DSYSLOG_USAGE="$(SYSLOG_USAGE)" \
1886             -DDAEMONS_GROUP="$(DAEMONS_GROUP)" \
1887             -DADMIN_GROUP="$(ADMIN_GROUP)" \
1888             -DMASTERD_USER="$(MASTERD_USER)" \
1889             -DMASTERD_GROUP="$(MASTERD_GROUP)" \
1890             -DRAPI_USER="$(RAPI_USER)" \
1891             -DRAPI_GROUP="$(RAPI_GROUP)" \
1892             -DCONFD_USER="$(CONFD_USER)" \
1893             -DCONFD_GROUP="$(CONFD_GROUP)" \
1894             -DLUXID_USER="$(LUXID_USER)" \
1895             -DLUXID_GROUP="$(LUXID_GROUP)" \
1896             -DNODED_USER="$(NODED_USER)" \
1897             -DNODED_GROUP="$(NODED_GROUP)" \
1898             -DMOND_USER="$(MOND_USER)" \
1899             -DMOND_GROUP="$(MOND_GROUP)" \
1900             -DDISK_SEPARATOR="$(DISK_SEPARATOR)" \
1901             -DQEMUIMG_PATH="$(QEMUIMG_PATH)" \
1902             -DHTOOLS="True" \
1903             -DENABLE_CONFD="$(ENABLE_CONFD)" \
1904             -DXEN_CMD="$(XEN_CMD)" \
1905             -DENABLE_SPLIT_QUERY="$(ENABLE_SPLIT_QUERY)" \
1906             -DENABLE_RESTRICTED_COMMANDS="$(ENABLE_RESTRICTED_COMMANDS)" \
1907             -DENABLE_MOND="$(ENABLE_MOND)" \
1908             -DMAN_PAGES="$$(for i in $(notdir $(man_MANS)); do \
1909                             echo -n "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/("\1",\2):/g'; \
1910                             done)" \
1911         $(abs_top_srcdir)/src/AutoConf.hs.in > $@
1912
1913 lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1914         set -e; \
1915         VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1916         { echo '# This file is automatically generated, do not edit!'; \
1917           echo '#'; \
1918           echo ''; \
1919           echo '"""Build-time VCS version number for Ganeti.'; \
1920           echo '';\
1921           echo 'This file is autogenerated by the build process.'; \
1922           echo 'For any changes you need to re-run ./configure (and'; \
1923           echo 'not edit by hand).'; \
1924           echo ''; \
1925           echo '"""'; \
1926           echo ''; \
1927           echo '# pylint: disable=C0301,C0324'; \
1928           echo '# because this is autogenerated, we do not want'; \
1929           echo '# style warnings' ; \
1930           echo ''; \
1931           echo "VCS_VERSION = '$$VCSVER'"; \
1932         } > $@
1933
1934 lib/opcodes.py: Makefile src/hs2py src/Ganeti/PyConstants.hs \
1935                 lib/opcodes.py.in_before lib/opcodes.py.in_after \
1936                 | stamp-directories
1937         cat $(abs_top_srcdir)/lib/opcodes.py.in_before > $@
1938         src/hs2py >> $@
1939         cat $(abs_top_srcdir)/lib/opcodes.py.in_after >> $@
1940
1941 lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1942         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1943
1944 $(SHELL_ENV_INIT): Makefile stamp-directories
1945         set -e; \
1946         { echo '# Allow overriding for tests'; \
1947           echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1948           echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1949           echo; \
1950           echo 'readonly PKGLIBDIR=$(libdir)/ganeti'; \
1951           echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1952           echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1953           echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1954           echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1955         } > $@
1956
1957 ## Writes sed script to replace placeholders with build-time values. The
1958 ## additional quotes after the first @ sign are necessary to stop configure
1959 ## from replacing those values as well.
1960 $(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1961         set -e; \
1962         { echo 's#@''PREFIX@#$(prefix)#g'; \
1963           echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1964           echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1965           echo 's#@''BINDIR@#$(execprefix)/bin#g'; \
1966           echo 's#@''SBINDIR@#$(execprefix)/sbin#g'; \
1967           echo 's#@''LIBDIR@#$(libdir)#g'; \
1968           echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1969           echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1970           echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1971           echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1972           echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1973           echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1974           echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1975           echo 's#@''PKGLIBDIR@#$(libdir)/ganeti#g'; \
1976           echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1977           echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1978           echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1979           echo 's#@''GNTLUXIDUSER@#$(LUXID_USER)#g'; \
1980           echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1981           echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1982           echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1983           echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1984           echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1985           echo 's#@''GNTLUXIDGROUP@#$(LUXID_GROUP)#g'; \
1986           echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1987           echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1988           echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1989           echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1990           echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1991           echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1992           echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1993           echo; \
1994           echo '/^@SHELL_ENV_INIT@$$/ {'; \
1995           echo '  r $(SHELL_ENV_INIT)'; \
1996           echo '  d'; \
1997           echo '}'; \
1998         } > $@
1999
2000 # Using deferred evaluation
2001 daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
2002 daemons/ganeti-watcher: MODULE = ganeti.watcher
2003 scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
2004 tools/burnin: MODULE = ganeti.tools.burnin
2005 tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
2006 tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
2007 tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
2008 tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
2009 $(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
2010
2011 $(PYTHON_BOOTSTRAP) $(gnt_scripts) $(gnt_python_sbin_SCRIPTS): Makefile | stamp-directories
2012         test -n "$(MODULE)" || { echo Missing module; exit 1; }
2013         set -e; \
2014         { echo '#!/usr/bin/python'; \
2015           echo '# This file is automatically generated, do not edit!'; \
2016           echo "# Edit $(MODULE) instead."; \
2017           echo; \
2018           echo '"""Bootstrap script for L{$(MODULE)}"""'; \
2019           echo; \
2020           echo '# pylint: disable=C0103'; \
2021           echo '# C0103: Invalid name'; \
2022           echo; \
2023           echo 'import sys'; \
2024           echo 'import $(MODULE) as main'; \
2025           echo; \
2026           echo '# Temporarily alias commands until bash completion'; \
2027           echo '# generator is changed'; \
2028           echo 'if hasattr(main, "commands"):'; \
2029           echo '  commands = main.commands # pylint: disable=E1101'; \
2030           echo 'if hasattr(main, "aliases"):'; \
2031           echo '  aliases = main.aliases # pylint: disable=E1101'; \
2032           echo; \
2033           echo 'if __name__ == "__main__":'; \
2034           echo '  sys.exit(main.Main())'; \
2035         } > $@
2036         chmod u+x $@
2037
2038 $(HS_BUILT_TEST_HELPERS): Makefile
2039         @test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
2040         set -e; \
2041         { echo '#!/bin/sh'; \
2042           echo '# This file is automatically generated, do not edit!'; \
2043           echo "# Edit Makefile.am instead."; \
2044           echo; \
2045           echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
2046         } > $@
2047         chmod u+x $@
2048
2049 stamp-directories: Makefile
2050         $(MAKE) $(AM_MAKEFLAGS) ganeti
2051         @mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
2052         touch $@
2053
2054 # We need to create symlinks because "make distcheck" will not install Python
2055 # files when building.
2056 stamp-srclinks: Makefile | stamp-directories
2057         set -e; \
2058         for i in $(srclink_files); do \
2059           if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
2060             $(LN_S) $(abs_top_srcdir)/$$i $$i; \
2061           fi; \
2062         done
2063         touch $@
2064
2065 .PHONY: ganeti
2066 ganeti:
2067         cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
2068
2069 .PHONY: check-dirs
2070 check-dirs: $(GENERATED_FILES)
2071         @set -e; \
2072         find . -type d \( -name . -o -name .git -prune -o -print \) | { \
2073           error=; \
2074           while read dir; do \
2075             case "$$dir" in \
2076               $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
2077               *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
2078             esac; \
2079           done; \
2080           for dir in $(DIRS); do \
2081             if ! test -d "$$dir"; then \
2082               echo "Directory $$dir listed in DIRS does not exist" >&2; \
2083               error=1; \
2084             fi \
2085           done; \
2086           test -z "$$error"; \
2087         }
2088
2089 .PHONY: check-local
2090 check-local: check-dirs $(GENERATED_FILES)
2091         $(CHECK_PYTHON_CODE) $(check_python_code)
2092         PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
2093         $(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
2094         RELEASE=$(PACKAGE_VERSION) $(CHECK_NEWS) < $(top_srcdir)/NEWS
2095         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
2096         error= ; \
2097         if [ "x`echo $(VERSION_SUFFIX)|grep 'alpha'`" == "x" ]; then \
2098           expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
2099           if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
2100             echo "Incorrect version in README, expected $$expver" >&2; \
2101             error=1; \
2102           fi; \
2103           for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
2104               doc/security.rst; do \
2105             if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
2106               "Documents Ganeti version $$expver"; then \
2107               echo "Incorrect version in $$file, expected $$expver" >&2; \
2108               error=1; \
2109             fi; \
2110           done; \
2111           if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
2112             echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
2113             error=1; \
2114           fi; \
2115           if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
2116             ".. Last updated for Ganeti $$expver"; then \
2117             echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
2118             error=1; \
2119           fi; \
2120         fi; \
2121         for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
2122           if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
2123             echo "Longest line in $$file is longer than 80 characters" >&2; \
2124             error=1; \
2125           fi; \
2126         done; \
2127         test -z "$$error"
2128
2129 .PHONY: hs-test-%
2130 hs-test-%: test/hs/htest | $(BUILT_PYTHON_SOURCES)
2131         @rm -f htest.tix
2132         test/hs/htest -t $*
2133
2134 .PHONY: hs-tests
2135 hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
2136         @rm -f htest.tix
2137         ./test/hs/htest
2138
2139 .PHONY: hs-shell-%
2140 hs-shell-%: test/hs/hpc-htools test/hs/hpc-mon-collector \
2141             $(HS_BUILT_TEST_HELPERS)
2142         @rm -f hpc-htools.tix hpc-mon-collector.tix
2143         HBINARY="./test/hs/hpc-htools" \
2144         SHELLTESTARGS=$(SHELLTESTARGS) \
2145         ./test/hs/offline-test.sh $*
2146
2147 .PHONY: hs-shell
2148 hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
2149         @rm -f hpc-htools.tix hpc-mon-collector.tix
2150         HBINARY="./test/hs/hpc-htools" \
2151         SHELLTESTARGS=$(SHELLTESTARGS) \
2152         ./test/hs/offline-test.sh
2153
2154 .PHONY: hs-check
2155 hs-check: hs-tests hs-shell
2156
2157 # E111: indentation is not a multiple of four
2158 # E121: continuation line indentation is not a multiple of four
2159 #       (since our indent level is not 4)
2160 # E125: continuation line does not distinguish itself from next logical line
2161 #       (since our indent level is not 4)
2162 # E127: continuation line over-indented for visual indent
2163 #       (since our indent level is not 4)
2164 # note: do NOT add E128 here; it's a valid style error in most cases!
2165 # I've seen real errors, but also some cases were we indent wrongly
2166 # due to line length; try to rework the cases where it is triggered,
2167 # instead of silencing it
2168 # E261: at least two spaces before inline comment
2169 # E501: line too long (80 characters)
2170 PEP8_IGNORE = E111,E121,E125,E127,E261,E501
2171
2172 # For excluding pep8 expects filenames only, not whole paths
2173 PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
2174
2175 LINT_TARGETS = pylint pylint-qa pylint-test
2176 if HAS_PEP8
2177 LINT_TARGETS += pep8
2178 endif
2179 if HAS_HLINT
2180 LINT_TARGETS += hlint
2181 endif
2182
2183 .PHONY: lint
2184 lint: $(LINT_TARGETS)
2185
2186 .PHONY: pylint
2187 pylint: $(GENERATED_FILES)
2188         @test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2189         $(PYLINT) $(LINT_OPTS) $(lint_python_code)
2190
2191 .PHONY: pylint-qa
2192 pylint-qa: $(GENERATED_FILES)
2193         @test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2194         cd $(top_srcdir)/qa && \
2195           PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
2196           --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
2197 # FIXME: lint all test code, not just the newly added test support
2198 pylint-test: $(GENERATED_FILES)
2199         @test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2200         cd $(top_srcdir) && \
2201                 PYTHONPATH=.:./test/py $(PYLINT) $(LINT_OPTS) \
2202                 --rcfile=pylintrc-test  $(python_test_support)
2203
2204 .PHONY: pep8
2205 pep8: $(GENERATED_FILES)
2206         @test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
2207         $(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
2208           --repeat $(pep8_python_code)
2209
2210 # FIXME: remove ignore "Use void" when GHC 6.x is deprecated
2211 HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
2212 .PHONY: hlint
2213 hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
2214         @test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
2215         @rm -f doc/hs-lint.html
2216         if tty -s; then C="-c"; else C=""; fi; \
2217         $(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
2218           --ignore "Use first" \
2219           --ignore "Use &&&" \
2220           --ignore "Use void" \
2221           --ignore "Reduce duplication" \
2222           --hint src/lint-hints \
2223           $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
2224         @if [ ! -f doc/hs-lint.html ]; then \
2225           echo "All good" > doc/hs-lint.html; \
2226         fi
2227
2228 # a dist hook rule for updating the vcs-version file; this is
2229 # hardcoded due to where it needs to build the file...
2230 dist-hook:
2231         $(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
2232         rm -f $(top_distdir)/vcs-version
2233         cp -p $(srcdir)/vcs-version $(top_distdir)
2234
2235 # a distcheck hook rule for catching revision control directories
2236 distcheck-hook:
2237         if find $(top_distdir) -name .svn -or -name .git | grep .; then \
2238           echo "Found revision control files in final archive." 1>&2; \
2239           exit 1; \
2240         fi
2241         if find $(top_distdir) -name '*.py[co]' | grep .; then \
2242           echo "Found Python byte code in final archive." 1>&2; \
2243           exit 1; \
2244         fi
2245         if find $(top_distdir) -name '*~' | grep .; then \
2246           echo "Found backup files in final archive." 1>&2; \
2247           exit 1; \
2248         fi
2249 # Empty files or directories should not be distributed. They can cause
2250 # unnecessary warnings for packagers. Directories used by automake during
2251 # distcheck must be excluded.
2252         if find $(top_distdir) -empty -and -not \( \
2253             -path $(top_distdir)/_build -or \
2254             -path $(top_distdir)/_inst \) | grep .; then \
2255           echo "Found empty files or directories in final archive." 1>&2; \
2256           exit 1; \
2257         fi
2258         if test -e $(top_distdir)/doc/man-html; then \
2259           echo "Found documentation including man pages in final archive" >&2; \
2260           exit 1; \
2261         fi
2262
2263 # Backwards compatible distcheck-release target
2264 distcheck-release: distcheck
2265
2266 distrebuildcheck: dist
2267         set -e; \
2268         builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
2269         trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
2270         cd $$builddir; \
2271         tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
2272         cd $(distdir); \
2273         ./configure; \
2274         $(MAKE) maintainer-clean; \
2275         cp $(abs_srcdir)/vcs-version .; \
2276         ./configure; \
2277         $(MAKE) $(AM_MAKEFLAGS)
2278
2279 dist-release: dist
2280         set -e; \
2281         for i in $(DIST_ARCHIVES); do \
2282           echo -n "Checking $$i ... "; \
2283           autotools/check-tar < $$i; \
2284           echo OK; \
2285         done
2286
2287 install-exec-local:
2288         @mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
2289           "$(DESTDIR)${localstatedir}/log/ganeti" \
2290           "$(DESTDIR)${localstatedir}/run/ganeti"
2291         for dir in $(SYMLINK_TARGET_DIRS); do \
2292           @mkdir_p@  $(DESTDIR)$$dir; \
2293         done
2294         $(LN_S) -f $(sysconfdir)/ganeti/lib $(DESTDIR)$(defaultversiondir)
2295         $(LN_S) -f $(sysconfdir)/ganeti/share $(DESTDIR)$(defaultversionedsharedir)
2296         for prog in $(HS_BIN_ROLES); do \
2297           $(LN_S) -f $(defaultversiondir)$(exec_prefix)/bin/$$prog $(DESTDIR)$(exec_prefix)/bin/$$prog; \
2298         done
2299         $(LN_S) -f $(defaultversiondir)$(libdir)/ganeti/iallocators/hail $(DESTDIR)$(libdir)/ganeti/iallocators/hail
2300         for prog in $(all_sbin_scripts); do \
2301           $(LN_S) -f $(defaultversiondir)$(exec_prefix)/sbin/$$prog $(DESTDIR)$(exec_prefix)/sbin/$$prog; \
2302         done
2303         for prog in $(gnt_scripts_basenames); do \
2304           $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(exec_prefix)/sbin/$$prog; \
2305         done
2306         for prog in $(pkglib_python_basenames); do \
2307           $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(libdir)/ganeti/$$prog; \
2308         done
2309         for prog in $(tools_python_basenames); do \
2310           $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(libdir)/ganeti/tools/$$prog; \
2311         done
2312         for prog in $(tools_basenames); do \
2313           $(LN_S) -f $(defaultversiondir)/$(libdir)/ganeti/tools/$$prog $(DESTDIR)$(libdir)/ganeti/tools/$$prog; \
2314         done
2315         if ! test -n '$(ENABLE_MANPAGES)'; then \
2316           for man in $(manfullpath); do \
2317             $(LN_S) -f $(defaultversionedsharedir)$(datarootdir)/man/$$man $(DESTDIR)$(datarootdir)/man/$$man; \
2318           done; \
2319         fi
2320         for prog in $(myexeclib_scripts_basenames); do \
2321           $(LN_S) -f $(defaultversiondir)$(libdir)/ganeti/$$prog $(DESTDIR)$(libdir)/ganeti/$$prog; \
2322         done
2323 if INSTALL_SYMLINKS
2324         $(LN_S) -f $(versionedsharedir) $(DESTDIR)$(sysconfdir)/ganeti/share
2325         $(LN_S) -f $(versiondir) $(DESTDIR)$(sysconfdir)/ganeti/lib
2326 endif
2327
2328 .PHONY: apidoc
2329 if WANT_HSAPIDOC
2330 apidoc: py-apidoc hs-apidoc
2331 else
2332 apidoc: py-apidoc
2333 endif
2334
2335 .PHONY: py-apidoc
2336 py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
2337         env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
2338         $(RUN_IN_TEMPDIR) epydoc -v \
2339           --conf $(CURDIR)/epydoc.conf \
2340           --output $(CURDIR)/$(APIDOC_PY_DIR)
2341
2342 .PHONY: hs-apidoc
2343 hs-apidoc: $(APIDOC_HS_DIR)/index.html
2344
2345 $(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
2346         @test -n "$(HSCOLOUR)" || \
2347             { echo 'HsColour' not found during configure; exit 1; }
2348         @test -n "$(HADDOCK)" || \
2349             { echo 'haddock' not found during configure; exit 1; }
2350         rm -rf $(APIDOC_HS_DIR)/*
2351         for i in $(ALL_APIDOC_HS_DIRS); do \
2352           @mkdir_p@ $$i; \
2353           $(HSCOLOUR) -print-css > $$i/hscolour.css; \
2354         done
2355         set -e ; \
2356         export LC_ALL=en_US.UTF-8; \
2357         OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
2358         if [ "$(HS_PARALLEL3)" ]; \
2359         then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
2360         fi; \
2361         if [ "$(HS_REGEX_PCRE)" ]; \
2362         then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
2363         fi; \
2364         for file in $(HS_LIBTESTBUILT_SRCS); do \
2365           f_nosrc=$${file##src/}; \
2366           f_notst=$${f_nosrc##test/hs/}; \
2367           f_html=$${f_notst%%.hs}.html; \
2368           $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
2369         done ; \
2370         $(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
2371           -t ganeti -p src/haddock-prologue \
2372           --source-module="%{MODULE/.//}.html" \
2373           --source-entity="%{MODULE/.//}.html#%{NAME}" \
2374           $$OPTGHC \
2375           $(HS_LIBTESTBUILT_SRCS)
2376
2377 .PHONY: TAGS
2378 TAGS: $(GENERATED_FILES)
2379         rm -f TAGS
2380         $(GHC) -e ":etags" -v0 \
2381           $(filter-out -O -Werror,$(HFLAGS)) \
2382           $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
2383           $(HS_LIBTEST_SRCS)
2384         find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
2385           -path './daemons/ganeti-*' -o -path './tools/*' -o \
2386           -path './qa/*.py' | \
2387           etags -l python -a -
2388
2389 .PHONY: coverage
2390
2391 COVERAGE_TESTS=
2392 if WANT_HTOOLS
2393 COVERAGE_TESTS += hs-coverage
2394 endif
2395 if PY_UNIT
2396 COVERAGE_TESTS += py-coverage
2397 endif
2398
2399 coverage: $(COVERAGE_TESTS)
2400
2401 .PHONY: py-coverage
2402 py-coverage: $(GENERATED_FILES) $(python_tests)
2403         @test -n "$(PYCOVERAGE)" || \
2404             { echo 'python-coverage' not found during configure; exit 1; }
2405         set -e; \
2406         COVERAGE=$(PYCOVERAGE) \
2407         COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
2408         TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
2409         HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
2410         $(PLAIN_TESTS_ENVIRONMENT) \
2411         $(abs_top_srcdir)/autotools/gen-py-coverage \
2412         $(python_tests)
2413
2414 .PHONY: hs-coverage
2415 hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
2416         rm -f *.tix
2417         $(MAKE) $(AM_MAKEFLAGS) hs-check
2418         @mkdir_p@ $(COVERAGE_HS_DIR)
2419         hpc sum --union $(HPCEXCL) \
2420           htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
2421         hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
2422         hpc report coverage-hs.tix | tee $(COVERAGE_HS_DIR)/report.txt
2423         $(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
2424
2425 # Special "kind-of-QA" target for htools, needs special setup (all
2426 # tools compiled with -fhpc)
2427 .PHONY: live-test
2428 live-test: all
2429         set -e ; \
2430         cd src; \
2431         rm -f .hpc; $(LN_S) ../.hpc .hpc; \
2432         rm -f *.tix *.mix; \
2433         ./live-test.sh; \
2434         hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
2435           --output=live-test.tix ; \
2436         @mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
2437         hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
2438           --srcdir=.. $(HPCEXCL) ; \
2439         hpc report --srcdir=.. live-test $(HPCEXCL)
2440
2441 commit-check: autotools-check distcheck lint apidoc
2442
2443 autotools-check:
2444         TESTDATA_DIR=./test/data shelltest $(SHELLTESTARGS) \
2445   $(abs_top_srcdir)/test/autotools/*-*.test \
2446   -- --hide-successes
2447
2448 .PHONY: gitignore-check
2449 gitignore-check:
2450         @if [ -n "`git status --short`" ]; then \
2451           echo "Git status is not clean!" 1>&2 ; \
2452           git status --short; \
2453           exit 1; \
2454         fi
2455
2456 # target to rebuild all man pages (both groff and html output)
2457 .PHONY: man
2458 man: $(man_MANS) $(manhtml)
2459
2460 # Target that builds all binaries (including those that are not
2461 # rebuilt except when running the tests)
2462 .PHONY: really-all
2463 really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
2464
2465 # we don't need the ancient implicit rules:
2466 %: %,v
2467 %: RCS/%,v
2468 %: RCS/%
2469 %: s.%
2470 %: SCCS/s.%
2471
2472 -include ./Makefile.local
2473
2474 # vim: set noet :