Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 88a0e24b

History | View | Annotate | Download (71.8 kB)

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
PRINT_PY_CONSTANTS = $(top_srcdir)/autotools/print-py-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
	.hpc/*.mix src/*.tix test/hs/*.tix *.tix \
273
	doc/hs-lint.html
274

    
275
GENERATED_FILES = \
276
	$(built_base_sources) \
277
	$(BUILT_PYTHON_SOURCES) \
278
	$(PYTHON_BOOTSTRAP) \
279
	$(gnt_python_sbin_SCRIPTS)
280

    
281
HS_GENERATED_FILES =
282
if WANT_HTOOLS
283
HS_GENERATED_FILES += $(HS_PROGS)
284
if ENABLE_CONFD
285
HS_GENERATED_FILES += src/hconfd src/ganeti-confd src/hluxid src/ganeti-luxid
286
endif
287

    
288
if ENABLE_MOND
289
HS_GENERATED_FILES += src/ganeti-mond
290
endif
291
endif
292

    
293
built_base_sources = \
294
	stamp-directories \
295
	stamp-srclinks
296

    
297
built_python_base_sources = \
298
	lib/_constants.py \
299
	lib/_vcsversion.py \
300
	lib/opcodes.py
301

    
302
BUILT_PYTHON_SOURCES = \
303
	$(built_python_base_sources) \
304
	lib/_generated_rpc.py
305

    
306
# Generating the RPC wrappers depends on many things, so make sure
307
# it's built at the end of the built sources
308
lib/_generated_rpc.py: | $(built_base_sources) $(built_python_base_sources)
309

    
310
# these are all built from the underlying %.in sources
311
BUILT_EXAMPLES = \
312
	doc/examples/ganeti-kvm-poweroff.initd \
313
	doc/examples/ganeti.cron \
314
	doc/examples/ganeti.initd \
315
	doc/examples/ganeti.logrotate \
316
	doc/examples/ganeti-master-role.ocf \
317
	doc/examples/ganeti-node-role.ocf \
318
	doc/examples/gnt-config-backup \
319
	doc/examples/hooks/ipsec
320

    
321
nodist_pkgpython_PYTHON = \
322
	$(BUILT_PYTHON_SOURCES)
323

    
324
nodist_pkgpython_bin_SCRIPTS = \
325
	$(nodist_pkglib_python_scripts)
326

    
327
pkgpython_bin_SCRIPTS = \
328
	$(pkglib_python_scripts)
329

    
330
noinst_PYTHON = \
331
	lib/build/__init__.py \
332
	lib/build/shell_example_lexer.py \
333
	lib/build/sphinx_ext.py
334

    
335
pkgpython_PYTHON = \
336
	lib/__init__.py \
337
	lib/asyncnotifier.py \
338
	lib/backend.py \
339
	lib/bootstrap.py \
340
	lib/cli.py \
341
	lib/compat.py \
342
	lib/config.py \
343
	lib/constants.py \
344
	lib/daemon.py \
345
	lib/errors.py \
346
	lib/hooksmaster.py \
347
	lib/ht.py \
348
	lib/jqueue.py \
349
	lib/jstore.py \
350
	lib/locking.py \
351
	lib/luxi.py \
352
	lib/mcpu.py \
353
	lib/netutils.py \
354
	lib/objects.py \
355
	lib/opcodes_base.py \
356
	lib/outils.py \
357
	lib/ovf.py \
358
	lib/pathutils.py \
359
	lib/qlang.py \
360
	lib/query.py \
361
	lib/rpc.py \
362
	lib/rpc_defs.py \
363
	lib/runtime.py \
364
	lib/serializer.py \
365
	lib/ssconf.py \
366
	lib/ssh.py \
367
	lib/uidpool.py \
368
	lib/vcluster.py \
369
	lib/network.py \
370
	lib/workerpool.py
371

    
372
client_PYTHON = \
373
	lib/client/__init__.py \
374
	lib/client/gnt_backup.py \
375
	lib/client/gnt_cluster.py \
376
	lib/client/gnt_debug.py \
377
	lib/client/gnt_group.py \
378
	lib/client/gnt_instance.py \
379
	lib/client/gnt_job.py \
380
	lib/client/gnt_node.py \
381
	lib/client/gnt_network.py \
382
	lib/client/gnt_os.py \
383
	lib/client/gnt_storage.py
384

    
385
cmdlib_PYTHON = \
386
	lib/cmdlib/__init__.py \
387
	lib/cmdlib/backup.py \
388
	lib/cmdlib/base.py \
389
	lib/cmdlib/cluster.py \
390
	lib/cmdlib/common.py \
391
	lib/cmdlib/group.py \
392
	lib/cmdlib/instance.py \
393
	lib/cmdlib/instance_migration.py \
394
	lib/cmdlib/instance_operation.py \
395
	lib/cmdlib/instance_query.py \
396
	lib/cmdlib/instance_storage.py \
397
	lib/cmdlib/instance_utils.py \
398
	lib/cmdlib/misc.py \
399
	lib/cmdlib/network.py \
400
	lib/cmdlib/node.py \
401
	lib/cmdlib/operating_system.py \
402
	lib/cmdlib/query.py \
403
	lib/cmdlib/tags.py \
404
	lib/cmdlib/test.py
405

    
406
hypervisor_PYTHON = \
407
	lib/hypervisor/__init__.py \
408
	lib/hypervisor/hv_base.py \
409
	lib/hypervisor/hv_chroot.py \
410
	lib/hypervisor/hv_fake.py \
411
	lib/hypervisor/hv_kvm.py \
412
	lib/hypervisor/hv_lxc.py \
413
	lib/hypervisor/hv_xen.py
414

    
415
storage_PYTHON = \
416
	lib/storage/__init__.py \
417
	lib/storage/bdev.py \
418
	lib/storage/base.py \
419
	lib/storage/container.py \
420
	lib/storage/drbd.py \
421
	lib/storage/drbd_info.py \
422
	lib/storage/drbd_cmdgen.py \
423
	lib/storage/filestorage.py
424

    
425
rapi_PYTHON = \
426
	lib/rapi/__init__.py \
427
	lib/rapi/baserlib.py \
428
	lib/rapi/client.py \
429
	lib/rapi/client_utils.py \
430
	lib/rapi/connector.py \
431
	lib/rapi/rlib2.py \
432
	lib/rapi/testutils.py
433

    
434
http_PYTHON = \
435
	lib/http/__init__.py \
436
	lib/http/auth.py \
437
	lib/http/client.py \
438
	lib/http/server.py
439

    
440
confd_PYTHON = \
441
	lib/confd/__init__.py \
442
	lib/confd/client.py
443

    
444
masterd_PYTHON = \
445
	lib/masterd/__init__.py \
446
	lib/masterd/iallocator.py \
447
	lib/masterd/instance.py
448

    
449
impexpd_PYTHON = \
450
	lib/impexpd/__init__.py
451

    
452
watcher_PYTHON = \
453
	lib/watcher/__init__.py \
454
	lib/watcher/nodemaint.py \
455
	lib/watcher/state.py
456

    
457
server_PYTHON = \
458
	lib/server/__init__.py \
459
	lib/server/masterd.py \
460
	lib/server/noded.py \
461
	lib/server/rapi.py
462

    
463
pytools_PYTHON = \
464
	lib/tools/__init__.py \
465
	lib/tools/burnin.py \
466
	lib/tools/ensure_dirs.py \
467
	lib/tools/node_cleanup.py \
468
	lib/tools/node_daemon_setup.py \
469
	lib/tools/prepare_node_join.py
470

    
471
utils_PYTHON = \
472
	lib/utils/__init__.py \
473
	lib/utils/algo.py \
474
	lib/utils/filelock.py \
475
	lib/utils/hash.py \
476
	lib/utils/io.py \
477
	lib/utils/log.py \
478
	lib/utils/lvm.py \
479
	lib/utils/mlock.py \
480
	lib/utils/nodesetup.py \
481
	lib/utils/process.py \
482
	lib/utils/retry.py \
483
	lib/utils/storage.py \
484
	lib/utils/text.py \
485
	lib/utils/version.py \
486
	lib/utils/wrapper.py \
487
	lib/utils/x509.py
488

    
489
docinput = \
490
	doc/admin.rst \
491
	doc/cluster-merge.rst \
492
	doc/conf.py \
493
	doc/css/style.css \
494
	doc/design-2.0.rst \
495
	doc/design-2.1.rst \
496
	doc/design-2.2.rst \
497
	doc/design-2.3.rst \
498
	doc/design-2.4.rst \
499
	doc/design-2.5.rst \
500
	doc/design-2.6.rst \
501
	doc/design-2.7.rst \
502
	doc/design-2.8.rst \
503
	doc/design-2.9.rst \
504
	doc/design-2.10.rst \
505
	doc/design-autorepair.rst \
506
	doc/design-bulk-create.rst \
507
	doc/design-ceph-ganeti-support.rst \
508
	doc/design-chained-jobs.rst \
509
	doc/design-cmdlib-unittests.rst \
510
	doc/design-cpu-pinning.rst \
511
	doc/design-daemons.rst \
512
	doc/design-device-uuid-name.rst \
513
	doc/design-draft.rst \
514
	doc/design-glusterfs-ganeti-support.rst \
515
	doc/design-hotplug.rst \
516
	doc/design-hroller.rst \
517
	doc/design-hsqueeze.rst \
518
	doc/design-htools-2.3.rst \
519
	doc/design-http-server.rst \
520
	doc/design-hugepages-support.rst \
521
	doc/design-impexp2.rst \
522
	doc/design-internal-shutdown.rst \
523
	doc/design-linuxha.rst \
524
	doc/design-lu-generated-jobs.rst \
525
	doc/design-monitoring-agent.rst \
526
	doc/design-multi-reloc.rst \
527
	doc/design-network.rst \
528
	doc/design-node-add.rst \
529
	doc/design-oob.rst \
530
	doc/design-openvswitch.rst \
531
	doc/design-opportunistic-locking.rst \
532
	doc/design-optables.rst \
533
	doc/design-ovf-support.rst \
534
	doc/design-partitioned.rst \
535
	doc/design-query-splitting.rst \
536
	doc/design-query2.rst \
537
	doc/design-reason-trail.rst \
538
	doc/design-resource-model.rst \
539
	doc/design-restricted-commands.rst \
540
	doc/design-shared-storage.rst \
541
	doc/design-storagetypes.rst \
542
	doc/design-upgrade.rst \
543
	doc/design-virtual-clusters.rst \
544
	doc/design-x509-ca.rst \
545
	doc/devnotes.rst \
546
	doc/glossary.rst \
547
	doc/hooks.rst \
548
	doc/iallocator.rst \
549
	doc/index.rst \
550
	doc/install-quick.rst \
551
	doc/install.rst \
552
	doc/locking.rst \
553
	doc/manpages-disabled.rst \
554
	doc/monitoring-query-format.rst \
555
	doc/move-instance.rst \
556
	doc/news.rst \
557
	doc/ovfconverter.rst \
558
	doc/rapi.rst \
559
	doc/security.rst \
560
	doc/upgrade.rst \
561
	doc/virtual-cluster.rst \
562
	doc/walkthrough.rst
563

    
564
# Generates file names such as "doc/man-gnt-instance.rst"
565
mandocrst = $(addprefix doc/man-,$(notdir $(manrst)))
566

    
567
# Haskell programs to be installed in $PREFIX/bin
568
HS_BIN_PROGS=src/htools
569

    
570
# Haskell programs to be installed in the MYEXECLIB dir
571
if ENABLE_MOND
572
HS_MYEXECLIB_PROGS=src/mon-collector
573
else
574
HS_MYEXECLIB_PROGS=
575
endif
576

    
577
# Haskell programs to be compiled by "make really-all"
578
HS_COMPILE_PROGS= \
579
	src/ganeti-mond \
580
	src/hconfd \
581
	src/hluxid \
582
	src/hs2py \
583
	src/rpc-test
584

    
585
# All Haskell non-test programs to be compiled but not automatically installed
586
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
587

    
588
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller
589
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
590

    
591
# Haskell programs that cannot be disabled at configure (e.g., unlike
592
# 'mon-collector')
593
HS_DEFAULT_PROGS = \
594
	$(HS_BIN_PROGS) \
595
	test/hs/hpc-htools \
596
	test/hs/hpc-mon-collector \
597
	test/hs/htest \
598
	$(HS_COMPILE_PROGS)
599

    
600
HS_ALL_PROGS = $(HS_DEFAULT_PROGS) $(HS_MYEXECLIB_PROGS)
601

    
602
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_DEFAULT_PROGS)) src/mon-collector.hs
603
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
604

    
605
HFLAGS = \
606
	-O -Wall -Werror -isrc \
607
	-fwarn-monomorphism-restriction \
608
	-fwarn-tabs \
609
	$(GHC_BYVERSION_FLAGS)
610

    
611
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
612
HEXTRA =
613
# internal extra flags (used for test/hs/htest mainly)
614
HEXTRA_INT =
615
# exclude options for coverage reports
616
HPCEXCL = --exclude Main \
617
	--exclude Ganeti.Constants \
618
	--exclude Ganeti.HTools.QC \
619
	--exclude Ganeti.THH \
620
	--exclude Ganeti.Version \
621
	--exclude Test.Ganeti.Attoparsec \
622
	--exclude Test.Ganeti.TestCommon \
623
	--exclude Test.Ganeti.TestHTools \
624
	--exclude Test.Ganeti.TestHelper \
625
	--exclude Test.Ganeti.TestImports \
626
	$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
627

    
628
HS_LIB_SRCS = \
629
	src/Ganeti/BasicTypes.hs \
630
	src/Ganeti/Common.hs \
631
	src/Ganeti/Compat.hs \
632
	src/Ganeti/Confd/Client.hs \
633
	src/Ganeti/Confd/ClientFunctions.hs \
634
	src/Ganeti/Confd/Server.hs \
635
	src/Ganeti/Confd/Types.hs \
636
	src/Ganeti/Confd/Utils.hs \
637
	src/Ganeti/Config.hs \
638
	src/Ganeti/ConfigReader.hs \
639
	src/Ganeti/Constants.hs \
640
	src/Ganeti/ConstantUtils.hs \
641
	src/Ganeti/Cpu/LoadParser.hs \
642
	src/Ganeti/Cpu/Types.hs \
643
	src/Ganeti/Curl/Multi.hs \
644
	src/Ganeti/Daemon.hs \
645
	src/Ganeti/DataCollectors/CLI.hs \
646
	src/Ganeti/DataCollectors/CPUload.hs \
647
	src/Ganeti/DataCollectors/Diskstats.hs \
648
	src/Ganeti/DataCollectors/Drbd.hs \
649
	src/Ganeti/DataCollectors/InstStatus.hs \
650
	src/Ganeti/DataCollectors/InstStatusTypes.hs \
651
	src/Ganeti/DataCollectors/Lv.hs \
652
	src/Ganeti/DataCollectors/Program.hs \
653
	src/Ganeti/DataCollectors/Types.hs \
654
	src/Ganeti/Errors.hs \
655
	src/Ganeti/HTools/Backend/IAlloc.hs \
656
	src/Ganeti/HTools/Backend/Luxi.hs \
657
	src/Ganeti/HTools/Backend/Rapi.hs \
658
	src/Ganeti/HTools/Backend/Simu.hs \
659
	src/Ganeti/HTools/Backend/Text.hs \
660
	src/Ganeti/HTools/CLI.hs \
661
	src/Ganeti/HTools/Cluster.hs \
662
	src/Ganeti/HTools/Container.hs \
663
	src/Ganeti/HTools/ExtLoader.hs \
664
	src/Ganeti/HTools/Graph.hs \
665
	src/Ganeti/HTools/Group.hs \
666
	src/Ganeti/HTools/Instance.hs \
667
	src/Ganeti/HTools/Loader.hs \
668
	src/Ganeti/HTools/Nic.hs \
669
	src/Ganeti/HTools/Node.hs \
670
	src/Ganeti/HTools/PeerMap.hs \
671
	src/Ganeti/HTools/Program/Hail.hs \
672
	src/Ganeti/HTools/Program/Harep.hs \
673
	src/Ganeti/HTools/Program/Hbal.hs \
674
	src/Ganeti/HTools/Program/Hcheck.hs \
675
	src/Ganeti/HTools/Program/Hinfo.hs \
676
	src/Ganeti/HTools/Program/Hscan.hs \
677
	src/Ganeti/HTools/Program/Hspace.hs \
678
	src/Ganeti/HTools/Program/Hroller.hs \
679
	src/Ganeti/HTools/Program/Main.hs \
680
	src/Ganeti/HTools/Types.hs \
681
	src/Ganeti/Hypervisor/Xen.hs \
682
	src/Ganeti/Hypervisor/Xen/XmParser.hs \
683
	src/Ganeti/Hypervisor/Xen/Types.hs \
684
	src/Ganeti/Hash.hs \
685
	src/Ganeti/Hs2Py/GenConstants.hs \
686
	src/Ganeti/Hs2Py/GenOpCodes.hs \
687
	src/Ganeti/Hs2Py/OpDoc.hs \
688
	src/Ganeti/JQueue.hs \
689
	src/Ganeti/JSON.hs \
690
	src/Ganeti/Jobs.hs \
691
	src/Ganeti/Logging.hs \
692
	src/Ganeti/Luxi.hs \
693
	src/Ganeti/Monitoring/Server.hs \
694
	src/Ganeti/Network.hs \
695
	src/Ganeti/Objects.hs \
696
	src/Ganeti/OpCodes.hs \
697
	src/Ganeti/OpParams.hs \
698
	src/Ganeti/Path.hs \
699
	src/Ganeti/Parsers.hs \
700
	src/Ganeti/PyValueInstances.hs \
701
	src/Ganeti/Query/Cluster.hs \
702
	src/Ganeti/Query/Common.hs \
703
	src/Ganeti/Query/Export.hs \
704
	src/Ganeti/Query/Filter.hs \
705
	src/Ganeti/Query/Group.hs \
706
	src/Ganeti/Query/Job.hs \
707
	src/Ganeti/Query/Language.hs \
708
	src/Ganeti/Query/Network.hs \
709
	src/Ganeti/Query/Node.hs \
710
	src/Ganeti/Query/Query.hs \
711
	src/Ganeti/Query/Server.hs \
712
	src/Ganeti/Query/Types.hs \
713
	src/Ganeti/Rpc.hs \
714
	src/Ganeti/Runtime.hs \
715
	src/Ganeti/Ssconf.hs \
716
	src/Ganeti/Storage/Diskstats/Parser.hs \
717
	src/Ganeti/Storage/Diskstats/Types.hs \
718
	src/Ganeti/Storage/Drbd/Parser.hs \
719
	src/Ganeti/Storage/Drbd/Types.hs \
720
	src/Ganeti/Storage/Lvm/LVParser.hs \
721
	src/Ganeti/Storage/Lvm/Types.hs \
722
	src/Ganeti/Storage/Utils.hs \
723
	src/Ganeti/THH.hs \
724
	src/Ganeti/Types.hs \
725
	src/Ganeti/Utils.hs
726

    
727
HS_TEST_SRCS = \
728
	test/hs/Test/AutoConf.hs \
729
	test/hs/Test/Ganeti/Attoparsec.hs \
730
	test/hs/Test/Ganeti/BasicTypes.hs \
731
	test/hs/Test/Ganeti/Common.hs \
732
	test/hs/Test/Ganeti/Confd/Types.hs \
733
	test/hs/Test/Ganeti/Confd/Utils.hs \
734
	test/hs/Test/Ganeti/Constants.hs \
735
	test/hs/Test/Ganeti/Daemon.hs \
736
	test/hs/Test/Ganeti/Errors.hs \
737
	test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
738
	test/hs/Test/Ganeti/HTools/Backend/Text.hs \
739
	test/hs/Test/Ganeti/HTools/CLI.hs \
740
	test/hs/Test/Ganeti/HTools/Cluster.hs \
741
	test/hs/Test/Ganeti/HTools/Container.hs \
742
	test/hs/Test/Ganeti/HTools/ExtLoader.hs \
743
	test/hs/Test/Ganeti/HTools/Graph.hs \
744
	test/hs/Test/Ganeti/HTools/Instance.hs \
745
	test/hs/Test/Ganeti/HTools/Loader.hs \
746
	test/hs/Test/Ganeti/HTools/Node.hs \
747
	test/hs/Test/Ganeti/HTools/PeerMap.hs \
748
	test/hs/Test/Ganeti/HTools/Types.hs \
749
	test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \
750
	test/hs/Test/Ganeti/JSON.hs \
751
	test/hs/Test/Ganeti/Jobs.hs \
752
	test/hs/Test/Ganeti/JQueue.hs \
753
	test/hs/Test/Ganeti/Luxi.hs \
754
	test/hs/Test/Ganeti/Network.hs \
755
	test/hs/Test/Ganeti/Objects.hs \
756
	test/hs/Test/Ganeti/OpCodes.hs \
757
	test/hs/Test/Ganeti/Query/Filter.hs \
758
	test/hs/Test/Ganeti/Query/Language.hs \
759
	test/hs/Test/Ganeti/Query/Network.hs \
760
	test/hs/Test/Ganeti/Query/Query.hs \
761
	test/hs/Test/Ganeti/Rpc.hs \
762
	test/hs/Test/Ganeti/Runtime.hs \
763
	test/hs/Test/Ganeti/Ssconf.hs \
764
	test/hs/Test/Ganeti/Storage/Diskstats/Parser.hs \
765
	test/hs/Test/Ganeti/Storage/Drbd/Parser.hs \
766
	test/hs/Test/Ganeti/Storage/Drbd/Types.hs \
767
	test/hs/Test/Ganeti/Storage/Lvm/LVParser.hs \
768
	test/hs/Test/Ganeti/THH.hs \
769
	test/hs/Test/Ganeti/TestCommon.hs \
770
	test/hs/Test/Ganeti/TestHTools.hs \
771
	test/hs/Test/Ganeti/TestHelper.hs \
772
	test/hs/Test/Ganeti/Types.hs \
773
	test/hs/Test/Ganeti/Utils.hs
774

    
775
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
776

    
777
HS_BUILT_SRCS = \
778
	test/hs/Test/Ganeti/TestImports.hs \
779
	src/AutoConf.hs \
780
	src/Ganeti/Hs2Py/ListConstants.hs \
781
	src/Ganeti/Curl/Internal.hs \
782
	src/Ganeti/Version.hs
783
HS_BUILT_SRCS_IN = \
784
	$(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \
785
	src/Ganeti/Curl/Internal.hsc \
786
	lib/_constants.py.in \
787
	lib/opcodes.py.in_after \
788
	lib/opcodes.py.in_before
789

    
790
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
791

    
792
$(RUN_IN_TEMPDIR): | stamp-directories
793

    
794
doc/html/index.html: ENABLE_MANPAGES =
795
doc/man-html/index.html: ENABLE_MANPAGES = 1
796
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
797

    
798
# Note: we use here an order-only prerequisite, as the contents of
799
# _constants.py are not actually influencing the html build output: it
800
# has to exist in order for the sphinx module to be loaded
801
# successfully, but we certainly don't want the docs to be rebuilt if
802
# it changes
803
doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \
804
	configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
805
	lib/build/shell_example_lexer.py lib/ht.py \
806
	doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \
807
	autotools/sphinx-wrapper | $(BUILT_PYTHON_SOURCES)
808
	@test -n "$(SPHINX)" || \
809
	    { echo 'sphinx-build' not found during configure; exit 1; }
810
if !MANPAGES_IN_DOC
811
	if test -n '$(ENABLE_MANPAGES)'; then \
812
	  echo 'Man pages in documentation were disabled at configure time' >&2; \
813
	  exit 1; \
814
	fi
815
endif
816
## Sphinx provides little control over what content should be included. Some
817
## mechanisms exist, but they all have drawbacks or actual issues. Since we
818
## build two different versions of the documentation--once without man pages and
819
## once, if enabled, with them--some control is necessary. xmpp-wrapper provides
820
## us with this, but requires running in a temporary directory. It moves the
821
## correct files into place depending on environment variables.
822
	dir=$(dir $@) && \
823
	@mkdir_p@ $$dir && \
824
	PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \
825
	$(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \
826
	    -d . \
827
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
828
	    -D release="$(PACKAGE_VERSION)" \
829
	    -D graphviz_dot="$(DOT)" \
830
	    -D enable_manpages="$(ENABLE_MANPAGES)" \
831
	    doc $(CURDIR)/$$dir && \
832
	rm -f $$dir/.buildinfo $$dir/objects.inv
833
	touch $@
834

    
835
doc/html: doc/html/index.html
836

    
837
doc/man-html: doc/man-html/index.html
838

    
839
doc/install-quick.rst: INSTALL
840
doc/news.rst: NEWS
841
doc/upgrade.rst: UPGRADE
842

    
843
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
844
	set -e; \
845
	{ echo '.. This file is automatically updated at build time from $<.'; \
846
	  echo '.. Do not edit.'; \
847
	  echo; \
848
	  cat $<; \
849
	} > $@
850

    
851
doc/manpages-enabled.rst: Makefile | $(built_base_sources)
852
	{ echo '.. This file is automatically generated, do not edit!'; \
853
	  echo ''; \
854
	  echo 'Man pages'; \
855
	  echo '========='; \
856
	  echo; \
857
	  echo '.. toctree::'; \
858
	  echo '   :maxdepth: 1'; \
859
	  echo; \
860
	  for i in $(notdir $(mandocrst)); do \
861
	    echo "   $$i"; \
862
	  done | LC_ALL=C sort; \
863
	} > $@
864

    
865
doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources)
866
if MANPAGES_IN_DOC
867
	{ echo '.. This file is automatically updated at build time from $<.'; \
868
	  echo '.. Do not edit.'; \
869
	  echo; \
870
	  echo "$*"; \
871
	  echo '=========================================='; \
872
	  tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \
873
	} > $@
874
else
875
	echo 'Man pages in documentation were disabled at configure time' >&2; \
876
	exit 1;
877
endif
878

    
879
doc/users/%: doc/users/%.in Makefile $(REPLACE_VARS_SED)
880
	cat $< | sed -f $(REPLACE_VARS_SED) | LC_ALL=C sort | uniq | (grep -v '^root' || true) > $@
881

    
882
userspecs = \
883
	doc/users/users \
884
	doc/users/groups \
885
	doc/users/groupmemberships
886

    
887
# Things to build but not to install (add it to EXTRA_DIST if it should be
888
# distributed)
889
noinst_DATA = \
890
	$(BUILT_EXAMPLES) \
891
	doc/examples/bash_completion \
892
	doc/examples/bash_completion-debug \
893
	$(userspecs) \
894
	$(manhtml)
895

    
896
if HAS_SPHINX
897
if MANPAGES_IN_DOC
898
noinst_DATA += doc/man-html
899
else
900
noinst_DATA += doc/html
901
endif
902
endif
903

    
904
gnt_scripts = \
905
	scripts/gnt-backup \
906
	scripts/gnt-cluster \
907
	scripts/gnt-debug \
908
	scripts/gnt-group \
909
	scripts/gnt-instance \
910
	scripts/gnt-job \
911
	scripts/gnt-network \
912
	scripts/gnt-node \
913
	scripts/gnt-os \
914
	scripts/gnt-storage
915

    
916
gnt_scripts_basenames = \
917
	$(patsubst scripts/%,%,$(patsubst daemons/%,%,$(gnt_scripts) $(gnt_python_sbin_SCRIPTS)))
918

    
919
gnt_python_sbin_SCRIPTS = \
920
	$(PYTHON_BOOTSTRAP_SBIN)
921

    
922
gntpython_SCRIPTS = $(gnt_scripts)
923

    
924
PYTHON_BOOTSTRAP_SBIN = \
925
	daemons/ganeti-masterd \
926
	daemons/ganeti-noded \
927
	daemons/ganeti-rapi \
928
	daemons/ganeti-watcher
929

    
930
PYTHON_BOOTSTRAP = \
931
	tools/burnin \
932
	tools/ensure-dirs \
933
	tools/node-cleanup \
934
	tools/node-daemon-setup \
935
	tools/prepare-node-join
936

    
937
qa_scripts = \
938
	qa/__init__.py \
939
	qa/ganeti-qa.py \
940
	qa/qa_cluster.py \
941
	qa/qa_config.py \
942
	qa/qa_daemon.py \
943
	qa/qa_env.py \
944
	qa/qa_error.py \
945
	qa/qa_group.py \
946
	qa/qa_instance.py \
947
	qa/qa_instance_utils.py \
948
	qa/qa_job.py \
949
	qa/qa_monitoring.py \
950
	qa/qa_node.py \
951
	qa/qa_os.py \
952
	qa/qa_rapi.py \
953
	qa/qa_tags.py \
954
	qa/qa_utils.py
955

    
956
bin_SCRIPTS =
957
if WANT_HTOOLS
958
bin_SCRIPTS += $(HS_BIN_PROGS)
959
install-exec-hook:
960
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
961
# FIXME: this is a hardcoded logic, instead of auto-resolving
962
	$(LN_S) -f ../../../bin/htools \
963
	  $(DESTDIR)$(iallocatorsdir)/hail
964
	for role in $(HS_BIN_ROLES); do \
965
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
966
	done
967
endif
968

    
969
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTESTBUILT_SRCS) Makefile
970
	@if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \
971
	  echo "Error: cannot run unittests without the development" \
972
	       " libraries (see devnotes.rst)" 1>&2; \
973
	  exit 1; \
974
	fi
975
	@rm -f $(notdir $@).tix
976
	$(GHC) --make \
977
	  $(HFLAGS) \
978
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
979
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
980
	  $(HEXTRA) $(HEXTRA_INT) $@
981
	@touch "$@"
982

    
983
# for the test/hs/htest binary, we need to enable profiling/coverage
984
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
985

    
986
# we compile the hpc-htools binary with the program coverage
987
test/hs/hpc-htools: HEXTRA_INT=-fhpc
988

    
989
# we compile the hpc-mon-collector binary with the program coverage
990
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
991

    
992
# test dependency
993
test/hs/offline-test.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
994

    
995
# rules for building profiling-enabled versions of the haskell
996
# programs: hs-prof does the full two-step build, whereas
997
# hs-prof-quick does only the final rebuild (hs-prof must have been
998
# run before)
999
.PHONY: hs-prof hs-prof-quick
1000
hs-prof:
1001
	@if [ -z "$(TARGET)" ]; then \
1002
	  echo "You need to define TARGET when running this rule" 1>&2; \
1003
	  exit 1; \
1004
	fi
1005
	$(MAKE) $(AM_MAKEFLAGS) clean
1006
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o"
1007
	rm -f $(HS_ALL_PROGS)
1008
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
1009

    
1010
hs-prof-quick:
1011
	@if [ -z "$(TARGET)" ]; then \
1012
	  echo "You need to define TARGET when running this rule" 1>&2; \
1013
	  exit 1; \
1014
	fi
1015
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
1016

    
1017
dist_sbin_SCRIPTS = \
1018
	tools/ganeti-listrunner
1019

    
1020
nodist_sbin_SCRIPTS = \
1021
	daemons/ganeti-cleaner
1022

    
1023
# strip path prefixes off the sbin scripts
1024
all_sbin_scripts = \
1025
	$(patsubst tools/%,%,$(patsubst daemons/%,%,$(patsubst scripts/%,%,\
1026
	$(patsubst src/%,%,$(dist_sbin_SCRIPTS) $(nodist_sbin_SCRIPTS)))))
1027

    
1028
if ENABLE_CONFD
1029
src/ganeti-confd: src/hconfd
1030
	cp -f $< $@
1031

    
1032
src/ganeti-luxid: src/hluxid
1033
	cp -f $< $@
1034

    
1035
nodist_sbin_SCRIPTS += src/ganeti-confd
1036
nodist_sbin_SCRIPTS += src/ganeti-luxid
1037
endif
1038

    
1039
if ENABLE_MOND
1040
nodist_sbin_SCRIPTS += src/ganeti-mond
1041
endif
1042

    
1043
python_scripts = \
1044
	tools/cfgshell \
1045
	tools/cfgupgrade \
1046
	tools/cfgupgrade12 \
1047
	tools/cluster-merge \
1048
	tools/confd-client \
1049
	tools/fmtjson \
1050
	tools/lvmstrap \
1051
	tools/move-instance \
1052
	tools/ovfconverter \
1053
	tools/sanitize-config
1054

    
1055
dist_tools_SCRIPTS = \
1056
	tools/kvm-console-wrapper \
1057
	tools/master-ip-setup \
1058
	tools/xen-console-wrapper
1059

    
1060
dist_tools_python_SCRIPTS = \
1061
	$(python_scripts) \
1062
	tools/burnin
1063

    
1064
nodist_tools_python_SCRIPTS = \
1065
	tools/node-cleanup
1066

    
1067
tools_python_basenames = $(patsubst tools/%,%,\
1068
	$(dist_tools_python_SCRIPTS) $(nodist_tools_python_SCRIPTS))
1069

    
1070
nodist_tools_SCRIPTS = \
1071
	tools/users-setup \
1072
	tools/vcluster-setup
1073

    
1074
tools_basenames = $(patsubst tools/%,%,$(nodist_tools_SCRIPTS) $(dist_tools_SCRIPTS))
1075

    
1076
pkglib_python_scripts = \
1077
	daemons/import-export \
1078
	tools/check-cert-expired
1079

    
1080
nodist_pkglib_python_scripts = \
1081
	tools/ensure-dirs \
1082
	tools/node-daemon-setup \
1083
	tools/prepare-node-join
1084

    
1085
pkglib_python_basenames = \
1086
	$(patsubst daemons/%,%,$(patsubst tools/%,%,\
1087
	$(pkglib_python_scripts) $(nodist_pkglib_python_scripts)))
1088

    
1089
myexeclib_SCRIPTS = \
1090
	daemons/daemon-util \
1091
	tools/kvm-ifup \
1092
	tools/vif-ganeti \
1093
	tools/net-common \
1094
	$(HS_MYEXECLIB_PROGS)
1095

    
1096
# compute the basenames of the myexeclib_scripts
1097
myexeclib_scripts_basenames = \
1098
	$(patsubst tools/%,%,$(patsubst daemons/%,%,$(patsubst src/%,%,$(myexeclib_SCRIPTS))))
1099

    
1100
EXTRA_DIST = \
1101
	NEWS \
1102
	UPGRADE \
1103
	epydoc.conf.in \
1104
	pylintrc \
1105
	pylintrc-test \
1106
	autotools/build-bash-completion \
1107
	autotools/build-rpc \
1108
	autotools/check-header \
1109
	autotools/check-imports \
1110
	autotools/check-man-dashes \
1111
	autotools/check-man-references \
1112
	autotools/check-man-warnings \
1113
	autotools/check-news \
1114
	autotools/check-python-code \
1115
	autotools/check-tar \
1116
	autotools/check-version \
1117
	autotools/docpp \
1118
	autotools/gen-py-coverage \
1119
	autotools/print-py-constants \
1120
	autotools/sphinx-wrapper \
1121
	autotools/testrunner \
1122
	autotools/wrong-hardcoded-paths \
1123
	$(RUN_IN_TEMPDIR) \
1124
	daemons/daemon-util.in \
1125
	daemons/ganeti-cleaner.in \
1126
	$(pkglib_python_scripts) \
1127
	devel/upload \
1128
	devel/webserver \
1129
	tools/kvm-ifup.in \
1130
	tools/vif-ganeti.in \
1131
	tools/net-common.in \
1132
	tools/vcluster-setup.in \
1133
	$(docinput) \
1134
	doc/html \
1135
	$(BUILT_EXAMPLES:%=%.in) \
1136
	doc/examples/ganeti.default \
1137
	doc/examples/ganeti.default-debug \
1138
	doc/examples/hooks/ethers \
1139
	doc/examples/gnt-debug/README \
1140
	doc/examples/gnt-debug/delay0.json \
1141
	doc/examples/gnt-debug/delay50.json \
1142
	doc/users/groupmemberships.in \
1143
	doc/users/groups.in \
1144
	doc/users/users.in \
1145
	$(dist_TESTS) \
1146
	$(TEST_FILES) \
1147
	$(python_test_support) \
1148
	man/footer.rst \
1149
	$(manrst) \
1150
	$(maninput) \
1151
	qa/qa-sample.json \
1152
	$(qa_scripts) \
1153
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
1154
	$(HS_PROG_SRCS) \
1155
	src/lint-hints.hs \
1156
	test/hs/cli-tests-defs.sh \
1157
	test/hs/offline-test.sh \
1158
	.ghci
1159

    
1160
man_MANS = \
1161
	man/ganeti-cleaner.8 \
1162
	man/ganeti-confd.8 \
1163
	man/ganeti-luxid.8 \
1164
	man/ganeti-listrunner.8 \
1165
	man/ganeti-masterd.8 \
1166
	man/ganeti-mond.8 \
1167
	man/ganeti-noded.8 \
1168
	man/ganeti-os-interface.7 \
1169
	man/ganeti-extstorage-interface.7 \
1170
	man/ganeti-rapi.8 \
1171
	man/ganeti-watcher.8 \
1172
	man/ganeti.7 \
1173
	man/gnt-backup.8 \
1174
	man/gnt-cluster.8 \
1175
	man/gnt-debug.8 \
1176
	man/gnt-group.8 \
1177
	man/gnt-network.8 \
1178
	man/gnt-instance.8 \
1179
	man/gnt-job.8 \
1180
	man/gnt-node.8 \
1181
	man/gnt-os.8 \
1182
	man/gnt-storage.8 \
1183
	man/hail.1 \
1184
	man/harep.1 \
1185
	man/hbal.1 \
1186
	man/hcheck.1 \
1187
	man/hinfo.1 \
1188
	man/hscan.1 \
1189
	man/hspace.1 \
1190
	man/hroller.1 \
1191
	man/htools.1 \
1192
	man/mon-collector.7
1193

    
1194
# Remove extensions from all filenames in man_MANS
1195
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
1196

    
1197
manrst = $(patsubst %,%.rst,$(mannoext))
1198
manhtml = $(patsubst %.rst,%.html,$(manrst))
1199
mangen = $(patsubst %.rst,%.gen,$(manrst))
1200
maninput = \
1201
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
1202
	$(patsubst %.html,%.html.in,$(manhtml)) \
1203
	$(mangen)
1204

    
1205
manfullpath = $(patsubst man/%.1,man1/%.1,\
1206
	$(patsubst man/%.7,man7/%.7,\
1207
	$(patsubst man/%.8,man8/%.8,$(man_MANS))))
1208

    
1209
TEST_FILES = \
1210
	test/autotools/autotools-check-news.test \
1211
	test/data/htools/clean-nonzero-score.data \
1212
	test/data/htools/common-suffix.data \
1213
	test/data/htools/empty-cluster.data \
1214
	test/data/htools/hail-alloc-drbd.json \
1215
	test/data/htools/hail-alloc-invalid-network.json \
1216
	test/data/htools/hail-alloc-invalid-twodisks.json \
1217
	test/data/htools/hail-alloc-restricted-network.json \
1218
	test/data/htools/hail-alloc-spindles.json \
1219
	test/data/htools/hail-alloc-twodisks.json \
1220
	test/data/htools/hail-change-group.json \
1221
	test/data/htools/hail-invalid-reloc.json \
1222
	test/data/htools/hail-node-evac.json \
1223
	test/data/htools/hail-reloc-drbd.json \
1224
	test/data/htools/hbal-dyn.data \
1225
	test/data/htools/hbal-excl-tags.data \
1226
	test/data/htools/hbal-split-insts.data \
1227
	test/data/htools/hspace-tiered-dualspec-exclusive.data \
1228
	test/data/htools/hspace-tiered-dualspec.data \
1229
	test/data/htools/hspace-tiered-exclusive.data \
1230
	test/data/htools/hspace-tiered-ipolicy.data \
1231
	test/data/htools/hspace-tiered-mixed.data \
1232
	test/data/htools/hspace-tiered-resourcetypes.data \
1233
	test/data/htools/hspace-tiered-vcpu.data \
1234
	test/data/htools/hspace-tiered.data \
1235
	test/data/htools/invalid-node.data \
1236
	test/data/htools/missing-resources.data \
1237
	test/data/htools/multiple-master.data \
1238
	test/data/htools/multiple-tags.data \
1239
	test/data/htools/n1-failure.data \
1240
	test/data/htools/rapi/groups.json \
1241
	test/data/htools/rapi/info.json \
1242
	test/data/htools/rapi/instances.json \
1243
	test/data/htools/rapi/nodes.json \
1244
	test/data/htools/hroller-full.data \
1245
	test/data/htools/hroller-nodegroups.data \
1246
	test/data/htools/hroller-nonredundant.data \
1247
	test/data/htools/hroller-online.data \
1248
	test/data/htools/unique-reboot-order.data \
1249
	test/hs/shelltests/htools-balancing.test \
1250
	test/hs/shelltests/htools-basic.test \
1251
	test/hs/shelltests/htools-dynutil.test \
1252
	test/hs/shelltests/htools-excl.test \
1253
	test/hs/shelltests/htools-hail.test \
1254
	test/hs/shelltests/htools-hroller.test \
1255
	test/hs/shelltests/htools-hspace.test \
1256
	test/hs/shelltests/htools-invalid.test \
1257
	test/hs/shelltests/htools-multi-group.test \
1258
	test/hs/shelltests/htools-no-backend.test \
1259
	test/hs/shelltests/htools-rapi.test \
1260
	test/hs/shelltests/htools-single-group.test \
1261
	test/hs/shelltests/htools-text-backend.test \
1262
	test/hs/shelltests/htools-mon-collector.test \
1263
	test/data/bdev-drbd-8.0.txt \
1264
	test/data/bdev-drbd-8.3.txt \
1265
	test/data/bdev-drbd-8.4.txt \
1266
	test/data/bdev-drbd-8.4-no-disk-params.txt \
1267
	test/data/bdev-drbd-disk.txt \
1268
	test/data/bdev-drbd-net-ip4.txt \
1269
	test/data/bdev-drbd-net-ip6.txt \
1270
	test/data/bdev-rbd/json_output_empty.txt \
1271
	test/data/bdev-rbd/json_output_extra_matches.txt \
1272
	test/data/bdev-rbd/json_output_no_matches.txt \
1273
	test/data/bdev-rbd/json_output_ok.txt \
1274
	test/data/bdev-rbd/plain_output_new_extra_matches.txt \
1275
	test/data/bdev-rbd/plain_output_new_no_matches.txt \
1276
	test/data/bdev-rbd/plain_output_new_ok.txt \
1277
	test/data/bdev-rbd/plain_output_old_empty.txt \
1278
	test/data/bdev-rbd/plain_output_old_extra_matches.txt \
1279
	test/data/bdev-rbd/plain_output_old_no_matches.txt \
1280
	test/data/bdev-rbd/plain_output_old_ok.txt \
1281
	test/data/bdev-rbd/output_invalid.txt \
1282
	test/data/cert1.pem \
1283
	test/data/cert2.pem \
1284
	test/data/cluster_config_2.7.json \
1285
	test/data/cluster_config_2.8.json \
1286
	test/data/cluster_config_2.9.json \
1287
	test/data/instance-minor-pairing.txt \
1288
	test/data/instance-prim-sec.txt \
1289
	test/data/ip-addr-show-dummy0.txt \
1290
	test/data/ip-addr-show-lo-ipv4.txt \
1291
	test/data/ip-addr-show-lo-ipv6.txt \
1292
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
1293
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
1294
	test/data/ip-addr-show-lo-oneline.txt \
1295
	test/data/ip-addr-show-lo.txt \
1296
	test/data/kvm_0.12.5_help.txt \
1297
	test/data/kvm_0.15.90_help.txt \
1298
	test/data/kvm_0.9.1_help.txt \
1299
	test/data/kvm_0.9.1_help_boot_test.txt \
1300
	test/data/kvm_1.0_help.txt \
1301
	test/data/kvm_1.1.2_help.txt \
1302
	test/data/kvm_runtime.json \
1303
	test/data/lvs_lv.txt \
1304
	test/data/NEWS_OK.txt \
1305
	test/data/NEWS_previous_unreleased.txt \
1306
	test/data/ovfdata/compr_disk.vmdk.gz \
1307
	test/data/ovfdata/config.ini \
1308
	test/data/ovfdata/corrupted_resources.ovf \
1309
	test/data/ovfdata/empty.ini \
1310
	test/data/ovfdata/empty.ovf \
1311
	test/data/ovfdata/ganeti.mf \
1312
	test/data/ovfdata/ganeti.ovf \
1313
	test/data/ovfdata/gzip_disk.ovf \
1314
	test/data/ovfdata/new_disk.vmdk \
1315
	test/data/ovfdata/no_disk.ini \
1316
	test/data/ovfdata/no_disk_in_ref.ovf \
1317
	test/data/ovfdata/no_os.ini \
1318
	test/data/ovfdata/no_ovf.ova \
1319
	test/data/ovfdata/other/rawdisk.raw \
1320
	test/data/ovfdata/ova.ova \
1321
	test/data/ovfdata/rawdisk.raw \
1322
	test/data/ovfdata/second_disk.vmdk \
1323
	test/data/ovfdata/unsafe_path.ini \
1324
	test/data/ovfdata/virtualbox.ovf \
1325
	test/data/ovfdata/wrong_config.ini \
1326
	test/data/ovfdata/wrong_extension.ovd \
1327
	test/data/ovfdata/wrong_manifest.mf \
1328
	test/data/ovfdata/wrong_manifest.ovf \
1329
	test/data/ovfdata/wrong_ova.ova \
1330
	test/data/ovfdata/wrong_xml.ovf \
1331
	test/data/proc_diskstats.txt \
1332
	test/data/proc_drbd8.txt \
1333
	test/data/proc_drbd80-emptyline.txt \
1334
	test/data/proc_drbd80-emptyversion.txt \
1335
	test/data/proc_drbd83.txt \
1336
	test/data/proc_drbd83_sync.txt \
1337
	test/data/proc_drbd83_sync_want.txt \
1338
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
1339
	test/data/proc_drbd84.txt \
1340
	test/data/proc_drbd84_sync.txt \
1341
	test/data/proc_meminfo.txt \
1342
	test/data/proc_cpuinfo.txt \
1343
	test/data/qa-minimal-nodes-instances-only.json \
1344
	test/data/sys_drbd_usermode_helper.txt \
1345
	test/data/vgreduce-removemissing-2.02.02.txt \
1346
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
1347
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
1348
	test/data/vgs-missing-pvs-2.02.02.txt \
1349
	test/data/vgs-missing-pvs-2.02.66.txt \
1350
	test/data/xen-xm-info-4.0.1.txt \
1351
	test/data/xen-xm-list-4.0.1-dom0-only.txt \
1352
	test/data/xen-xm-list-4.0.1-four-instances.txt \
1353
	test/data/xen-xm-list-long-4.0.1.txt \
1354
	test/data/xen-xm-uptime-4.0.1.txt \
1355
	test/py/ganeti-cli.test \
1356
	test/py/gnt-cli.test \
1357
	test/py/import-export_unittest-helper
1358

    
1359

    
1360
python_tests = \
1361
	doc/examples/rapi_testutils.py \
1362
	test/py/cmdlib/backup_unittest.py \
1363
	test/py/cmdlib/cluster_unittest.py \
1364
	test/py/cmdlib/cmdlib_unittest.py \
1365
	test/py/cmdlib/group_unittest.py \
1366
	test/py/cmdlib/instance_unittest.py \
1367
	test/py/cmdlib/instance_migration_unittest.py \
1368
	test/py/cmdlib/instance_query_unittest.py \
1369
	test/py/cmdlib/instance_storage_unittest.py \
1370
	test/py/cmdlib/node_unittest.py \
1371
	test/py/cmdlib/test_unittest.py \
1372
	test/py/cfgupgrade_unittest.py \
1373
	test/py/docs_unittest.py \
1374
	test/py/ganeti.asyncnotifier_unittest.py \
1375
	test/py/ganeti.backend_unittest-runasroot.py \
1376
	test/py/ganeti.backend_unittest.py \
1377
	test/py/ganeti.bootstrap_unittest.py \
1378
	test/py/ganeti.cli_unittest.py \
1379
	test/py/ganeti.client.gnt_cluster_unittest.py \
1380
	test/py/ganeti.client.gnt_instance_unittest.py \
1381
	test/py/ganeti.client.gnt_job_unittest.py \
1382
	test/py/ganeti.compat_unittest.py \
1383
	test/py/ganeti.confd.client_unittest.py \
1384
	test/py/ganeti.config_unittest.py \
1385
	test/py/ganeti.constants_unittest.py \
1386
	test/py/ganeti.daemon_unittest.py \
1387
	test/py/ganeti.errors_unittest.py \
1388
	test/py/ganeti.hooks_unittest.py \
1389
	test/py/ganeti.ht_unittest.py \
1390
	test/py/ganeti.http_unittest.py \
1391
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
1392
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
1393
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1394
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1395
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
1396
	test/py/ganeti.hypervisor_unittest.py \
1397
	test/py/ganeti.impexpd_unittest.py \
1398
	test/py/ganeti.jqueue_unittest.py \
1399
	test/py/ganeti.jstore_unittest.py \
1400
	test/py/ganeti.locking_unittest.py \
1401
	test/py/ganeti.luxi_unittest.py \
1402
	test/py/ganeti.masterd.iallocator_unittest.py \
1403
	test/py/ganeti.masterd.instance_unittest.py \
1404
	test/py/ganeti.mcpu_unittest.py \
1405
	test/py/ganeti.netutils_unittest.py \
1406
	test/py/ganeti.objects_unittest.py \
1407
	test/py/ganeti.opcodes_unittest.py \
1408
	test/py/ganeti.outils_unittest.py \
1409
	test/py/ganeti.ovf_unittest.py \
1410
	test/py/ganeti.qlang_unittest.py \
1411
	test/py/ganeti.query_unittest.py \
1412
	test/py/ganeti.rapi.baserlib_unittest.py \
1413
	test/py/ganeti.rapi.client_unittest.py \
1414
	test/py/ganeti.rapi.resources_unittest.py \
1415
	test/py/ganeti.rapi.rlib2_unittest.py \
1416
	test/py/ganeti.rapi.testutils_unittest.py \
1417
	test/py/ganeti.rpc_unittest.py \
1418
	test/py/ganeti.runtime_unittest.py \
1419
	test/py/ganeti.serializer_unittest.py \
1420
	test/py/ganeti.server.rapi_unittest.py \
1421
	test/py/ganeti.ssconf_unittest.py \
1422
	test/py/ganeti.ssh_unittest.py \
1423
	test/py/ganeti.storage.bdev_unittest.py \
1424
	test/py/ganeti.storage.container_unittest.py \
1425
	test/py/ganeti.storage.drbd_unittest.py \
1426
	test/py/ganeti.storage.filestorage_unittest.py \
1427
	test/py/ganeti.tools.burnin_unittest.py \
1428
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1429
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1430
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1431
	test/py/ganeti.uidpool_unittest.py \
1432
	test/py/ganeti.utils.algo_unittest.py \
1433
	test/py/ganeti.utils.filelock_unittest.py \
1434
	test/py/ganeti.utils.hash_unittest.py \
1435
	test/py/ganeti.utils.io_unittest-runasroot.py \
1436
	test/py/ganeti.utils.io_unittest.py \
1437
	test/py/ganeti.utils.log_unittest.py \
1438
	test/py/ganeti.utils.lvm_unittest.py \
1439
	test/py/ganeti.utils.mlock_unittest.py \
1440
	test/py/ganeti.utils.nodesetup_unittest.py \
1441
	test/py/ganeti.utils.process_unittest.py \
1442
	test/py/ganeti.utils.retry_unittest.py \
1443
	test/py/ganeti.utils.storage_unittest.py \
1444
	test/py/ganeti.utils.text_unittest.py \
1445
	test/py/ganeti.utils.version_unittest.py \
1446
	test/py/ganeti.utils.wrapper_unittest.py \
1447
	test/py/ganeti.utils.x509_unittest.py \
1448
	test/py/ganeti.utils_unittest.py \
1449
	test/py/ganeti.vcluster_unittest.py \
1450
	test/py/ganeti.workerpool_unittest.py \
1451
	test/py/pycurl_reset_unittest.py \
1452
	test/py/qa.qa_config_unittest.py \
1453
	test/py/tempfile_fork_unittest.py
1454

    
1455
python_test_support = \
1456
	test/py/__init__.py \
1457
	test/py/lockperf.py \
1458
	test/py/testutils.py \
1459
	test/py/mocks.py \
1460
	test/py/cmdlib/__init__.py \
1461
	test/py/cmdlib/testsupport/__init__.py \
1462
	test/py/cmdlib/testsupport/cmdlib_testcase.py \
1463
	test/py/cmdlib/testsupport/config_mock.py \
1464
	test/py/cmdlib/testsupport/iallocator_mock.py \
1465
	test/py/cmdlib/testsupport/lock_manager_mock.py \
1466
	test/py/cmdlib/testsupport/netutils_mock.py \
1467
	test/py/cmdlib/testsupport/processor_mock.py \
1468
	test/py/cmdlib/testsupport/rpc_runner_mock.py \
1469
	test/py/cmdlib/testsupport/ssh_mock.py \
1470
	test/py/cmdlib/testsupport/utils_mock.py \
1471
	test/py/cmdlib/testsupport/util.py
1472

    
1473
haskell_tests = test/hs/htest
1474

    
1475
dist_TESTS = \
1476
	test/py/check-cert-expired_unittest.bash \
1477
	test/py/daemon-util_unittest.bash \
1478
	test/py/ganeti-cleaner_unittest.bash \
1479
	test/py/import-export_unittest.bash \
1480
	test/py/cli-test.bash \
1481
	test/py/bash_completion.bash
1482

    
1483
if PY_UNIT
1484
dist_TESTS += $(python_tests)
1485
endif
1486

    
1487
nodist_TESTS =
1488
check_SCRIPTS =
1489

    
1490
if WANT_HSTESTS
1491
nodist_TESTS += $(haskell_tests)
1492
dist_TESTS += test/hs/offline-test.sh
1493
check_SCRIPTS += \
1494
	test/hs/hpc-htools \
1495
	test/hs/hpc-mon-collector \
1496
	$(HS_BUILT_TEST_HELPERS)
1497
endif
1498

    
1499
TESTS = $(dist_TESTS) $(nodist_TESTS)
1500

    
1501
# Environment for all tests
1502
PLAIN_TESTS_ENVIRONMENT = \
1503
	PYTHONPATH=.:./test/py \
1504
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1505
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1506
	$(RUN_IN_TEMPDIR)
1507

    
1508
# Environment for tests run by automake
1509
TESTS_ENVIRONMENT = \
1510
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1511

    
1512
all_python_code = \
1513
	$(dist_sbin_SCRIPTS) \
1514
	$(python_scripts) \
1515
	$(pkglib_python_scripts) \
1516
	$(nodist_pkglib_python_scripts) \
1517
	$(nodist_tools_python_scripts) \
1518
	$(pkgpython_PYTHON) \
1519
	$(client_PYTHON) \
1520
	$(cmdlib_PYTHON) \
1521
	$(hypervisor_PYTHON) \
1522
	$(storage_PYTHON) \
1523
	$(rapi_PYTHON) \
1524
	$(server_PYTHON) \
1525
	$(pytools_PYTHON) \
1526
	$(http_PYTHON) \
1527
	$(confd_PYTHON) \
1528
	$(masterd_PYTHON) \
1529
	$(impexpd_PYTHON) \
1530
	$(utils_PYTHON) \
1531
	$(watcher_PYTHON) \
1532
	$(noinst_PYTHON) \
1533
	$(qa_scripts)
1534

    
1535
if PY_UNIT
1536
all_python_code += $(python_tests)
1537
all_python_code += $(python_test_support)
1538
endif
1539

    
1540
srclink_files = \
1541
	man/footer.rst \
1542
	test/py/check-cert-expired_unittest.bash \
1543
	test/py/daemon-util_unittest.bash \
1544
	test/py/ganeti-cleaner_unittest.bash \
1545
	test/py/import-export_unittest.bash \
1546
	test/py/cli-test.bash \
1547
	test/py/bash_completion.bash \
1548
	test/hs/offline-test.sh \
1549
	test/hs/cli-tests-defs.sh \
1550
	$(all_python_code) \
1551
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1552
	$(docinput)
1553

    
1554
check_python_code = \
1555
	$(BUILD_BASH_COMPLETION) \
1556
	$(CHECK_IMPORTS) \
1557
	$(CHECK_HEADER) \
1558
	$(DOCPP) \
1559
	$(all_python_code)
1560

    
1561
lint_python_code = \
1562
	ganeti \
1563
	ganeti/http/server.py \
1564
	$(dist_sbin_SCRIPTS) \
1565
	$(python_scripts) \
1566
	$(pkglib_python_scripts) \
1567
	$(BUILD_BASH_COMPLETION) \
1568
	$(CHECK_IMPORTS) \
1569
	$(CHECK_HEADER) \
1570
	$(DOCPP) \
1571
	$(gnt_python_sbin_SCRIPTS) \
1572
	$(PYTHON_BOOTSTRAP)
1573

    
1574
standalone_python_modules = \
1575
	lib/rapi/client.py \
1576
	tools/ganeti-listrunner
1577

    
1578
pep8_python_code = \
1579
	ganeti \
1580
	ganeti/http/server.py \
1581
	$(dist_sbin_SCRIPTS) \
1582
	$(python_scripts) \
1583
	$(pkglib_python_scripts) \
1584
	$(BUILD_BASH_COMPLETION) \
1585
	$(CHECK_HEADER) \
1586
	$(DOCPP) \
1587
	$(PYTHON_BOOTSTRAP) \
1588
	$(gnt_python_sbin_SCRIPTS) \
1589
	qa \
1590
	$(python_test_support)
1591

    
1592
test/py/daemon-util_unittest.bash: daemons/daemon-util
1593

    
1594
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1595

    
1596
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1597

    
1598
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1599
	sed -f $(REPLACE_VARS_SED) < $< > $@
1600
	chmod +x $@
1601

    
1602
tools/vif-ganeti: tools/vif-ganeti.in $(REPLACE_VARS_SED)
1603
	sed -f $(REPLACE_VARS_SED) < $< > $@
1604
	chmod +x $@
1605

    
1606
tools/net-common: tools/net-common.in $(REPLACE_VARS_SED)
1607
	sed -f $(REPLACE_VARS_SED) < $< > $@
1608
	chmod +x $@
1609

    
1610
tools/users-setup: Makefile $(userspecs)
1611
	set -e; \
1612
	{ echo '#!/bin/sh'; \
1613
	  echo 'if [ "x$$1" != "x--yes-do-it" ];'; \
1614
	  echo 'then echo "This will do the following changes"'; \
1615
	  $(AWK) -- '{print "echo + Will add group ",$$1; count++}\
1616
	             END {if (count == 0) {print "echo + No groups to add"}}' doc/users/groups; \
1617
	  $(AWK) -- '{if (NF > 1) {print "echo + Will add user",$$1,"with primary group",$$2} \
1618
	                          else {print "echo + Will add user",$$1}; count++}\
1619
	             END {if (count == 0) {print "echo + No users to add"}}' doc/users/users; \
1620
	  $(AWK) -- '{print "echo + Will add user",$$1,"to group",$$2}' doc/users/groupmemberships; \
1621
	  echo 'echo'; \
1622
	  echo 'echo "OK? (y/n)"'; \
1623
	  echo 'read confirm'; \
1624
	  echo 'if [ "x$$confirm" != "xy" ]; then exit 0; fi'; \
1625
	  echo 'fi'; \
1626
	  $(AWK) -- '{print "addgroup --system",$$1}' doc/users/groups; \
1627
	  $(AWK) -- '{if (NF > 1) {print "adduser --system --ingroup",$$2,$$1} else {print "adduser --system",$$1}}' doc/users/users; \
1628
	  $(AWK) -- '{print "adduser",$$1,$$2}' doc/users/groupmemberships; \
1629
	} > $@
1630
	chmod +x $@
1631

    
1632
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1633
	sed -f $(REPLACE_VARS_SED) < $< > $@
1634
	chmod +x $@
1635

    
1636
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1637
	sed -f $(REPLACE_VARS_SED) < $< > $@
1638
	chmod +x $@
1639

    
1640
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1641
	sed -f $(REPLACE_VARS_SED) < $< > $@
1642

    
1643
doc/examples/bash_completion: BC_ARGS = --compact
1644
doc/examples/bash_completion-debug: BC_ARGS =
1645

    
1646
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1647
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1648
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1649
	daemons/ganeti-cleaner \
1650
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1651
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1652
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1653

    
1654
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1655
	lib/build/shell_example_lexer.py \
1656
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1657
	@echo "Checking $< for hardcoded paths..."
1658
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1659
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1660
	  exit 1; \
1661
	fi
1662
	set -e ; \
1663
	trap 'echo auto-removing $@; rm $@' EXIT; \
1664
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1665
	$(CHECK_MAN_REFERENCES) $@; \
1666
	trap - EXIT
1667

    
1668
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1669
	@test -n "$(PANDOC)" || \
1670
	  { echo 'pandoc' not found during configure; exit 1; }
1671
	set -o pipefail -e; \
1672
	trap 'echo auto-removing $@; rm $@' EXIT; \
1673
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1674
	  sed -e 's/\\@/@/g' > $@; \
1675
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1676
	$(CHECK_MAN_DASHES) $@; \
1677
	trap - EXIT
1678

    
1679
man/%.html.in: man/%.gen man/footer.rst
1680
	@test -n "$(PANDOC)" || \
1681
	  { echo 'pandoc' not found during configure; exit 1; }
1682
	set -o pipefail ; \
1683
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1684
	  sed -e 's/\\@/@/g' > $@
1685

    
1686
man/%: man/%.in  $(REPLACE_VARS_SED)
1687
	sed -f $(REPLACE_VARS_SED) < $< > $@
1688

    
1689
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1690
	sed -f $(REPLACE_VARS_SED) < $< > $@
1691

    
1692
vcs-version:
1693
	if test -d .git; then \
1694
	  git describe > $@; \
1695
	elif test ! -f $@ ; then \
1696
	  echo "Cannot auto-generate $@ file"; exit 1; \
1697
	fi
1698

    
1699
.PHONY: clean-vcs-version
1700
clean-vcs-version:
1701
	rm -f vcs-version
1702

    
1703
.PHONY: regen-vcs-version
1704
regen-vcs-version:
1705
	@set -e; \
1706
	cd $(srcdir); \
1707
	if test -d .git; then \
1708
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1709
	  git describe > $$T; \
1710
	  if ! cmp --quiet $$T vcs-version; then \
1711
	    mv $$T vcs-version; \
1712
	  fi; \
1713
	fi
1714

    
1715
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1716
	vcs-version $(built_base_sources)
1717
	set -e; \
1718
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1719
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1720

    
1721
src/Ganeti/Hs2Py/ListConstants.hs: src/Ganeti/Hs2Py/ListConstants.hs.in \
1722
				   src/Ganeti/Constants.hs \
1723
			         | stamp-directories
1724
	@echo Generating $@
1725
	@set -e; \
1726
## Extract constant names from 'Constants.hs' by extracting the left
1727
## side of all lines containing an equal sign (i.e., '=') and
1728
## prepending the apostrophe sign (i.e., "'").
1729
##
1730
## For example, the constant
1731
##   adminstDown = ...
1732
## becomes
1733
##   'adminstDown
1734
	NAMES=$$(sed -e "/^--/ d" $(abs_top_srcdir)/src/Ganeti/Constants.hs |\
1735
		 sed -n -e "/=/ s/\(.*\) =.*/    '\1:/g p"); \
1736
	m4 -DPY_CONSTANT_NAMES="$$NAMES" $(abs_top_srcdir)/$< > $@
1737

    
1738
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1739
	hsc2hs -o $@ $<
1740

    
1741
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1742
	$(built_base_sources)
1743
	set -e; \
1744
	{ cat $< ; \
1745
	  echo ; \
1746
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1747
	    echo "import $$name ()" ; \
1748
	  done ; \
1749
	} > $@
1750

    
1751
lib/_constants.py: Makefile src/hs2py lib/_constants.py.in | stamp-directories
1752
	cat $(abs_top_srcdir)/lib/_constants.py.in > $@
1753
	src/hs2py --constants >> $@
1754

    
1755
lib/constants.py: lib/_constants.py
1756

    
1757
src/AutoConf.hs: Makefile src/AutoConf.hs.in $(PRINT_PY_CONSTANTS) \
1758
	       | $(built_base_sources)
1759
	@echo "m4 ... >" $@
1760
	@m4 -DPACKAGE_VERSION="$(PACKAGE_VERSION)" \
1761
	    -DVERSION_MAJOR="$(VERSION_MAJOR)" \
1762
	    -DVERSION_MINOR="$(VERSION_MINOR)" \
1763
	    -DVERSION_REVISION="$(VERSION_REVISION)" \
1764
	    -DVERSION_SUFFIX="$(VERSION_SUFFIX)" \
1765
	    -DVERSION_FULL="$(VERSION_FULL)" \
1766
	    -DDIRVERSION="$(DIRVERSION)" \
1767
	    -DLOCALSTATEDIR="$(localstatedir)" \
1768
	    -DSYSCONFDIR="$(sysconfdir)" \
1769
	    -DSSH_CONFIG_DIR="$(SSH_CONFIG_DIR)" \
1770
	    -DSSH_LOGIN_USER="$(SSH_LOGIN_USER)" \
1771
	    -DSSH_CONSOLE_USER="$(SSH_CONSOLE_USER)" \
1772
	    -DEXPORT_DIR="$(EXPORT_DIR)" \
1773
	    -DOS_SEARCH_PATH="\"$(OS_SEARCH_PATH)\"" \
1774
	    -DES_SEARCH_PATH="\"$(ES_SEARCH_PATH)\"" \
1775
	    -DXEN_BOOTLOADER="$(XEN_BOOTLOADER)" \
1776
	    -DXEN_CONFIG_DIR="$(XEN_CONFIG_DIR)" \
1777
	    -DXEN_KERNEL="$(XEN_KERNEL)" \
1778
	    -DXEN_INITRD="$(XEN_INITRD)" \
1779
	    -DKVM_KERNEL="$(KVM_KERNEL)" \
1780
	    -DSHARED_FILE_STORAGE_DIR="$(SHARED_FILE_STORAGE_DIR)" \
1781
	    -DIALLOCATOR_SEARCH_PATH="\"$(IALLOCATOR_SEARCH_PATH)\"" \
1782
	    -DKVM_PATH="$(KVM_PATH)" \
1783
	    -DIP_PATH="$(IP_PATH)" \
1784
	    -DSOCAT_PATH="$(SOCAT)" \
1785
	    -DSOCAT_USE_ESCAPE="$(SOCAT_USE_ESCAPE)" \
1786
	    -DSOCAT_USE_COMPRESS="$(SOCAT_USE_COMPRESS)" \
1787
	    -DLVM_STRIPECOUNT="$(LVM_STRIPECOUNT)" \
1788
	    -DTOOLSDIR="$(libdir)/ganeti/tools" \
1789
	    -DGNT_SCRIPTS="$(foreach i,$(notdir $(gnt_scripts)),\"$(i)\":)" \
1790
	    -DHS_HTOOLS_PROGS="$(foreach i,$(HS_HTOOLS_PROGS),\"$(i)\":)" \
1791
	    -DPKGLIBDIR="$(libdir)/ganeti" \
1792
	    -DSHAREDIR="$(prefix)/share/ganeti" \
1793
	    -DVERSIONEDSHAREDIR="$(versionedsharedir)" \
1794
	    -DDRBD_BARRIERS="$(DRBD_BARRIERS)" \
1795
	    -DDRBD_NO_META_FLUSH="$(DRBD_NO_META_FLUSH)" \
1796
	    -DSYSLOG_USAGE="$(SYSLOG_USAGE)" \
1797
	    -DDAEMONS_GROUP="$(DAEMONS_GROUP)" \
1798
	    -DADMIN_GROUP="$(ADMIN_GROUP)" \
1799
	    -DMASTERD_USER="$(MASTERD_USER)" \
1800
	    -DMASTERD_GROUP="$(MASTERD_GROUP)" \
1801
	    -DRAPI_USER="$(RAPI_USER)" \
1802
	    -DRAPI_GROUP="$(RAPI_GROUP)" \
1803
	    -DCONFD_USER="$(CONFD_USER)" \
1804
	    -DCONFD_GROUP="$(CONFD_GROUP)" \
1805
	    -DLUXID_USER="$(LUXID_USER)" \
1806
	    -DLUXID_GROUP="$(LUXID_GROUP)" \
1807
	    -DNODED_USER="$(NODED_USER)" \
1808
	    -DNODED_GROUP="$(NODED_GROUP)" \
1809
	    -DMOND_USER="$(MOND_USER)" \
1810
	    -DMOND_GROUP="$(MOND_GROUP)" \
1811
	    -DDISK_SEPARATOR="$(DISK_SEPARATOR)" \
1812
	    -DQEMUIMG_PATH="$(QEMUIMG_PATH)" \
1813
	    -DHTOOLS="True" \
1814
	    -DENABLE_CONFD="$(ENABLE_CONFD)" \
1815
	    -DXEN_CMD="$(XEN_CMD)" \
1816
	    -DENABLE_SPLIT_QUERY="$(ENABLE_SPLIT_QUERY)" \
1817
	    -DENABLE_RESTRICTED_COMMANDS="$(ENABLE_RESTRICTED_COMMANDS)" \
1818
	    -DENABLE_MOND="$(ENABLE_MOND)" \
1819
	    -DHAS_GNU_LN="$(HAS_GNU_LN)" \
1820
	    -DMAN_PAGES="$$(for i in $(notdir $(man_MANS)); do \
1821
	                    echo -n "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/("\1",\2):/g'; \
1822
	                    done)" \
1823
	    -DAF_INET4="$$(PYTHONPATH=. python $(PRINT_PY_CONSTANTS) AF_INET4)" \
1824
	    -DAF_INET6="$$(PYTHONPATH=. python $(PRINT_PY_CONSTANTS) AF_INET6)" \
1825
	$(abs_top_srcdir)/src/AutoConf.hs.in > $@
1826

    
1827
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1828
	set -e; \
1829
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1830
	{ echo '# This file is automatically generated, do not edit!'; \
1831
	  echo '#'; \
1832
	  echo ''; \
1833
	  echo '"""Build-time VCS version number for Ganeti.'; \
1834
	  echo '';\
1835
	  echo 'This file is autogenerated by the build process.'; \
1836
	  echo 'For any changes you need to re-run ./configure (and'; \
1837
	  echo 'not edit by hand).'; \
1838
	  echo ''; \
1839
	  echo '"""'; \
1840
	  echo ''; \
1841
	  echo '# pylint: disable=C0301,C0324'; \
1842
	  echo '# because this is autogenerated, we do not want'; \
1843
	  echo '# style warnings' ; \
1844
	  echo ''; \
1845
	  echo "VCS_VERSION = '$$VCSVER'"; \
1846
	} > $@
1847

    
1848
lib/opcodes.py: Makefile src/hs2py lib/opcodes.py.in_before \
1849
		lib/opcodes.py.in_after | stamp-directories
1850
	cat $(abs_top_srcdir)/lib/opcodes.py.in_before > $@
1851
	src/hs2py --opcodes >> $@
1852
	cat $(abs_top_srcdir)/lib/opcodes.py.in_after >> $@
1853

    
1854
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1855
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1856

    
1857
$(SHELL_ENV_INIT): Makefile stamp-directories
1858
	set -e; \
1859
	{ echo '# Allow overriding for tests'; \
1860
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1861
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1862
	  echo; \
1863
	  echo 'readonly PKGLIBDIR=$(libdir)/ganeti'; \
1864
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1865
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1866
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1867
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1868
	} > $@
1869

    
1870
## Writes sed script to replace placeholders with build-time values. The
1871
## additional quotes after the first @ sign are necessary to stop configure
1872
## from replacing those values as well.
1873
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1874
	set -e; \
1875
	{ echo 's#@''PREFIX@#$(prefix)#g'; \
1876
	  echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1877
	  echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1878
	  echo 's#@''BINDIR@#$(execprefix)/bin#g'; \
1879
	  echo 's#@''SBINDIR@#$(execprefix)/sbin#g'; \
1880
	  echo 's#@''LIBDIR@#$(libdir)#g'; \
1881
	  echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1882
	  echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1883
	  echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1884
	  echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1885
	  echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1886
	  echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1887
	  echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1888
	  echo 's#@''PKGLIBDIR@#$(libdir)/ganeti#g'; \
1889
	  echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1890
	  echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1891
	  echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1892
	  echo 's#@''GNTLUXIDUSER@#$(LUXID_USER)#g'; \
1893
	  echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1894
	  echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1895
	  echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1896
	  echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1897
	  echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1898
	  echo 's#@''GNTLUXIDGROUP@#$(LUXID_GROUP)#g'; \
1899
	  echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1900
	  echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1901
	  echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1902
	  echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1903
	  echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1904
	  echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1905
	  echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1906
	  echo; \
1907
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1908
	  echo '  r $(SHELL_ENV_INIT)'; \
1909
	  echo '  d'; \
1910
	  echo '}'; \
1911
	} > $@
1912

    
1913
# Using deferred evaluation
1914
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1915
daemons/ganeti-watcher: MODULE = ganeti.watcher
1916
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1917
tools/burnin: MODULE = ganeti.tools.burnin
1918
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1919
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1920
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1921
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1922
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1923

    
1924
$(PYTHON_BOOTSTRAP) $(gnt_scripts) $(gnt_python_sbin_SCRIPTS): Makefile | stamp-directories
1925
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1926
	set -e; \
1927
	{ echo '#!/usr/bin/python'; \
1928
	  echo '# This file is automatically generated, do not edit!'; \
1929
	  echo "# Edit $(MODULE) instead."; \
1930
	  echo; \
1931
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1932
	  echo; \
1933
	  echo '# pylint: disable=C0103'; \
1934
	  echo '# C0103: Invalid name'; \
1935
	  echo; \
1936
	  echo 'import sys'; \
1937
	  echo 'import $(MODULE) as main'; \
1938
	  echo; \
1939
	  echo '# Temporarily alias commands until bash completion'; \
1940
	  echo '# generator is changed'; \
1941
	  echo 'if hasattr(main, "commands"):'; \
1942
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1943
	  echo 'if hasattr(main, "aliases"):'; \
1944
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1945
	  echo; \
1946
	  echo 'if __name__ == "__main__":'; \
1947
	  echo '  sys.exit(main.Main())'; \
1948
	} > $@
1949
	chmod u+x $@
1950

    
1951
$(HS_BUILT_TEST_HELPERS): Makefile
1952
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1953
	set -e; \
1954
	{ echo '#!/bin/sh'; \
1955
	  echo '# This file is automatically generated, do not edit!'; \
1956
	  echo "# Edit Makefile.am instead."; \
1957
	  echo; \
1958
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
1959
	} > $@
1960
	chmod u+x $@
1961

    
1962
stamp-directories: Makefile
1963
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1964
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1965
	touch $@
1966

    
1967
# We need to create symlinks because "make distcheck" will not install Python
1968
# files when building.
1969
stamp-srclinks: Makefile | stamp-directories
1970
	set -e; \
1971
	for i in $(srclink_files); do \
1972
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1973
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1974
	  fi; \
1975
	done
1976
	touch $@
1977

    
1978
.PHONY: ganeti
1979
ganeti:
1980
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1981

    
1982
.PHONY: check-dirs
1983
check-dirs: $(GENERATED_FILES)
1984
	@set -e; \
1985
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1986
	  error=; \
1987
	  while read dir; do \
1988
	    case "$$dir" in \
1989
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1990
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1991
	    esac; \
1992
	  done; \
1993
	  for dir in $(DIRS); do \
1994
	    if ! test -d "$$dir"; then \
1995
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1996
	      error=1; \
1997
	    fi \
1998
	  done; \
1999
	  test -z "$$error"; \
2000
	}
2001

    
2002
.PHONY: check-news
2003
check-news:
2004
	RELEASE=$(PACKAGE_VERSION) $(CHECK_NEWS) < $(top_srcdir)/NEWS
2005

    
2006
.PHONY: check-local
2007
check-local: check-dirs check-news $(GENERATED_FILES)
2008
	$(CHECK_PYTHON_CODE) $(check_python_code)
2009
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
2010
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
2011
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
2012
	error= ; \
2013
	if [ "x`echo $(VERSION_SUFFIX)|grep 'alpha'`" == "x" ]; then \
2014
	  expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
2015
	  if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
2016
	    echo "Incorrect version in README, expected $$expver" >&2; \
2017
	    error=1; \
2018
	  fi; \
2019
	  for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
2020
	      doc/security.rst; do \
2021
	    if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
2022
	      "Documents Ganeti version $$expver"; then \
2023
	      echo "Incorrect version in $$file, expected $$expver" >&2; \
2024
	      error=1; \
2025
	    fi; \
2026
	  done; \
2027
	  if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
2028
	    echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
2029
	    error=1; \
2030
	  fi; \
2031
	  if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
2032
	    ".. Last updated for Ganeti $$expver"; then \
2033
	    echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
2034
	    error=1; \
2035
	  fi; \
2036
	fi; \
2037
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
2038
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
2039
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
2040
	    error=1; \
2041
	  fi; \
2042
	done; \
2043
	test -z "$$error"
2044

    
2045
.PHONY: hs-test-%
2046
hs-test-%: test/hs/htest | $(BUILT_PYTHON_SOURCES)
2047
	@rm -f htest.tix
2048
	test/hs/htest -t $*
2049

    
2050
.PHONY: hs-tests
2051
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
2052
	@rm -f htest.tix
2053
	./test/hs/htest
2054

    
2055
.PHONY: hs-shell-%
2056
hs-shell-%: test/hs/hpc-htools test/hs/hpc-mon-collector \
2057
            $(HS_BUILT_TEST_HELPERS)
2058
	@rm -f hpc-htools.tix hpc-mon-collector.tix
2059
	HBINARY="./test/hs/hpc-htools" \
2060
	SHELLTESTARGS=$(SHELLTESTARGS) \
2061
	./test/hs/offline-test.sh $*
2062

    
2063
.PHONY: hs-shell
2064
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
2065
	@rm -f hpc-htools.tix hpc-mon-collector.tix
2066
	HBINARY="./test/hs/hpc-htools" \
2067
	SHELLTESTARGS=$(SHELLTESTARGS) \
2068
	./test/hs/offline-test.sh
2069

    
2070
.PHONY: hs-check
2071
hs-check: hs-tests hs-shell
2072

    
2073
# E111: indentation is not a multiple of four
2074
# E121: continuation line indentation is not a multiple of four
2075
#       (since our indent level is not 4)
2076
# E125: continuation line does not distinguish itself from next logical line
2077
#       (since our indent level is not 4)
2078
# E123: closing bracket does not match indentation of opening bracket's line
2079
# E127: continuation line over-indented for visual indent
2080
#       (since our indent level is not 4)
2081
# note: do NOT add E128 here; it's a valid style error in most cases!
2082
# I've seen real errors, but also some cases were we indent wrongly
2083
# due to line length; try to rework the cases where it is triggered,
2084
# instead of silencing it
2085
# E261: at least two spaces before inline comment
2086
# E501: line too long (80 characters)
2087
PEP8_IGNORE = E111,E121,E123,E125,E127,E261,E501
2088

    
2089
# For excluding pep8 expects filenames only, not whole paths
2090
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
2091

    
2092
LINT_TARGETS = pylint pylint-qa pylint-test
2093
if HAS_PEP8
2094
LINT_TARGETS += pep8
2095
endif
2096
if HAS_HLINT
2097
LINT_TARGETS += hlint
2098
endif
2099

    
2100
.PHONY: lint
2101
lint: $(LINT_TARGETS)
2102

    
2103
.PHONY: pylint
2104
pylint: $(GENERATED_FILES)
2105
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2106
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
2107

    
2108
.PHONY: pylint-qa
2109
pylint-qa: $(GENERATED_FILES)
2110
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2111
	cd $(top_srcdir)/qa && \
2112
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
2113
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
2114
# FIXME: lint all test code, not just the newly added test support
2115
pylint-test: $(GENERATED_FILES)
2116
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2117
	cd $(top_srcdir) && \
2118
		PYTHONPATH=.:./test/py $(PYLINT) $(LINT_OPTS) \
2119
		--rcfile=pylintrc-test  $(python_test_support)
2120

    
2121
.PHONY: pep8
2122
pep8: $(GENERATED_FILES)
2123
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
2124
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
2125
	  --repeat $(pep8_python_code)
2126

    
2127
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
2128
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
2129
.PHONY: hlint
2130
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
2131
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
2132
	@rm -f doc/hs-lint.html
2133
	if tty -s; then C="-c"; else C=""; fi; \
2134
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
2135
	  --ignore "Use first" \
2136
	  --ignore "Use &&&" \
2137
	  --ignore "Use void" \
2138
	  --ignore "Reduce duplication" \
2139
	  --hint src/lint-hints \
2140
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
2141
	@if [ ! -f doc/hs-lint.html ]; then \
2142
	  echo "All good" > doc/hs-lint.html; \
2143
	fi
2144

    
2145
# a dist hook rule for updating the vcs-version file; this is
2146
# hardcoded due to where it needs to build the file...
2147
dist-hook:
2148
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
2149
	rm -f $(top_distdir)/vcs-version
2150
	cp -p $(srcdir)/vcs-version $(top_distdir)
2151

    
2152
# a distcheck hook rule for catching revision control directories
2153
distcheck-hook:
2154
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
2155
	  echo "Found revision control files in final archive." 1>&2; \
2156
	  exit 1; \
2157
	fi
2158
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
2159
	  echo "Found Python byte code in final archive." 1>&2; \
2160
	  exit 1; \
2161
	fi
2162
	if find $(top_distdir) -name '*~' | grep .; then \
2163
	  echo "Found backup files in final archive." 1>&2; \
2164
	  exit 1; \
2165
	fi
2166
# Empty files or directories should not be distributed. They can cause
2167
# unnecessary warnings for packagers. Directories used by automake during
2168
# distcheck must be excluded.
2169
	if find $(top_distdir) -empty -and -not \( \
2170
	    -path $(top_distdir)/_build -or \
2171
	    -path $(top_distdir)/_inst \) | grep .; then \
2172
	  echo "Found empty files or directories in final archive." 1>&2; \
2173
	  exit 1; \
2174
	fi
2175
	if test -e $(top_distdir)/doc/man-html; then \
2176
	  echo "Found documentation including man pages in final archive" >&2; \
2177
	  exit 1; \
2178
	fi
2179

    
2180
# Backwards compatible distcheck-release target
2181
distcheck-release: distcheck
2182

    
2183
distrebuildcheck: dist
2184
	set -e; \
2185
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
2186
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
2187
	cd $$builddir; \
2188
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
2189
	cd $(distdir); \
2190
	./configure; \
2191
	$(MAKE) maintainer-clean; \
2192
	cp $(abs_srcdir)/vcs-version .; \
2193
	./configure; \
2194
	$(MAKE) $(AM_MAKEFLAGS)
2195

    
2196
dist-release: dist
2197
	set -e; \
2198
	for i in $(DIST_ARCHIVES); do \
2199
	  echo -n "Checking $$i ... "; \
2200
	  autotools/check-tar < $$i; \
2201
	  echo OK; \
2202
	done
2203

    
2204
install-exec-local:
2205
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
2206
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
2207
	  "$(DESTDIR)${localstatedir}/run/ganeti"
2208
	for dir in $(SYMLINK_TARGET_DIRS); do \
2209
	  @mkdir_p@  $(DESTDIR)$$dir; \
2210
	done
2211
	$(LN_S) -f $(sysconfdir)/ganeti/lib $(DESTDIR)$(defaultversiondir)
2212
	$(LN_S) -f $(sysconfdir)/ganeti/share $(DESTDIR)$(defaultversionedsharedir)
2213
	for prog in $(HS_BIN_ROLES); do \
2214
	  $(LN_S) -f $(defaultversiondir)$(exec_prefix)/bin/$$prog $(DESTDIR)$(exec_prefix)/bin/$$prog; \
2215
	done
2216
	$(LN_S) -f $(defaultversiondir)$(libdir)/ganeti/iallocators/hail $(DESTDIR)$(libdir)/ganeti/iallocators/hail
2217
	for prog in $(all_sbin_scripts); do \
2218
	  $(LN_S) -f $(defaultversiondir)$(exec_prefix)/sbin/$$prog $(DESTDIR)$(exec_prefix)/sbin/$$prog; \
2219
	done
2220
	for prog in $(gnt_scripts_basenames); do \
2221
	  $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(exec_prefix)/sbin/$$prog; \
2222
	done
2223
	for prog in $(pkglib_python_basenames); do \
2224
	  $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(libdir)/ganeti/$$prog; \
2225
	done
2226
	for prog in $(tools_python_basenames); do \
2227
	  $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(libdir)/ganeti/tools/$$prog; \
2228
	done
2229
	for prog in $(tools_basenames); do \
2230
	  $(LN_S) -f $(defaultversiondir)/$(libdir)/ganeti/tools/$$prog $(DESTDIR)$(libdir)/ganeti/tools/$$prog; \
2231
	done
2232
	if ! test -n '$(ENABLE_MANPAGES)'; then \
2233
	  for man in $(manfullpath); do \
2234
	    $(LN_S) -f $(defaultversionedsharedir)$(datarootdir)/man/$$man $(DESTDIR)$(datarootdir)/man/$$man; \
2235
	  done; \
2236
	fi
2237
	for prog in $(myexeclib_scripts_basenames); do \
2238
	  $(LN_S) -f $(defaultversiondir)$(libdir)/ganeti/$$prog $(DESTDIR)$(libdir)/ganeti/$$prog; \
2239
	done
2240
if INSTALL_SYMLINKS
2241
	$(LN_S) -f $(versionedsharedir) $(DESTDIR)$(sysconfdir)/ganeti/share
2242
	$(LN_S) -f $(versiondir) $(DESTDIR)$(sysconfdir)/ganeti/lib
2243
endif
2244

    
2245
.PHONY: apidoc
2246
if WANT_HSAPIDOC
2247
apidoc: py-apidoc hs-apidoc
2248
else
2249
apidoc: py-apidoc
2250
endif
2251

    
2252
.PHONY: py-apidoc
2253
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
2254
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
2255
	$(RUN_IN_TEMPDIR) epydoc -v \
2256
	  --conf $(CURDIR)/epydoc.conf \
2257
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
2258

    
2259
.PHONY: hs-apidoc
2260
hs-apidoc: $(APIDOC_HS_DIR)/index.html
2261

    
2262
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
2263
	@test -n "$(HSCOLOUR)" || \
2264
	    { echo 'HsColour' not found during configure; exit 1; }
2265
	@test -n "$(HADDOCK)" || \
2266
	    { echo 'haddock' not found during configure; exit 1; }
2267
	rm -rf $(APIDOC_HS_DIR)/*
2268
	for i in $(ALL_APIDOC_HS_DIRS); do \
2269
	  @mkdir_p@ $$i; \
2270
	  $(HSCOLOUR) -print-css > $$i/hscolour.css; \
2271
	done
2272
	set -e ; \
2273
	export LC_ALL=en_US.UTF-8; \
2274
	OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
2275
	if [ "$(HS_PARALLEL3)" ]; \
2276
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
2277
	fi; \
2278
	if [ "$(HS_REGEX_PCRE)" ]; \
2279
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
2280
	fi; \
2281
	for file in $(HS_LIBTESTBUILT_SRCS); do \
2282
	  f_nosrc=$${file##src/}; \
2283
	  f_notst=$${f_nosrc##test/hs/}; \
2284
	  f_html=$${f_notst%%.hs}.html; \
2285
	  $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
2286
	done ; \
2287
	$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
2288
	  -t ganeti -p src/haddock-prologue \
2289
	  --source-module="%{MODULE/.//}.html" \
2290
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
2291
	  $$OPTGHC \
2292
	  $(HS_LIBTESTBUILT_SRCS)
2293

    
2294
.PHONY: TAGS
2295
TAGS: $(GENERATED_FILES)
2296
	rm -f TAGS
2297
	$(GHC) -e ":etags" -v0 \
2298
	  $(filter-out -O -Werror,$(HFLAGS)) \
2299
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
2300
	  $(HS_LIBTEST_SRCS)
2301
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
2302
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
2303
	  -path './qa/*.py' | \
2304
	  etags -l python -a -
2305

    
2306
.PHONY: coverage
2307

    
2308
COVERAGE_TESTS=
2309
if WANT_HTOOLS
2310
COVERAGE_TESTS += hs-coverage
2311
endif
2312
if PY_UNIT
2313
COVERAGE_TESTS += py-coverage
2314
endif
2315

    
2316
coverage: $(COVERAGE_TESTS)
2317

    
2318
.PHONY: py-coverage
2319
py-coverage: $(GENERATED_FILES) $(python_tests)
2320
	@test -n "$(PYCOVERAGE)" || \
2321
	    { echo 'python-coverage' not found during configure; exit 1; }
2322
	set -e; \
2323
	COVERAGE=$(PYCOVERAGE) \
2324
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
2325
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
2326
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
2327
	$(PLAIN_TESTS_ENVIRONMENT) \
2328
	$(abs_top_srcdir)/autotools/gen-py-coverage \
2329
	$(python_tests)
2330

    
2331
.PHONY: hs-coverage
2332
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
2333
	rm -f *.tix
2334
	$(MAKE) $(AM_MAKEFLAGS) hs-check
2335
	@mkdir_p@ $(COVERAGE_HS_DIR)
2336
	hpc sum --union $(HPCEXCL) \
2337
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
2338
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
2339
	hpc report coverage-hs.tix | tee $(COVERAGE_HS_DIR)/report.txt
2340
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
2341

    
2342
# Special "kind-of-QA" target for htools, needs special setup (all
2343
# tools compiled with -fhpc)
2344
.PHONY: live-test
2345
live-test: all
2346
	set -e ; \
2347
	cd src; \
2348
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
2349
	rm -f *.tix *.mix; \
2350
	./live-test.sh; \
2351
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
2352
	  --output=live-test.tix ; \
2353
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
2354
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
2355
	  --srcdir=.. $(HPCEXCL) ; \
2356
	hpc report --srcdir=.. live-test $(HPCEXCL)
2357

    
2358
commit-check: autotools-check distcheck lint apidoc
2359

    
2360
autotools-check:
2361
	TESTDATA_DIR=./test/data shelltest $(SHELLTESTARGS) \
2362
  $(abs_top_srcdir)/test/autotools/*-*.test \
2363
  -- --hide-successes
2364

    
2365
.PHONY: gitignore-check
2366
gitignore-check:
2367
	@if [ -n "`git status --short`" ]; then \
2368
	  echo "Git status is not clean!" 1>&2 ; \
2369
	  git status --short; \
2370
	  exit 1; \
2371
	fi
2372

    
2373
# target to rebuild all man pages (both groff and html output)
2374
.PHONY: man
2375
man: $(man_MANS) $(manhtml)
2376

    
2377
# Target that builds all binaries (including those that are not
2378
# rebuilt except when running the tests)
2379
.PHONY: really-all
2380
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
2381

    
2382
# we don't need the ancient implicit rules:
2383
%: %,v
2384
%: RCS/%,v
2385
%: RCS/%
2386
%: s.%
2387
%: SCCS/s.%
2388

    
2389
-include ./Makefile.local
2390

    
2391
# vim: set noet :