Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 00839a42

History | View | Annotate | Download (61.1 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
ACLOCAL_AMFLAGS = -I autotools
24
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
25
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
26
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
27
CHECK_HEADER = $(top_srcdir)/autotools/check-header
28
CHECK_MAN_DASHES = $(top_srcdir)/autotools/check-man-dashes
29
CHECK_MAN_REFERENCES = $(top_srcdir)/autotools/check-man-references
30
CHECK_MAN_WARNINGS = $(top_srcdir)/autotools/check-man-warnings
31
CHECK_VERSION = $(top_srcdir)/autotools/check-version
32
CHECK_NEWS = $(top_srcdir)/autotools/check-news
33
CHECK_IMPORTS = $(top_srcdir)/autotools/check-imports
34
DOCPP = $(top_srcdir)/autotools/docpp
35
REPLACE_VARS_SED = autotools/replace_vars.sed
36
CONVERT_CONSTANTS = $(top_srcdir)/autotools/convert-constants
37
BUILD_RPC = $(top_srcdir)/autotools/build-rpc
38
SHELL_ENV_INIT = autotools/shell-env-init
39

    
40
# Note: these are automake-specific variables, and must be named after
41
# the directory + 'dir' suffix
42
clientdir = $(pkgpythondir)/client
43
cmdlibdir = $(pkgpythondir)/cmdlib
44
hypervisordir = $(pkgpythondir)/hypervisor
45
storagedir = $(pkgpythondir)/storage
46
httpdir = $(pkgpythondir)/http
47
masterddir = $(pkgpythondir)/masterd
48
confddir = $(pkgpythondir)/confd
49
rapidir = $(pkgpythondir)/rapi
50
serverdir = $(pkgpythondir)/server
51
watcherdir = $(pkgpythondir)/watcher
52
impexpddir = $(pkgpythondir)/impexpd
53
utilsdir = $(pkgpythondir)/utils
54
toolsdir = $(pkglibdir)/tools
55
iallocatorsdir = $(pkglibdir)/iallocators
56
pytoolsdir = $(pkgpythondir)/tools
57
docdir = $(datadir)/doc/$(PACKAGE)
58
myexeclibdir = $(pkglibdir)
59

    
60
# Delete output file if an error occurred while building it
61
.DELETE_ON_ERROR:
62

    
63
HS_DIRS = \
64
	src \
65
	src/Ganeti \
66
	src/Ganeti/Confd \
67
	src/Ganeti/Curl \
68
	src/Ganeti/DataCollectors \
69
	src/Ganeti/HTools \
70
	src/Ganeti/HTools/Backend \
71
	src/Ganeti/HTools/Program \
72
	src/Ganeti/Hypervisor \
73
	src/Ganeti/Hypervisor/Xen \
74
	src/Ganeti/Monitoring \
75
	src/Ganeti/Query \
76
	src/Ganeti/Storage \
77
	src/Ganeti/Storage/Diskstats \
78
	src/Ganeti/Storage/Drbd \
79
	test/hs \
80
	test/hs/Test \
81
	test/hs/Test/Ganeti \
82
	test/hs/Test/Ganeti/Storage \
83
	test/hs/Test/Ganeti/Storage/Diskstats \
84
	test/hs/Test/Ganeti/Storage/Drbd \
85
	test/hs/Test/Ganeti/Confd \
86
	test/hs/Test/Ganeti/HTools \
87
	test/hs/Test/Ganeti/HTools/Backend \
88
	test/hs/Test/Ganeti/Hypervisor \
89
	test/hs/Test/Ganeti/Hypervisor/Xen \
90
	test/hs/Test/Ganeti/Query
91

    
92
# Haskell directories without the roots (src, test/hs)
93
HS_DIRS_NOROOT = $(filter-out src,$(filter-out test/hs,$(HS_DIRS)))
94

    
95
DIRS = \
96
	$(HS_DIRS) \
97
	autotools \
98
	daemons \
99
	devel \
100
	devel/data \
101
	doc \
102
	doc/css \
103
	doc/examples \
104
	doc/examples/gnt-debug \
105
	doc/examples/hooks \
106
	test/data/htools \
107
	test/data/htools/rapi \
108
	test/hs/shelltests \
109
	test/autotools \
110
	lib \
111
	lib/build \
112
	lib/client \
113
	lib/cmdlib \
114
	lib/confd \
115
	lib/http \
116
	lib/hypervisor \
117
	lib/impexpd \
118
	lib/masterd \
119
	lib/rapi \
120
	lib/server \
121
	lib/storage \
122
	lib/tools \
123
	lib/utils \
124
	lib/watcher \
125
	man \
126
	qa \
127
	test \
128
	test/data \
129
	test/data/bdev-rbd \
130
	test/data/ovfdata \
131
	test/data/ovfdata/other \
132
	test/py \
133
	tools
134

    
135
ALL_APIDOC_HS_DIRS = \
136
	$(APIDOC_HS_DIR) \
137
	$(patsubst %,$(APIDOC_HS_DIR)/%,$(call strip_hsroot,$(HS_DIRS_NOROOT)))
138

    
139
BUILDTIME_DIR_AUTOCREATE = \
140
	scripts \
141
	$(APIDOC_DIR) \
142
	$(ALL_APIDOC_HS_DIRS) \
143
	$(APIDOC_PY_DIR) \
144
	$(COVERAGE_DIR) \
145
	$(COVERAGE_HS_DIR) \
146
	$(COVERAGE_PY_DIR) \
147
	.hpc
148

    
149
BUILDTIME_DIRS = \
150
	$(BUILDTIME_DIR_AUTOCREATE) \
151
	doc/html \
152
	doc/man-html
153

    
154
DIRCHECK_EXCLUDE = \
155
	$(BUILDTIME_DIRS) \
156
	ganeti-[0-9]*.[0-9]*.[0-9]* \
157
	doc/html/_* \
158
	doc/man-html/_* \
159
	autom4te.cache
160

    
161
# some helper vars
162
COVERAGE_DIR = doc/coverage
163
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
164
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
165
APIDOC_DIR = doc/api
166
APIDOC_PY_DIR = $(APIDOC_DIR)/py
167
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
168

    
169
MAINTAINERCLEANFILES = \
170
	$(maninput) \
171
	doc/install-quick.rst \
172
	doc/news.rst \
173
	doc/upgrade.rst \
174
	vcs-version
175

    
176
maintainer-clean-local:
177
	rm -rf $(BUILDTIME_DIRS)
178

    
179
CLEANFILES = \
180
	$(addsuffix /*.py[co],$(DIRS)) \
181
	$(addsuffix /*.hi,$(HS_DIRS)) \
182
	$(addsuffix /*.o,$(HS_DIRS)) \
183
	$(PYTHON_BOOTSTRAP) \
184
	epydoc.conf \
185
	$(REPLACE_VARS_SED) \
186
	$(SHELL_ENV_INIT) \
187
	daemons/daemon-util \
188
	daemons/ganeti-cleaner \
189
	devel/squeeze-amd64.tar.gz \
190
	devel/squeeze-amd64.conf \
191
	$(mandocrst) \
192
	doc/manpages-enabled.rst \
193
	$(BUILT_EXAMPLES) \
194
	doc/examples/bash_completion \
195
	doc/examples/bash_completion-debug \
196
	lib/_generated_rpc.py \
197
	$(man_MANS) \
198
	$(manhtml) \
199
	tools/kvm-ifup \
200
	tools/users-setup \
201
	tools/vcluster-setup \
202
	stamp-directories \
203
	stamp-srclinks \
204
	$(nodist_pkgpython_PYTHON) \
205
	$(HS_ALL_PROGS) $(HS_BUILT_SRCS) \
206
	$(HS_BUILT_TEST_HELPERS) \
207
	src/ganeti-confd \
208
	src/ganeti-mond \
209
	.hpc/*.mix src/*.tix test/hs/*.tix \
210
	doc/hs-lint.html
211

    
212
GENERATED_FILES = \
213
	$(built_base_sources) \
214
	$(BUILT_PYTHON_SOURCES) \
215
	$(PYTHON_BOOTSTRAP)
216

    
217
HS_GENERATED_FILES =
218
if WANT_HTOOLS
219
HS_GENERATED_FILES += $(HS_PROGS)
220
if ENABLE_CONFD
221
HS_GENERATED_FILES += src/hconfd src/ganeti-confd
222
endif
223

    
224
if ENABLE_MOND
225
HS_GENERATED_FILES += src/ganeti-mond
226
endif
227
endif
228

    
229
built_base_sources = \
230
	stamp-directories \
231
	stamp-srclinks
232

    
233
built_python_base_sources = \
234
	lib/_autoconf.py \
235
	lib/_vcsversion.py
236

    
237
BUILT_PYTHON_SOURCES = \
238
	$(built_python_base_sources) \
239
	lib/_generated_rpc.py
240

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

    
245
# these are all built from the underlying %.in sources
246
BUILT_EXAMPLES = \
247
	doc/examples/ganeti-kvm-poweroff.initd \
248
	doc/examples/ganeti.cron \
249
	doc/examples/ganeti.initd \
250
	doc/examples/ganeti-master-role.ocf \
251
	doc/examples/ganeti-node-role.ocf \
252
	doc/examples/gnt-config-backup \
253
	doc/examples/hooks/ipsec
254

    
255
nodist_pkgpython_PYTHON = \
256
	$(BUILT_PYTHON_SOURCES)
257

    
258
noinst_PYTHON = \
259
	lib/build/__init__.py \
260
	lib/build/shell_example_lexer.py \
261
	lib/build/sphinx_ext.py
262

    
263
pkgpython_PYTHON = \
264
	lib/__init__.py \
265
	lib/asyncnotifier.py \
266
	lib/backend.py \
267
	lib/bootstrap.py \
268
	lib/cli.py \
269
	lib/compat.py \
270
	lib/config.py \
271
	lib/constants.py \
272
	lib/daemon.py \
273
	lib/errors.py \
274
	lib/hooksmaster.py \
275
	lib/ht.py \
276
	lib/jqueue.py \
277
	lib/jstore.py \
278
	lib/locking.py \
279
	lib/luxi.py \
280
	lib/mcpu.py \
281
	lib/netutils.py \
282
	lib/objects.py \
283
	lib/opcodes.py \
284
	lib/outils.py \
285
	lib/ovf.py \
286
	lib/pathutils.py \
287
	lib/qlang.py \
288
	lib/query.py \
289
	lib/rpc.py \
290
	lib/rpc_defs.py \
291
	lib/runtime.py \
292
	lib/serializer.py \
293
	lib/ssconf.py \
294
	lib/ssh.py \
295
	lib/uidpool.py \
296
	lib/vcluster.py \
297
	lib/network.py \
298
	lib/workerpool.py
299

    
300
client_PYTHON = \
301
	lib/client/__init__.py \
302
	lib/client/gnt_backup.py \
303
	lib/client/gnt_cluster.py \
304
	lib/client/gnt_debug.py \
305
	lib/client/gnt_group.py \
306
	lib/client/gnt_instance.py \
307
	lib/client/gnt_job.py \
308
	lib/client/gnt_node.py \
309
	lib/client/gnt_network.py \
310
	lib/client/gnt_os.py \
311
	lib/client/gnt_storage.py
312

    
313
cmdlib_PYTHON = \
314
	lib/cmdlib/__init__.py \
315
	lib/cmdlib/backup.py \
316
	lib/cmdlib/base.py \
317
	lib/cmdlib/cluster.py \
318
	lib/cmdlib/common.py \
319
	lib/cmdlib/group.py \
320
	lib/cmdlib/instance.py \
321
	lib/cmdlib/instance_migration.py \
322
	lib/cmdlib/instance_operation.py \
323
	lib/cmdlib/instance_query.py \
324
	lib/cmdlib/instance_storage.py \
325
	lib/cmdlib/instance_utils.py \
326
	lib/cmdlib/misc.py \
327
	lib/cmdlib/network.py \
328
	lib/cmdlib/node.py \
329
	lib/cmdlib/operating_system.py \
330
	lib/cmdlib/query.py \
331
	lib/cmdlib/tags.py \
332
	lib/cmdlib/test.py
333

    
334
hypervisor_PYTHON = \
335
	lib/hypervisor/__init__.py \
336
	lib/hypervisor/hv_base.py \
337
	lib/hypervisor/hv_chroot.py \
338
	lib/hypervisor/hv_fake.py \
339
	lib/hypervisor/hv_kvm.py \
340
	lib/hypervisor/hv_lxc.py \
341
	lib/hypervisor/hv_xen.py
342

    
343
storage_PYTHON = \
344
	lib/storage/__init__.py \
345
	lib/storage/bdev.py \
346
	lib/storage/base.py \
347
	lib/storage/container.py \
348
	lib/storage/drbd.py \
349
	lib/storage/drbd_info.py \
350
	lib/storage/drbd_cmdgen.py \
351
	lib/storage/filestorage.py
352

    
353
rapi_PYTHON = \
354
	lib/rapi/__init__.py \
355
	lib/rapi/baserlib.py \
356
	lib/rapi/client.py \
357
	lib/rapi/client_utils.py \
358
	lib/rapi/connector.py \
359
	lib/rapi/rlib2.py \
360
	lib/rapi/testutils.py
361

    
362
http_PYTHON = \
363
	lib/http/__init__.py \
364
	lib/http/auth.py \
365
	lib/http/client.py \
366
	lib/http/server.py
367

    
368
confd_PYTHON = \
369
	lib/confd/__init__.py \
370
	lib/confd/client.py
371

    
372
masterd_PYTHON = \
373
	lib/masterd/__init__.py \
374
	lib/masterd/iallocator.py \
375
	lib/masterd/instance.py
376

    
377
impexpd_PYTHON = \
378
	lib/impexpd/__init__.py
379

    
380
watcher_PYTHON = \
381
	lib/watcher/__init__.py \
382
	lib/watcher/nodemaint.py \
383
	lib/watcher/state.py
384

    
385
server_PYTHON = \
386
	lib/server/__init__.py \
387
	lib/server/masterd.py \
388
	lib/server/noded.py \
389
	lib/server/rapi.py
390

    
391
pytools_PYTHON = \
392
	lib/tools/__init__.py \
393
	lib/tools/burnin.py \
394
	lib/tools/ensure_dirs.py \
395
	lib/tools/node_cleanup.py \
396
	lib/tools/node_daemon_setup.py \
397
	lib/tools/prepare_node_join.py
398

    
399
utils_PYTHON = \
400
	lib/utils/__init__.py \
401
	lib/utils/algo.py \
402
	lib/utils/filelock.py \
403
	lib/utils/hash.py \
404
	lib/utils/io.py \
405
	lib/utils/log.py \
406
	lib/utils/lvm.py \
407
	lib/utils/mlock.py \
408
	lib/utils/nodesetup.py \
409
	lib/utils/process.py \
410
	lib/utils/retry.py \
411
	lib/utils/storage.py \
412
	lib/utils/text.py \
413
	lib/utils/wrapper.py \
414
	lib/utils/x509.py
415

    
416
docinput = \
417
	doc/conf.py \
418
	doc/css/style.css \
419
	doc/admin.rst \
420
	doc/cluster-merge.rst \
421
	doc/design-2.0.rst \
422
	doc/design-2.1.rst \
423
	doc/design-2.2.rst \
424
	doc/design-2.3.rst \
425
	doc/design-2.4.rst \
426
	doc/design-2.5.rst \
427
	doc/design-2.6.rst \
428
	doc/design-2.7.rst \
429
	doc/design-2.8.rst \
430
	doc/design-autorepair.rst \
431
	doc/design-bulk-create.rst \
432
	doc/design-chained-jobs.rst \
433
	doc/design-cpu-pinning.rst \
434
	doc/design-device-uuid-name.rst \
435
	doc/design-draft.rst \
436
	doc/design-htools-2.3.rst \
437
	doc/design-http-server.rst \
438
	doc/design-impexp2.rst \
439
	doc/design-internal-shutdown.rst \
440
	doc/design-lu-generated-jobs.rst \
441
	doc/design-linuxha.rst \
442
	doc/design-multi-reloc.rst \
443
	doc/design-network.rst \
444
	doc/design-node-add.rst \
445
	doc/design-oob.rst \
446
	doc/design-ovf-support.rst \
447
	doc/design-opportunistic-locking.rst \
448
	doc/design-partitioned.rst \
449
	doc/design-query-splitting.rst \
450
	doc/design-query2.rst \
451
	doc/design-reason-trail.rst \
452
	doc/design-resource-model.rst \
453
	doc/design-restricted-commands.rst \
454
	doc/design-shared-storage.rst \
455
	doc/design-monitoring-agent.rst \
456
	doc/design-virtual-clusters.rst \
457
	doc/design-x509-ca.rst \
458
	doc/design-hroller.rst \
459
	doc/design-storagetypes.rst \
460
	doc/devnotes.rst \
461
	doc/glossary.rst \
462
	doc/hooks.rst \
463
	doc/iallocator.rst \
464
	doc/index.rst \
465
	doc/install-quick.rst \
466
	doc/install.rst \
467
	doc/locking.rst \
468
	doc/manpages-disabled.rst \
469
	doc/move-instance.rst \
470
	doc/news.rst \
471
	doc/ovfconverter.rst \
472
	doc/rapi.rst \
473
	doc/security.rst \
474
	doc/upgrade.rst \
475
	doc/virtual-cluster.rst \
476
	doc/walkthrough.rst
477

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

    
481
# Haskell programs to be installed in $PREFIX/bin
482
HS_BIN_PROGS=src/htools
483

    
484
# Haskell programs to be installed in the MYEXECLIB dir
485
if ENABLE_MOND
486
HS_MYEXECLIB_PROGS=src/mon-collector
487
else
488
HS_MYEXECLIB_PROGS=
489
endif
490

    
491
# Haskell programs to be compiled by "make really-all"
492
HS_COMPILE_PROGS= \
493
	src/ganeti-mond \
494
	src/hconfd \
495
	src/rpc-test
496

    
497
# All Haskell non-test programs to be compiled but not automatically installed
498
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
499

    
500
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller
501
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
502

    
503
HS_ALL_PROGS = \
504
	$(HS_PROGS) \
505
	test/hs/hpc-htools \
506
	test/hs/hpc-mon-collector \
507
	test/hs/htest \
508
	$(HS_COMPILE_PROGS)
509

    
510
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
511
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
512

    
513
HFLAGS = \
514
	-O -Wall -Werror -isrc \
515
	-fwarn-monomorphism-restriction \
516
	-fwarn-tabs \
517
	$(GHC_BYVERSION_FLAGS)
518

    
519
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
520
HEXTRA =
521
# internal extra flags (used for test/hs/htest mainly)
522
HEXTRA_INT =
523
# exclude options for coverage reports
524
HPCEXCL = --exclude Main \
525
	--exclude Ganeti.Constants \
526
	--exclude Ganeti.HTools.QC \
527
	--exclude Ganeti.THH \
528
	--exclude Ganeti.Version \
529
	--exclude Test.Ganeti.Attoparsec \
530
	--exclude Test.Ganeti.TestCommon \
531
	--exclude Test.Ganeti.TestHTools \
532
	--exclude Test.Ganeti.TestHelper \
533
	--exclude Test.Ganeti.TestImports \
534
	$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
535

    
536
HS_LIB_SRCS = \
537
	src/Ganeti/BasicTypes.hs \
538
	src/Ganeti/Common.hs \
539
	src/Ganeti/Compat.hs \
540
	src/Ganeti/Confd/Client.hs \
541
	src/Ganeti/Confd/Server.hs \
542
	src/Ganeti/Confd/Types.hs \
543
	src/Ganeti/Confd/Utils.hs \
544
	src/Ganeti/Config.hs \
545
	src/Ganeti/Curl/Multi.hs \
546
	src/Ganeti/Daemon.hs \
547
	src/Ganeti/DataCollectors/CLI.hs \
548
	src/Ganeti/DataCollectors/Diskstats.hs \
549
	src/Ganeti/DataCollectors/Drbd.hs \
550
	src/Ganeti/DataCollectors/InstStatus.hs \
551
	src/Ganeti/DataCollectors/InstStatusTypes.hs \
552
	src/Ganeti/DataCollectors/Program.hs \
553
	src/Ganeti/DataCollectors/Types.hs \
554
	src/Ganeti/Errors.hs \
555
	src/Ganeti/HTools/Backend/IAlloc.hs \
556
	src/Ganeti/HTools/Backend/Luxi.hs \
557
	src/Ganeti/HTools/Backend/Rapi.hs \
558
	src/Ganeti/HTools/Backend/Simu.hs \
559
	src/Ganeti/HTools/Backend/Text.hs \
560
	src/Ganeti/HTools/CLI.hs \
561
	src/Ganeti/HTools/Cluster.hs \
562
	src/Ganeti/HTools/Container.hs \
563
	src/Ganeti/HTools/ExtLoader.hs \
564
	src/Ganeti/HTools/Graph.hs \
565
	src/Ganeti/HTools/Group.hs \
566
	src/Ganeti/HTools/Instance.hs \
567
	src/Ganeti/HTools/Loader.hs \
568
	src/Ganeti/HTools/Nic.hs \
569
	src/Ganeti/HTools/Node.hs \
570
	src/Ganeti/HTools/PeerMap.hs \
571
	src/Ganeti/HTools/Program/Hail.hs \
572
	src/Ganeti/HTools/Program/Harep.hs \
573
	src/Ganeti/HTools/Program/Hbal.hs \
574
	src/Ganeti/HTools/Program/Hcheck.hs \
575
	src/Ganeti/HTools/Program/Hinfo.hs \
576
	src/Ganeti/HTools/Program/Hscan.hs \
577
	src/Ganeti/HTools/Program/Hspace.hs \
578
	src/Ganeti/HTools/Program/Hroller.hs \
579
	src/Ganeti/HTools/Program/Main.hs \
580
	src/Ganeti/HTools/Types.hs \
581
	src/Ganeti/Hypervisor/Xen.hs \
582
	src/Ganeti/Hypervisor/Xen/XmParser.hs \
583
	src/Ganeti/Hypervisor/Xen/Types.hs \
584
	src/Ganeti/Hash.hs \
585
	src/Ganeti/JQueue.hs \
586
	src/Ganeti/JSON.hs \
587
	src/Ganeti/Jobs.hs \
588
	src/Ganeti/Logging.hs \
589
	src/Ganeti/Luxi.hs \
590
	src/Ganeti/Monitoring/Server.hs \
591
	src/Ganeti/Network.hs \
592
	src/Ganeti/Objects.hs \
593
	src/Ganeti/OpCodes.hs \
594
	src/Ganeti/OpParams.hs \
595
	src/Ganeti/Path.hs \
596
	src/Ganeti/Query/Cluster.hs \
597
	src/Ganeti/Query/Common.hs \
598
	src/Ganeti/Query/Export.hs \
599
	src/Ganeti/Query/Filter.hs \
600
	src/Ganeti/Query/Group.hs \
601
	src/Ganeti/Query/Job.hs \
602
	src/Ganeti/Query/Language.hs \
603
	src/Ganeti/Query/Network.hs \
604
	src/Ganeti/Query/Node.hs \
605
	src/Ganeti/Query/Query.hs \
606
	src/Ganeti/Query/Server.hs \
607
	src/Ganeti/Query/Types.hs \
608
	src/Ganeti/Rpc.hs \
609
	src/Ganeti/Runtime.hs \
610
	src/Ganeti/Ssconf.hs \
611
	src/Ganeti/Storage/Diskstats/Parser.hs \
612
	src/Ganeti/Storage/Diskstats/Types.hs \
613
	src/Ganeti/Storage/Drbd/Parser.hs \
614
	src/Ganeti/Storage/Drbd/Types.hs \
615
	src/Ganeti/Storage/Utils.hs \
616
	src/Ganeti/THH.hs \
617
	src/Ganeti/Types.hs \
618
	src/Ganeti/Utils.hs
619

    
620
HS_TEST_SRCS = \
621
	test/hs/Test/Ganeti/Attoparsec.hs \
622
	test/hs/Test/Ganeti/BasicTypes.hs \
623
	test/hs/Test/Ganeti/Common.hs \
624
	test/hs/Test/Ganeti/Confd/Types.hs \
625
	test/hs/Test/Ganeti/Confd/Utils.hs \
626
	test/hs/Test/Ganeti/Daemon.hs \
627
	test/hs/Test/Ganeti/Errors.hs \
628
	test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
629
	test/hs/Test/Ganeti/HTools/Backend/Text.hs \
630
	test/hs/Test/Ganeti/HTools/CLI.hs \
631
	test/hs/Test/Ganeti/HTools/Cluster.hs \
632
	test/hs/Test/Ganeti/HTools/Container.hs \
633
	test/hs/Test/Ganeti/HTools/Graph.hs \
634
	test/hs/Test/Ganeti/HTools/Instance.hs \
635
	test/hs/Test/Ganeti/HTools/Loader.hs \
636
	test/hs/Test/Ganeti/HTools/Node.hs \
637
	test/hs/Test/Ganeti/HTools/PeerMap.hs \
638
	test/hs/Test/Ganeti/HTools/Types.hs \
639
	test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \
640
	test/hs/Test/Ganeti/JSON.hs \
641
	test/hs/Test/Ganeti/Jobs.hs \
642
	test/hs/Test/Ganeti/JQueue.hs \
643
	test/hs/Test/Ganeti/Luxi.hs \
644
	test/hs/Test/Ganeti/Network.hs \
645
	test/hs/Test/Ganeti/Objects.hs \
646
	test/hs/Test/Ganeti/OpCodes.hs \
647
	test/hs/Test/Ganeti/Query/Filter.hs \
648
	test/hs/Test/Ganeti/Query/Language.hs \
649
	test/hs/Test/Ganeti/Query/Network.hs \
650
	test/hs/Test/Ganeti/Query/Query.hs \
651
	test/hs/Test/Ganeti/Rpc.hs \
652
	test/hs/Test/Ganeti/Runtime.hs \
653
	test/hs/Test/Ganeti/Ssconf.hs \
654
	test/hs/Test/Ganeti/Storage/Diskstats/Parser.hs \
655
	test/hs/Test/Ganeti/Storage/Drbd/Parser.hs \
656
	test/hs/Test/Ganeti/Storage/Drbd/Types.hs \
657
	test/hs/Test/Ganeti/THH.hs \
658
	test/hs/Test/Ganeti/TestCommon.hs \
659
	test/hs/Test/Ganeti/TestHTools.hs \
660
	test/hs/Test/Ganeti/TestHelper.hs \
661
	test/hs/Test/Ganeti/Types.hs \
662
	test/hs/Test/Ganeti/Utils.hs
663

    
664
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
665

    
666
HS_BUILT_SRCS = \
667
	test/hs/Test/Ganeti/TestImports.hs \
668
	src/Ganeti/Constants.hs \
669
	src/Ganeti/Curl/Internal.hs \
670
	src/Ganeti/Version.hs
671
HS_BUILT_SRCS_IN = \
672
	$(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \
673
	src/Ganeti/Curl/Internal.hsc
674

    
675
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
676

    
677
$(RUN_IN_TEMPDIR): | stamp-directories
678

    
679
doc/html/index.html: ENABLE_MANPAGES =
680
doc/man-html/index.html: ENABLE_MANPAGES = 1
681
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
682

    
683
# Note: we use here an order-only prerequisite, as the contents of
684
# _autoconf.py are not actually influencing the html build output: it
685
# has to exist in order for the sphinx module to be loaded
686
# successfully, but we certainly don't want the docs to be rebuilt if
687
# it changes
688
doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \
689
	configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
690
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
691
	doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \
692
	| $(BUILT_PYTHON_SOURCES)
693
	@test -n "$(SPHINX)" || \
694
	    { echo 'sphinx-build' not found during configure; exit 1; }
695
if !MANPAGES_IN_DOC
696
	if test -n '$(ENABLE_MANPAGES)'; then \
697
	  echo 'Man pages in documentation were disabled at configure time' >&2; \
698
	  exit 1; \
699
	fi
700
endif
701
## Sphinx provides little control over what content should be included. Some
702
## mechanisms exist, but they all have drawbacks or actual issues. Since we
703
## build two different versions of the documentation--once without man pages and
704
## once, if enabled, with them--some control is necessary. xmpp-wrapper provides
705
## us with this, but requires running in a temporary directory. It moves the
706
## correct files into place depending on environment variables.
707
	dir=$(dir $@) && \
708
	@mkdir_p@ $$dir && \
709
	PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \
710
	$(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \
711
	    -d . \
712
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
713
	    -D release="$(PACKAGE_VERSION)" \
714
	    -D graphviz_dot="$(DOT)" \
715
	    -D enable_manpages="$(ENABLE_MANPAGES)" \
716
	    doc $(CURDIR)/$$dir && \
717
	rm -f $$dir/.buildinfo $$dir/objects.inv
718
	touch $@
719

    
720
doc/html: doc/html/index.html
721

    
722
doc/man-html: doc/man-html/index.html
723

    
724
doc/install-quick.rst: INSTALL
725
doc/news.rst: NEWS
726
doc/upgrade.rst: UPGRADE
727

    
728
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
729
	set -e; \
730
	{ echo '.. This file is automatically updated at build time from $<.'; \
731
	  echo '.. Do not edit.'; \
732
	  echo; \
733
	  cat $<; \
734
	} > $@
735

    
736
doc/manpages-enabled.rst: Makefile | $(built_base_sources)
737
	{ echo '.. This file is automatically generated, do not edit!'; \
738
	  echo ''; \
739
	  echo 'Man pages'; \
740
	  echo '========='; \
741
	  echo; \
742
	  echo '.. toctree::'; \
743
	  echo '   :maxdepth: 1'; \
744
	  echo; \
745
	  for i in $(notdir $(mandocrst)); do \
746
	    echo "   $$i"; \
747
	  done | LC_ALL=C sort; \
748
	} > $@
749

    
750
doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources)
751
if MANPAGES_IN_DOC
752
	{ echo '.. This file is automatically updated at build time from $<.'; \
753
	  echo '.. Do not edit.'; \
754
	  echo; \
755
	  echo "$*"; \
756
	  echo '=========================================='; \
757
	  tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \
758
	} > $@
759
else
760
	echo 'Man pages in documentation were disabled at configure time' >&2; \
761
	exit 1;
762
endif
763

    
764
# Things to build but not to install (add it to EXTRA_DIST if it should be
765
# distributed)
766
noinst_DATA = \
767
	doc/html \
768
	$(BUILT_EXAMPLES) \
769
	doc/examples/bash_completion \
770
	doc/examples/bash_completion-debug \
771
	$(manhtml)
772

    
773
if MANPAGES_IN_DOC
774
noinst_DATA += doc/man-html
775
endif
776

    
777
gnt_scripts = \
778
	scripts/gnt-backup \
779
	scripts/gnt-cluster \
780
	scripts/gnt-debug \
781
	scripts/gnt-group \
782
	scripts/gnt-instance \
783
	scripts/gnt-job \
784
	scripts/gnt-network \
785
	scripts/gnt-node \
786
	scripts/gnt-os \
787
	scripts/gnt-storage
788

    
789
PYTHON_BOOTSTRAP_SBIN = \
790
	daemons/ganeti-masterd \
791
	daemons/ganeti-noded \
792
	daemons/ganeti-rapi \
793
	daemons/ganeti-watcher \
794
	$(gnt_scripts)
795

    
796
PYTHON_BOOTSTRAP = \
797
	$(PYTHON_BOOTSTRAP_SBIN) \
798
	tools/burnin \
799
	tools/ensure-dirs \
800
	tools/node-cleanup \
801
	tools/node-daemon-setup \
802
	tools/prepare-node-join
803

    
804
qa_scripts = \
805
	qa/__init__.py \
806
	qa/ganeti-qa.py \
807
	qa/qa_cluster.py \
808
	qa/qa_config.py \
809
	qa/qa_daemon.py \
810
	qa/qa_env.py \
811
	qa/qa_error.py \
812
	qa/qa_group.py \
813
	qa/qa_instance.py \
814
	qa/qa_instance_utils.py \
815
	qa/qa_job.py \
816
	qa/qa_monitoring.py \
817
	qa/qa_node.py \
818
	qa/qa_os.py \
819
	qa/qa_rapi.py \
820
	qa/qa_tags.py \
821
	qa/qa_utils.py
822

    
823
bin_SCRIPTS =
824
if WANT_HTOOLS
825
bin_SCRIPTS += $(HS_BIN_PROGS)
826
install-exec-hook:
827
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
828
# FIXME: this is a hardcoded logic, instead of auto-resolving
829
	$(LN_S) -f ../../../bin/htools \
830
	  $(DESTDIR)$(iallocatorsdir)/hail
831
	for role in $(HS_BIN_ROLES); do \
832
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
833
	done
834
endif
835

    
836
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTESTBUILT_SRCS) Makefile
837
	@if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \
838
	  echo "Error: cannot run unittests without the development" \
839
	       " libraries (see devnotes.rst)" 1>&2; \
840
	  exit 1; \
841
	fi
842
	@rm -f $(notdir $@).tix
843
	$(GHC) --make \
844
	  $(HFLAGS) \
845
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
846
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
847
	  $(HEXTRA) $(HEXTRA_INT) $@
848
	@touch "$@"
849

    
850
# for the test/hs/htest binary, we need to enable profiling/coverage
851
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
852

    
853
# we compile the hpc-htools binary with the program coverage
854
test/hs/hpc-htools: HEXTRA_INT=-fhpc
855

    
856
# we compile the hpc-mon-collector binary with the program coverage
857
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
858

    
859
# test dependency
860
test/hs/offline-test.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
861

    
862
# rules for building profiling-enabled versions of the haskell
863
# programs: hs-prof does the full two-step build, whereas
864
# hs-prof-quick does only the final rebuild (hs-prof must have been
865
# run before)
866
.PHONY: hs-prof hs-prof-quick
867
hs-prof:
868
	@if [ -z "$(TARGET)" ]; then \
869
	  echo "You need to define TARGET when running this rule" 1>&2; \
870
	  exit 1; \
871
	fi
872
	$(MAKE) $(AM_MAKEFLAGS) clean
873
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o"
874
	rm -f $(HS_ALL_PROGS)
875
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
876

    
877
hs-prof-quick:
878
	@if [ -z "$(TARGET)" ]; then \
879
	  echo "You need to define TARGET when running this rule" 1>&2; \
880
	  exit 1; \
881
	fi
882
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
883

    
884
dist_sbin_SCRIPTS = \
885
	tools/ganeti-listrunner
886

    
887
nodist_sbin_SCRIPTS = \
888
	$(PYTHON_BOOTSTRAP_SBIN) \
889
	daemons/ganeti-cleaner
890

    
891
if ENABLE_CONFD
892
src/ganeti-confd: src/hconfd
893
	cp -f $< $@
894

    
895
nodist_sbin_SCRIPTS += src/ganeti-confd
896
endif
897

    
898
if ENABLE_MOND
899
nodist_sbin_SCRIPTS += src/ganeti-mond
900
endif
901

    
902
python_scripts = \
903
	tools/cfgshell \
904
	tools/cfgupgrade \
905
	tools/cfgupgrade12 \
906
	tools/cluster-merge \
907
	tools/confd-client \
908
	tools/fmtjson \
909
	tools/lvmstrap \
910
	tools/move-instance \
911
	tools/ovfconverter \
912
	tools/sanitize-config
913

    
914
dist_tools_SCRIPTS = \
915
	$(python_scripts) \
916
	tools/burnin \
917
	tools/kvm-console-wrapper \
918
	tools/master-ip-setup \
919
	tools/xen-console-wrapper
920

    
921
nodist_tools_python_scripts = \
922
	tools/node-cleanup
923

    
924
nodist_tools_SCRIPTS = \
925
	$(nodist_tools_python_scripts) \
926
	tools/users-setup \
927
	tools/vcluster-setup
928

    
929
pkglib_python_scripts = \
930
	daemons/import-export \
931
	tools/check-cert-expired
932

    
933
nodist_pkglib_python_scripts = \
934
	tools/ensure-dirs \
935
	tools/node-daemon-setup \
936
	tools/prepare-node-join
937

    
938
myexeclib_SCRIPTS = \
939
	daemons/daemon-util \
940
	tools/kvm-ifup \
941
	$(pkglib_python_scripts) \
942
	$(HS_MYEXECLIB_PROGS)
943

    
944
nodist_myexeclib_SCRIPTS = \
945
	$(nodist_pkglib_python_scripts)
946

    
947
EXTRA_DIST = \
948
	NEWS \
949
	UPGRADE \
950
	epydoc.conf.in \
951
	pylintrc \
952
	autotools/build-bash-completion \
953
	autotools/build-rpc \
954
	autotools/check-header \
955
	autotools/check-imports \
956
	autotools/check-man-dashes \
957
	autotools/check-man-references \
958
	autotools/check-man-warnings \
959
	autotools/check-news \
960
	autotools/check-python-code \
961
	autotools/check-tar \
962
	autotools/check-version \
963
	autotools/convert-constants \
964
	autotools/docpp \
965
	autotools/gen-py-coverage \
966
	autotools/sphinx-wrapper \
967
	autotools/testrunner \
968
	autotools/wrong-hardcoded-paths \
969
	$(RUN_IN_TEMPDIR) \
970
	daemons/daemon-util.in \
971
	daemons/ganeti-cleaner.in \
972
	$(pkglib_python_scripts) \
973
	devel/upload \
974
	devel/webserver \
975
	tools/kvm-ifup.in \
976
	tools/users-setup.in \
977
	tools/vcluster-setup.in \
978
	$(docinput) \
979
	doc/html \
980
	$(BUILT_EXAMPLES:%=%.in) \
981
	doc/examples/ganeti.default \
982
	doc/examples/ganeti.default-debug \
983
	doc/examples/hooks/ethers \
984
	doc/examples/gnt-debug/README \
985
	doc/examples/gnt-debug/delay0.json \
986
	doc/examples/gnt-debug/delay50.json \
987
	test/py/lockperf.py \
988
	test/py/testutils.py \
989
	test/py/mocks.py \
990
	$(dist_TESTS) \
991
	$(TEST_FILES) \
992
	man/footer.rst \
993
	$(manrst) \
994
	$(maninput) \
995
	qa/qa-sample.json \
996
	$(qa_scripts) \
997
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
998
	$(HS_PROG_SRCS) \
999
	src/lint-hints.hs \
1000
	test/hs/cli-tests-defs.sh \
1001
	test/hs/offline-test.sh \
1002
	.ghci
1003

    
1004
man_MANS = \
1005
	man/ganeti-cleaner.8 \
1006
	man/ganeti-confd.8 \
1007
	man/ganeti-listrunner.8 \
1008
	man/ganeti-masterd.8 \
1009
	man/ganeti-mond.8 \
1010
	man/ganeti-noded.8 \
1011
	man/ganeti-os-interface.7 \
1012
	man/ganeti-extstorage-interface.7 \
1013
	man/ganeti-rapi.8 \
1014
	man/ganeti-watcher.8 \
1015
	man/ganeti.7 \
1016
	man/gnt-backup.8 \
1017
	man/gnt-cluster.8 \
1018
	man/gnt-debug.8 \
1019
	man/gnt-group.8 \
1020
	man/gnt-network.8 \
1021
	man/gnt-instance.8 \
1022
	man/gnt-job.8 \
1023
	man/gnt-node.8 \
1024
	man/gnt-os.8 \
1025
	man/gnt-storage.8 \
1026
	man/hail.1 \
1027
	man/harep.1 \
1028
	man/hbal.1 \
1029
	man/hcheck.1 \
1030
	man/hinfo.1 \
1031
	man/hscan.1 \
1032
	man/hspace.1 \
1033
	man/hroller.1 \
1034
	man/htools.1 \
1035
	man/mon-collector.7
1036

    
1037
# Remove extensions from all filenames in man_MANS
1038
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
1039

    
1040
manrst = $(patsubst %,%.rst,$(mannoext))
1041
manhtml = $(patsubst %.rst,%.html,$(manrst))
1042
mangen = $(patsubst %.rst,%.gen,$(manrst))
1043
maninput = \
1044
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
1045
	$(patsubst %.html,%.html.in,$(manhtml)) \
1046
	$(mangen)
1047

    
1048
TEST_FILES = \
1049
	test/autotools/autotools-check-news.test \
1050
	test/data/htools/clean-nonzero-score.data \
1051
	test/data/htools/common-suffix.data \
1052
	test/data/htools/empty-cluster.data \
1053
	test/data/htools/hail-alloc-drbd.json \
1054
	test/data/htools/hail-alloc-invalid-network.json \
1055
	test/data/htools/hail-alloc-invalid-twodisks.json \
1056
	test/data/htools/hail-alloc-restricted-network.json \
1057
	test/data/htools/hail-alloc-spindles.json \
1058
	test/data/htools/hail-alloc-twodisks.json \
1059
	test/data/htools/hail-change-group.json \
1060
	test/data/htools/hail-invalid-reloc.json \
1061
	test/data/htools/hail-node-evac.json \
1062
	test/data/htools/hail-reloc-drbd.json \
1063
	test/data/htools/hbal-excl-tags.data \
1064
	test/data/htools/hbal-split-insts.data \
1065
	test/data/htools/hspace-tiered-dualspec-exclusive.data \
1066
	test/data/htools/hspace-tiered-dualspec.data \
1067
	test/data/htools/hspace-tiered-exclusive.data \
1068
	test/data/htools/hspace-tiered-ipolicy.data \
1069
	test/data/htools/hspace-tiered-mixed.data \
1070
	test/data/htools/hspace-tiered-resourcetypes.data \
1071
	test/data/htools/hspace-tiered.data \
1072
	test/data/htools/invalid-node.data \
1073
	test/data/htools/missing-resources.data \
1074
	test/data/htools/multiple-master.data \
1075
	test/data/htools/multiple-tags.data \
1076
	test/data/htools/n1-failure.data \
1077
	test/data/htools/rapi/groups.json \
1078
	test/data/htools/rapi/info.json \
1079
	test/data/htools/rapi/instances.json \
1080
	test/data/htools/rapi/nodes.json \
1081
	test/data/htools/hroller-nodegroups.data \
1082
	test/data/htools/hroller-nonredundant.data \
1083
	test/data/htools/hroller-online.data \
1084
	test/data/htools/unique-reboot-order.data \
1085
	test/hs/shelltests/htools-balancing.test \
1086
	test/hs/shelltests/htools-basic.test \
1087
	test/hs/shelltests/htools-dynutil.test \
1088
	test/hs/shelltests/htools-excl.test \
1089
	test/hs/shelltests/htools-hail.test \
1090
	test/hs/shelltests/htools-hroller.test \
1091
	test/hs/shelltests/htools-hspace.test \
1092
	test/hs/shelltests/htools-invalid.test \
1093
	test/hs/shelltests/htools-multi-group.test \
1094
	test/hs/shelltests/htools-no-backend.test \
1095
	test/hs/shelltests/htools-rapi.test \
1096
	test/hs/shelltests/htools-single-group.test \
1097
	test/hs/shelltests/htools-text-backend.test \
1098
	test/hs/shelltests/htools-mon-collector.test \
1099
	test/data/bdev-drbd-8.0.txt \
1100
	test/data/bdev-drbd-8.3.txt \
1101
	test/data/bdev-drbd-8.4.txt \
1102
	test/data/bdev-drbd-disk.txt \
1103
	test/data/bdev-drbd-net-ip4.txt \
1104
	test/data/bdev-drbd-net-ip6.txt \
1105
	test/data/bdev-rbd/json_output_empty.txt \
1106
	test/data/bdev-rbd/json_output_extra_matches.txt \
1107
	test/data/bdev-rbd/json_output_no_matches.txt \
1108
	test/data/bdev-rbd/json_output_ok.txt \
1109
	test/data/bdev-rbd/plain_output_new_extra_matches.txt \
1110
	test/data/bdev-rbd/plain_output_new_no_matches.txt \
1111
	test/data/bdev-rbd/plain_output_new_ok.txt \
1112
	test/data/bdev-rbd/plain_output_old_empty.txt \
1113
	test/data/bdev-rbd/plain_output_old_extra_matches.txt \
1114
	test/data/bdev-rbd/plain_output_old_no_matches.txt \
1115
	test/data/bdev-rbd/plain_output_old_ok.txt \
1116
	test/data/bdev-rbd/output_invalid.txt \
1117
	test/data/cert1.pem \
1118
	test/data/cert2.pem \
1119
	test/data/cluster_config_2.7.json \
1120
	test/data/cluster_config_2.8.json \
1121
	test/data/instance-minor-pairing.txt \
1122
	test/data/ip-addr-show-dummy0.txt \
1123
	test/data/ip-addr-show-lo-ipv4.txt \
1124
	test/data/ip-addr-show-lo-ipv6.txt \
1125
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
1126
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
1127
	test/data/ip-addr-show-lo-oneline.txt \
1128
	test/data/ip-addr-show-lo.txt \
1129
	test/data/kvm_0.12.5_help.txt \
1130
	test/data/kvm_0.15.90_help.txt \
1131
	test/data/kvm_0.9.1_help.txt \
1132
	test/data/kvm_0.9.1_help_boot_test.txt \
1133
	test/data/kvm_1.0_help.txt \
1134
	test/data/kvm_1.1.2_help.txt \
1135
	test/data/NEWS_OK.txt \
1136
	test/data/NEWS_previous_unreleased.txt \
1137
	test/data/ovfdata/compr_disk.vmdk.gz \
1138
	test/data/ovfdata/config.ini \
1139
	test/data/ovfdata/corrupted_resources.ovf \
1140
	test/data/ovfdata/empty.ini \
1141
	test/data/ovfdata/empty.ovf \
1142
	test/data/ovfdata/ganeti.mf \
1143
	test/data/ovfdata/ganeti.ovf \
1144
	test/data/ovfdata/gzip_disk.ovf \
1145
	test/data/ovfdata/new_disk.vmdk \
1146
	test/data/ovfdata/no_disk.ini \
1147
	test/data/ovfdata/no_disk_in_ref.ovf \
1148
	test/data/ovfdata/no_os.ini \
1149
	test/data/ovfdata/no_ovf.ova \
1150
	test/data/ovfdata/other/rawdisk.raw \
1151
	test/data/ovfdata/ova.ova \
1152
	test/data/ovfdata/rawdisk.raw \
1153
	test/data/ovfdata/second_disk.vmdk \
1154
	test/data/ovfdata/unsafe_path.ini \
1155
	test/data/ovfdata/virtualbox.ovf \
1156
	test/data/ovfdata/wrong_config.ini \
1157
	test/data/ovfdata/wrong_extension.ovd \
1158
	test/data/ovfdata/wrong_manifest.mf \
1159
	test/data/ovfdata/wrong_manifest.ovf \
1160
	test/data/ovfdata/wrong_ova.ova \
1161
	test/data/ovfdata/wrong_xml.ovf \
1162
	test/data/proc_diskstats.txt \
1163
	test/data/proc_drbd8.txt \
1164
	test/data/proc_drbd80-emptyline.txt \
1165
	test/data/proc_drbd80-emptyversion.txt \
1166
	test/data/proc_drbd83.txt \
1167
	test/data/proc_drbd83_sync.txt \
1168
	test/data/proc_drbd83_sync_want.txt \
1169
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
1170
	test/data/proc_drbd84.txt \
1171
	test/data/proc_drbd84_sync.txt \
1172
	test/data/qa-minimal-nodes-instances-only.json \
1173
	test/data/sys_drbd_usermode_helper.txt \
1174
	test/data/vgreduce-removemissing-2.02.02.txt \
1175
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
1176
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
1177
	test/data/vgs-missing-pvs-2.02.02.txt \
1178
	test/data/vgs-missing-pvs-2.02.66.txt \
1179
	test/data/xen-xm-info-4.0.1.txt \
1180
	test/data/xen-xm-list-4.0.1-dom0-only.txt \
1181
	test/data/xen-xm-list-4.0.1-four-instances.txt \
1182
	test/data/xen-xm-list-long-4.0.1.txt \
1183
	test/data/xen-xm-uptime-4.0.1.txt \
1184
	test/py/ganeti-cli.test \
1185
	test/py/gnt-cli.test \
1186
	test/py/import-export_unittest-helper
1187

    
1188

    
1189
python_tests = \
1190
	doc/examples/rapi_testutils.py \
1191
	test/py/cfgupgrade_unittest.py \
1192
	test/py/docs_unittest.py \
1193
	test/py/ganeti.asyncnotifier_unittest.py \
1194
	test/py/ganeti.backend_unittest-runasroot.py \
1195
	test/py/ganeti.backend_unittest.py \
1196
	test/py/ganeti.cli_unittest.py \
1197
	test/py/ganeti.client.gnt_cluster_unittest.py \
1198
	test/py/ganeti.client.gnt_instance_unittest.py \
1199
	test/py/ganeti.client.gnt_job_unittest.py \
1200
	test/py/ganeti.cmdlib_unittest.py \
1201
	test/py/ganeti.compat_unittest.py \
1202
	test/py/ganeti.confd.client_unittest.py \
1203
	test/py/ganeti.config_unittest.py \
1204
	test/py/ganeti.constants_unittest.py \
1205
	test/py/ganeti.daemon_unittest.py \
1206
	test/py/ganeti.errors_unittest.py \
1207
	test/py/ganeti.hooks_unittest.py \
1208
	test/py/ganeti.ht_unittest.py \
1209
	test/py/ganeti.http_unittest.py \
1210
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
1211
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
1212
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1213
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1214
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
1215
	test/py/ganeti.hypervisor_unittest.py \
1216
	test/py/ganeti.impexpd_unittest.py \
1217
	test/py/ganeti.jqueue_unittest.py \
1218
	test/py/ganeti.jstore_unittest.py \
1219
	test/py/ganeti.locking_unittest.py \
1220
	test/py/ganeti.luxi_unittest.py \
1221
	test/py/ganeti.masterd.iallocator_unittest.py \
1222
	test/py/ganeti.masterd.instance_unittest.py \
1223
	test/py/ganeti.mcpu_unittest.py \
1224
	test/py/ganeti.netutils_unittest.py \
1225
	test/py/ganeti.objects_unittest.py \
1226
	test/py/ganeti.opcodes_unittest.py \
1227
	test/py/ganeti.outils_unittest.py \
1228
	test/py/ganeti.ovf_unittest.py \
1229
	test/py/ganeti.qlang_unittest.py \
1230
	test/py/ganeti.query_unittest.py \
1231
	test/py/ganeti.rapi.baserlib_unittest.py \
1232
	test/py/ganeti.rapi.client_unittest.py \
1233
	test/py/ganeti.rapi.resources_unittest.py \
1234
	test/py/ganeti.rapi.rlib2_unittest.py \
1235
	test/py/ganeti.rapi.testutils_unittest.py \
1236
	test/py/ganeti.rpc_unittest.py \
1237
	test/py/ganeti.runtime_unittest.py \
1238
	test/py/ganeti.serializer_unittest.py \
1239
	test/py/ganeti.server.rapi_unittest.py \
1240
	test/py/ganeti.ssconf_unittest.py \
1241
	test/py/ganeti.ssh_unittest.py \
1242
	test/py/ganeti.storage.bdev_unittest.py \
1243
	test/py/ganeti.storage.container_unittest.py \
1244
	test/py/ganeti.storage.drbd_unittest.py \
1245
	test/py/ganeti.storage.filestorage_unittest.py \
1246
	test/py/ganeti.tools.burnin_unittest.py \
1247
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1248
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1249
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1250
	test/py/ganeti.uidpool_unittest.py \
1251
	test/py/ganeti.utils.algo_unittest.py \
1252
	test/py/ganeti.utils.filelock_unittest.py \
1253
	test/py/ganeti.utils.hash_unittest.py \
1254
	test/py/ganeti.utils.io_unittest-runasroot.py \
1255
	test/py/ganeti.utils.io_unittest.py \
1256
	test/py/ganeti.utils.log_unittest.py \
1257
	test/py/ganeti.utils.lvm_unittest.py \
1258
	test/py/ganeti.utils.mlock_unittest.py \
1259
	test/py/ganeti.utils.nodesetup_unittest.py \
1260
	test/py/ganeti.utils.process_unittest.py \
1261
	test/py/ganeti.utils.retry_unittest.py \
1262
	test/py/ganeti.utils.storage_unittest.py \
1263
	test/py/ganeti.utils.text_unittest.py \
1264
	test/py/ganeti.utils.wrapper_unittest.py \
1265
	test/py/ganeti.utils.x509_unittest.py \
1266
	test/py/ganeti.utils_unittest.py \
1267
	test/py/ganeti.vcluster_unittest.py \
1268
	test/py/ganeti.workerpool_unittest.py \
1269
	test/py/pycurl_reset_unittest.py \
1270
	test/py/qa.qa_config_unittest.py \
1271
	test/py/tempfile_fork_unittest.py
1272

    
1273
haskell_tests = test/hs/htest
1274

    
1275
dist_TESTS = \
1276
	test/py/check-cert-expired_unittest.bash \
1277
	test/py/daemon-util_unittest.bash \
1278
	test/py/ganeti-cleaner_unittest.bash \
1279
	test/py/import-export_unittest.bash \
1280
	test/py/cli-test.bash \
1281
	test/py/bash_completion.bash
1282

    
1283
if !PY_NODEV
1284
	dist_TESTS += $(python_tests)
1285
endif
1286

    
1287
nodist_TESTS =
1288
check_SCRIPTS =
1289

    
1290
if WANT_HSTESTS
1291
nodist_TESTS += $(haskell_tests)
1292
dist_TESTS += test/hs/offline-test.sh
1293
check_SCRIPTS += \
1294
	test/hs/hpc-htools \
1295
	test/hs/hpc-mon-collector \
1296
	$(HS_BUILT_TEST_HELPERS)
1297
endif
1298

    
1299
TESTS = $(dist_TESTS) $(nodist_TESTS)
1300

    
1301
# Environment for all tests
1302
PLAIN_TESTS_ENVIRONMENT = \
1303
	PYTHONPATH=. \
1304
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1305
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1306
	$(RUN_IN_TEMPDIR)
1307

    
1308
# Environment for tests run by automake
1309
TESTS_ENVIRONMENT = \
1310
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1311

    
1312
all_python_code = \
1313
	$(dist_sbin_SCRIPTS) \
1314
	$(python_scripts) \
1315
	$(pkglib_python_scripts) \
1316
	$(nodist_pkglib_python_scripts) \
1317
	$(nodist_tools_python_scripts) \
1318
	$(pkgpython_PYTHON) \
1319
	$(client_PYTHON) \
1320
	$(cmdlib_PYTHON) \
1321
	$(hypervisor_PYTHON) \
1322
	$(storage_PYTHON) \
1323
	$(rapi_PYTHON) \
1324
	$(server_PYTHON) \
1325
	$(pytools_PYTHON) \
1326
	$(http_PYTHON) \
1327
	$(confd_PYTHON) \
1328
	$(masterd_PYTHON) \
1329
	$(impexpd_PYTHON) \
1330
	$(utils_PYTHON) \
1331
	$(watcher_PYTHON) \
1332
	$(noinst_PYTHON) \
1333
	$(qa_scripts)
1334

    
1335
if !PY_NODEV
1336
	all_python_code += $(python_tests)
1337
endif
1338

    
1339
srclink_files = \
1340
	man/footer.rst \
1341
	test/py/check-cert-expired_unittest.bash \
1342
	test/py/daemon-util_unittest.bash \
1343
	test/py/ganeti-cleaner_unittest.bash \
1344
	test/py/import-export_unittest.bash \
1345
	test/py/cli-test.bash \
1346
	test/py/bash_completion.bash \
1347
	test/hs/offline-test.sh \
1348
	test/hs/cli-tests-defs.sh \
1349
	$(all_python_code) \
1350
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1351
	$(docinput)
1352

    
1353
check_python_code = \
1354
	$(BUILD_BASH_COMPLETION) \
1355
	$(CHECK_IMPORTS) \
1356
	$(CHECK_HEADER) \
1357
	$(DOCPP) \
1358
	$(all_python_code)
1359

    
1360
lint_python_code = \
1361
	ganeti \
1362
	ganeti/http/server.py \
1363
	$(dist_sbin_SCRIPTS) \
1364
	$(python_scripts) \
1365
	$(pkglib_python_scripts) \
1366
	$(BUILD_BASH_COMPLETION) \
1367
	$(CHECK_IMPORTS) \
1368
	$(CHECK_HEADER) \
1369
	$(DOCPP) \
1370
	$(PYTHON_BOOTSTRAP)
1371

    
1372
standalone_python_modules = \
1373
	lib/rapi/client.py \
1374
	tools/ganeti-listrunner
1375

    
1376
pep8_python_code = \
1377
	ganeti \
1378
	ganeti/http/server.py \
1379
	$(dist_sbin_SCRIPTS) \
1380
	$(python_scripts) \
1381
	$(pkglib_python_scripts) \
1382
	$(BUILD_BASH_COMPLETION) \
1383
	$(CHECK_HEADER) \
1384
	$(DOCPP) \
1385
	$(PYTHON_BOOTSTRAP) \
1386
	qa
1387

    
1388
test/py/daemon-util_unittest.bash: daemons/daemon-util
1389

    
1390
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1391

    
1392
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1393

    
1394
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1395
	sed -f $(REPLACE_VARS_SED) < $< > $@
1396
	chmod +x $@
1397

    
1398
tools/users-setup: tools/users-setup.in $(REPLACE_VARS_SED)
1399
	sed -f $(REPLACE_VARS_SED) < $< > $@
1400
	chmod +x $@
1401

    
1402
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1403
	sed -f $(REPLACE_VARS_SED) < $< > $@
1404
	chmod +x $@
1405

    
1406
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1407
	sed -f $(REPLACE_VARS_SED) < $< > $@
1408
	chmod +x $@
1409

    
1410
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1411
	sed -f $(REPLACE_VARS_SED) < $< > $@
1412

    
1413
doc/examples/bash_completion: BC_ARGS = --compact
1414
doc/examples/bash_completion-debug: BC_ARGS =
1415

    
1416
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1417
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1418
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1419
	daemons/ganeti-cleaner \
1420
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1421
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1422
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1423

    
1424
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1425
	lib/build/shell_example_lexer.py \
1426
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1427
	@echo "Checking $< for hardcoded paths..."
1428
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1429
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1430
	  exit 1; \
1431
	fi
1432
	set -e ; \
1433
	trap 'echo auto-removing $@; rm $@' EXIT; \
1434
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1435
	$(CHECK_MAN_REFERENCES) $@; \
1436
	trap - EXIT
1437

    
1438
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1439
	@test -n "$(PANDOC)" || \
1440
	  { echo 'pandoc' not found during configure; exit 1; }
1441
	set -o pipefail -e; \
1442
	trap 'echo auto-removing $@; rm $@' EXIT; \
1443
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1444
	  sed -e 's/\\@/@/g' > $@; \
1445
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1446
	$(CHECK_MAN_DASHES) $@; \
1447
	trap - EXIT
1448

    
1449
man/%.html.in: man/%.gen man/footer.rst
1450
	@test -n "$(PANDOC)" || \
1451
	  { echo 'pandoc' not found during configure; exit 1; }
1452
	set -o pipefail ; \
1453
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1454
	  sed -e 's/\\@/@/g' > $@
1455

    
1456
man/%: man/%.in  $(REPLACE_VARS_SED)
1457
	sed -f $(REPLACE_VARS_SED) < $< > $@
1458

    
1459
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1460
	sed -f $(REPLACE_VARS_SED) < $< > $@
1461

    
1462
vcs-version:
1463
	if test -d .git; then \
1464
	  git describe > $@; \
1465
	elif test ! -f $@ ; then \
1466
	  echo "Cannot auto-generate $@ file"; exit 1; \
1467
	fi
1468

    
1469
.PHONY: clean-vcs-version
1470
clean-vcs-version:
1471
	rm -f vcs-version
1472

    
1473
.PHONY: regen-vcs-version
1474
regen-vcs-version:
1475
	@set -e; \
1476
	cd $(srcdir); \
1477
	if test -d .git; then \
1478
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1479
	  git describe > $$T; \
1480
	  if ! cmp --quiet $$T vcs-version; then \
1481
	    mv $$T vcs-version; \
1482
	  fi; \
1483
	fi
1484

    
1485
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1486
	vcs-version $(built_base_sources)
1487
	set -e; \
1488
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1489
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1490

    
1491
src/Ganeti/Constants.hs: src/Ganeti/Constants.hs.in \
1492
	lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1493
	lib/jstore.py $(RUN_IN_TEMPDIR) \
1494
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1495
	| lib/_vcsversion.py
1496
	set -e; \
1497
	{ cat $< ; \
1498
	  PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
1499
	} > $@
1500

    
1501
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1502
	hsc2hs -o $@ $<
1503

    
1504
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1505
	$(built_base_sources)
1506
	set -e; \
1507
	{ cat $< ; \
1508
	  echo ; \
1509
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1510
	    echo "import $$name ()" ; \
1511
	  done ; \
1512
	} > $@
1513

    
1514
lib/_autoconf.py: Makefile | stamp-directories
1515
	set -e; \
1516
	{ echo '# This file is automatically generated, do not edit!'; \
1517
	  echo '#'; \
1518
	  echo ''; \
1519
	  echo '"""Build-time configuration for Ganeti.'; \
1520
	  echo '';\
1521
	  echo 'This file is autogenerated by the build process.'; \
1522
	  echo 'For any changes you need to re-run ./configure (and'; \
1523
	  echo 'not edit by hand).'; \
1524
	  echo ''; \
1525
	  echo '"""'; \
1526
	  echo ''; \
1527
	  echo '# pylint: disable=C0301,C0324'; \
1528
	  echo '# because this is autogenerated, we do not want'; \
1529
	  echo '# style warnings' ; \
1530
	  echo ''; \
1531
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1532
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1533
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1534
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1535
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1536
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1537
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1538
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1539
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1540
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1541
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1542
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1543
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1544
	  echo "ES_SEARCH_PATH = [$(ES_SEARCH_PATH)]"; \
1545
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1546
	  echo "XEN_CONFIG_DIR = '$(XEN_CONFIG_DIR)'"; \
1547
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1548
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1549
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1550
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1551
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1552
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1553
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1554
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1555
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1556
	  echo "IP_PATH = '$(IP_PATH)'"; \
1557
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1558
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1559
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1560
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1561
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1562
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1563
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1564
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1565
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1566
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1567
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1568
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1569
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1570
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1571
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1572
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1573
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1574
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1575
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1576
	  echo "NODED_USER = '$(NODED_USER)'"; \
1577
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1578
	  echo "MOND_USER = '$(MOND_USER)'"; \
1579
	  echo "MOND_GROUP = '$(MOND_GROUP)'"; \
1580
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1581
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1582
	  echo "HTOOLS = True"; \
1583
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1584
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1585
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1586
	  echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1587
	  echo "ENABLE_MOND = $(ENABLE_MOND)"; \
1588
## Write dictionary with man page name as the key and the section number as the
1589
## value
1590
	  echo "MAN_PAGES = {"; \
1591
	  for i in $(notdir $(man_MANS)); do \
1592
	    echo "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/  "\1": \2,/g'; \
1593
	  done; \
1594
	  echo "}"; \
1595
	} > $@
1596

    
1597
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1598
	set -e; \
1599
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1600
	{ echo '# This file is automatically generated, do not edit!'; \
1601
	  echo '#'; \
1602
	  echo ''; \
1603
	  echo '"""Build-time VCS version number for Ganeti.'; \
1604
	  echo '';\
1605
	  echo 'This file is autogenerated by the build process.'; \
1606
	  echo 'For any changes you need to re-run ./configure (and'; \
1607
	  echo 'not edit by hand).'; \
1608
	  echo ''; \
1609
	  echo '"""'; \
1610
	  echo ''; \
1611
	  echo '# pylint: disable=C0301,C0324'; \
1612
	  echo '# because this is autogenerated, we do not want'; \
1613
	  echo '# style warnings' ; \
1614
	  echo ''; \
1615
	  echo "VCS_VERSION = '$$VCSVER'"; \
1616
	} > $@
1617

    
1618
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1619
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1620

    
1621
$(SHELL_ENV_INIT): Makefile stamp-directories
1622
	set -e; \
1623
	{ echo '# Allow overriding for tests'; \
1624
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1625
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1626
	  echo; \
1627
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1628
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1629
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1630
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1631
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1632
	} > $@
1633

    
1634
## Writes sed script to replace placeholders with build-time values. The
1635
## additional quotes after the first @ sign are necessary to stop configure
1636
## from replacing those values as well.
1637
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1638
	set -e; \
1639
	{ echo 's#@''PREFIX@#$(prefix)#g'; \
1640
	  echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1641
	  echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1642
	  echo 's#@''BINDIR@#$(bindir)#g'; \
1643
	  echo 's#@''SBINDIR@#$(sbindir)#g'; \
1644
	  echo 's#@''LIBDIR@#$(libdir)#g'; \
1645
	  echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1646
	  echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1647
	  echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1648
	  echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1649
	  echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1650
	  echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1651
	  echo 's#@''RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1652
	  echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1653
	  echo 's#@''PKGLIBDIR@#$(pkglibdir)#g'; \
1654
	  echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1655
	  echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1656
	  echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1657
	  echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1658
	  echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1659
	  echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1660
	  echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1661
	  echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1662
	  echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1663
	  echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1664
	  echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1665
	  echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1666
	  echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1667
	  echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1668
	  echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1669
	  echo; \
1670
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1671
	  echo '  r $(SHELL_ENV_INIT)'; \
1672
	  echo '  d'; \
1673
	  echo '}'; \
1674
	} > $@
1675

    
1676
# Using deferred evaluation
1677
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1678
daemons/ganeti-watcher: MODULE = ganeti.watcher
1679
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1680
tools/burnin: MODULE = ganeti.tools.burnin
1681
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1682
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1683
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1684
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1685
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1686

    
1687
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1688
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1689
	set -e; \
1690
	{ echo '#!/usr/bin/python'; \
1691
	  echo '# This file is automatically generated, do not edit!'; \
1692
	  echo "# Edit $(MODULE) instead."; \
1693
	  echo; \
1694
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1695
	  echo; \
1696
	  echo '# pylint: disable=C0103'; \
1697
	  echo '# C0103: Invalid name'; \
1698
	  echo; \
1699
	  echo 'import sys'; \
1700
	  echo 'import $(MODULE) as main'; \
1701
	  echo; \
1702
	  echo '# Temporarily alias commands until bash completion'; \
1703
	  echo '# generator is changed'; \
1704
	  echo 'if hasattr(main, "commands"):'; \
1705
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1706
	  echo 'if hasattr(main, "aliases"):'; \
1707
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1708
	  echo; \
1709
	  echo 'if __name__ == "__main__":'; \
1710
	  echo '  sys.exit(main.Main())'; \
1711
	} > $@
1712
	chmod u+x $@
1713

    
1714
$(HS_BUILT_TEST_HELPERS): Makefile
1715
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1716
	set -e; \
1717
	{ echo '#!/bin/sh'; \
1718
	  echo '# This file is automatically generated, do not edit!'; \
1719
	  echo "# Edit Makefile.am instead."; \
1720
	  echo; \
1721
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
1722
	} > $@
1723
	chmod u+x $@
1724

    
1725
stamp-directories: Makefile
1726
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1727
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1728
	touch $@
1729

    
1730
# We need to create symlinks because "make distcheck" will not install Python
1731
# files when building.
1732
stamp-srclinks: Makefile | stamp-directories
1733
	set -e; \
1734
	for i in $(srclink_files); do \
1735
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1736
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1737
	  fi; \
1738
	done
1739
	touch $@
1740

    
1741
.PHONY: ganeti
1742
ganeti:
1743
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1744

    
1745
.PHONY: check-dirs
1746
check-dirs: $(GENERATED_FILES)
1747
	@set -e; \
1748
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1749
	  error=; \
1750
	  while read dir; do \
1751
	    case "$$dir" in \
1752
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1753
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1754
	    esac; \
1755
	  done; \
1756
	  for dir in $(DIRS); do \
1757
	    if ! test -d "$$dir"; then \
1758
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1759
	      error=1; \
1760
	    fi \
1761
	  done; \
1762
	  test -z "$$error"; \
1763
	}
1764

    
1765
.PHONY: check-local
1766
check-local: check-dirs $(GENERATED_FILES)
1767
	$(CHECK_PYTHON_CODE) $(check_python_code)
1768
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1769
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1770
	RELEASE=$(PACKAGE_VERSION) $(CHECK_NEWS) < $(top_srcdir)/NEWS
1771
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1772
	error= ; \
1773
	if [ "x`echo $(VERSION_SUFFIX)|grep 'alpha'`" == "x" ]; then \
1774
	  expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1775
	  if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1776
	    echo "Incorrect version in README, expected $$expver" >&2; \
1777
	    error=1; \
1778
	  fi; \
1779
	  for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1780
	      doc/security.rst; do \
1781
	    if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1782
	      "Documents Ganeti version $$expver"; then \
1783
	      echo "Incorrect version in $$file, expected $$expver" >&2; \
1784
	      error=1; \
1785
	    fi; \
1786
	  done; \
1787
	  if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1788
	    echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
1789
	    error=1; \
1790
	  fi; \
1791
	  if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
1792
	    ".. Last updated for Ganeti $$expver"; then \
1793
	    echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
1794
	    error=1; \
1795
	  fi; \
1796
	fi; \
1797
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
1798
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
1799
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
1800
	    error=1; \
1801
	  fi; \
1802
	done; \
1803
	test -z "$$error"
1804

    
1805
.PHONY: hs-tests
1806
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1807
	@rm -f htest.tix
1808
	./test/hs/htest
1809

    
1810
.PHONY: hs-shell
1811
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
1812
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1813
	HBINARY="./test/hs/hpc-htools" ./test/hs/offline-test.sh
1814

    
1815
.PHONY: hs-check
1816
hs-check: hs-tests hs-shell
1817

    
1818
# E111: indentation is not a multiple of four
1819
# E121: continuation line indentation is not a multiple of four
1820
#       (since our indent level is not 4)
1821
# E125: continuation line does not distinguish itself from next logical line
1822
#       (since our indent level is not 4)
1823
# E127: continuation line over-indented for visual indent
1824
#       (since our indent level is not 4)
1825
# note: do NOT add E128 here; it's a valid style error in most cases!
1826
# I've seen real errors, but also some cases were we indent wrongly
1827
# due to line length; try to rework the cases where it is triggered,
1828
# instead of silencing it
1829
# E261: at least two spaces before inline comment
1830
# E501: line too long (80 characters)
1831
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1832

    
1833
# For excluding pep8 expects filenames only, not whole paths
1834
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1835

    
1836
LINT_TARGETS = pylint pylint-qa
1837
if HAS_PEP8
1838
LINT_TARGETS += pep8
1839
endif
1840
if HAS_HLINT
1841
LINT_TARGETS += hlint
1842
endif
1843

    
1844
.PHONY: lint
1845
lint: $(LINT_TARGETS)
1846

    
1847
.PHONY: pylint
1848
pylint: $(GENERATED_FILES)
1849
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1850
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1851

    
1852
.PHONY: pylint-qa
1853
pylint-qa: $(GENERATED_FILES)
1854
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1855
	cd $(top_srcdir)/qa && \
1856
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1857
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1858

    
1859
.PHONY: pep8
1860
pep8: $(GENERATED_FILES)
1861
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1862
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1863
	  --repeat $(pep8_python_code)
1864

    
1865
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1866
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
1867
.PHONY: hlint
1868
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
1869
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1870
	@rm -f doc/hs-lint.html
1871
	if tty -s; then C="-c"; else C=""; fi; \
1872
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1873
	  --ignore "Use first" \
1874
	  --ignore "Use &&&" \
1875
	  --ignore "Use void" \
1876
	  --ignore "Reduce duplication" \
1877
	  --hint src/lint-hints \
1878
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1879
	@if [ ! -f doc/hs-lint.html ]; then \
1880
	  echo "All good" > doc/hs-lint.html; \
1881
	fi
1882

    
1883
# a dist hook rule for updating the vcs-version file; this is
1884
# hardcoded due to where it needs to build the file...
1885
dist-hook:
1886
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1887
	rm -f $(top_distdir)/vcs-version
1888
	cp -p $(srcdir)/vcs-version $(top_distdir)
1889

    
1890
# a distcheck hook rule for catching revision control directories
1891
distcheck-hook:
1892
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1893
	  echo "Found revision control files in final archive." 1>&2; \
1894
	  exit 1; \
1895
	fi
1896
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1897
	  echo "Found Python byte code in final archive." 1>&2; \
1898
	  exit 1; \
1899
	fi
1900
	if find $(top_distdir) -name '*~' | grep .; then \
1901
	  echo "Found backup files in final archive." 1>&2; \
1902
	  exit 1; \
1903
	fi
1904
# Empty files or directories should not be distributed. They can cause
1905
# unnecessary warnings for packagers. Directories used by automake during
1906
# distcheck must be excluded.
1907
	if find $(top_distdir) -empty -and -not \( \
1908
	    -path $(top_distdir)/_build -or \
1909
	    -path $(top_distdir)/_inst \) | grep .; then \
1910
	  echo "Found empty files or directories in final archive." 1>&2; \
1911
	  exit 1; \
1912
	fi
1913
	if test -e $(top_distdir)/doc/man-html; then \
1914
	  echo "Found documentation including man pages in final archive" >&2; \
1915
	  exit 1; \
1916
	fi
1917

    
1918
# Backwards compatible distcheck-release target
1919
distcheck-release: distcheck
1920

    
1921
distrebuildcheck: dist
1922
	set -e; \
1923
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1924
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1925
	cd $$builddir; \
1926
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1927
	cd $(distdir); \
1928
	./configure; \
1929
	$(MAKE) maintainer-clean; \
1930
	cp $(abs_srcdir)/vcs-version .; \
1931
	./configure; \
1932
	$(MAKE) $(AM_MAKEFLAGS)
1933

    
1934
dist-release: dist
1935
	set -e; \
1936
	for i in $(DIST_ARCHIVES); do \
1937
	  echo -n "Checking $$i ... "; \
1938
	  autotools/check-tar < $$i; \
1939
	  echo OK; \
1940
	done
1941

    
1942
install-exec-local:
1943
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1944
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1945
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1946

    
1947
.PHONY: apidoc
1948
if WANT_HSAPIDOC
1949
apidoc: py-apidoc hs-apidoc
1950
else
1951
apidoc: py-apidoc
1952
endif
1953

    
1954
.PHONY: py-apidoc
1955
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1956
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
1957
	$(RUN_IN_TEMPDIR) epydoc -v \
1958
	  --conf $(CURDIR)/epydoc.conf \
1959
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
1960

    
1961
.PHONY: hs-apidoc
1962
hs-apidoc: $(APIDOC_HS_DIR)/index.html
1963

    
1964
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
1965
	@test -n "$(HSCOLOUR)" || \
1966
	    { echo 'HsColour' not found during configure; exit 1; }
1967
	@test -n "$(HADDOCK)" || \
1968
	    { echo 'haddock' not found during configure; exit 1; }
1969
	rm -rf $(APIDOC_HS_DIR)/*
1970
	for i in $(ALL_APIDOC_HS_DIRS); do \
1971
	  @mkdir_p@ $$i; \
1972
	  $(HSCOLOUR) -print-css > $$i/hscolour.css; \
1973
	done
1974
	set -e ; \
1975
	export LC_ALL=en_US.UTF-8; \
1976
	OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
1977
	if [ "$(HS_PARALLEL3)" ]; \
1978
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
1979
	fi; \
1980
	if [ "$(HS_REGEX_PCRE)" ]; \
1981
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
1982
	fi; \
1983
	for file in $(HS_LIBTESTBUILT_SRCS); do \
1984
	  f_nosrc=$${file##src/}; \
1985
	  f_notst=$${f_nosrc##test/hs/}; \
1986
	  f_html=$${f_notst%%.hs}.html; \
1987
	  $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
1988
	done ; \
1989
	$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1990
	  -t ganeti -p src/haddock-prologue \
1991
	  --source-module="%{MODULE/.//}.html" \
1992
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
1993
	  $$OPTGHC \
1994
	  $(HS_LIBTESTBUILT_SRCS)
1995

    
1996
.PHONY: TAGS
1997
TAGS: $(GENERATED_FILES)
1998
	rm -f TAGS
1999
	$(GHC) -e ":etags" -v0 \
2000
	  $(filter-out -O -Werror,$(HFLAGS)) \
2001
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
2002
	  $(HS_LIBTEST_SRCS)
2003
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
2004
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
2005
	  -path './qa/*.py' | \
2006
	  etags -l python -a -
2007

    
2008
.PHONY: coverage
2009

    
2010
COVERAGE_TESTS=
2011
if WANT_HTOOLS
2012
COVERAGE_TESTS += hs-coverage
2013
endif
2014
if !PY_NODEV
2015
COVERAGE_TESTS += py-coverage
2016
endif
2017

    
2018
coverage: $(COVERAGE_TESTS)
2019

    
2020
.PHONY: py-coverage
2021
py-coverage: $(GENERATED_FILES) $(python_tests)
2022
	@test -n "$(PYCOVERAGE)" || \
2023
	    { echo 'python-coverage' not found during configure; exit 1; }
2024
	set -e; \
2025
	COVERAGE=$(PYCOVERAGE) \
2026
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
2027
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
2028
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
2029
	$(PLAIN_TESTS_ENVIRONMENT) \
2030
	$(abs_top_srcdir)/autotools/gen-py-coverage \
2031
	$(python_tests)
2032

    
2033
.PHONY: hs-coverage
2034
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
2035
	rm -f *.tix
2036
	$(MAKE) $(AM_MAKEFLAGS) hs-check
2037
	@mkdir_p@ $(COVERAGE_HS_DIR)
2038
	hpc sum --union $(HPCEXCL) \
2039
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
2040
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
2041
	hpc report coverage-hs.tix
2042
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
2043

    
2044
# Special "kind-of-QA" target for htools, needs special setup (all
2045
# tools compiled with -fhpc)
2046
.PHONY: live-test
2047
live-test: all
2048
	set -e ; \
2049
	cd src; \
2050
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
2051
	rm -f *.tix *.mix; \
2052
	./live-test.sh; \
2053
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
2054
	  --output=live-test.tix ; \
2055
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
2056
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
2057
	  --srcdir=.. $(HPCEXCL) ; \
2058
	hpc report --srcdir=.. live-test $(HPCEXCL)
2059

    
2060
commit-check: autotools-check distcheck lint apidoc
2061

    
2062
autotools-check:
2063
	TESTDATA_DIR=./test/data shelltest $(SHELLTESTARGS) \
2064
  $(abs_top_srcdir)/test/autotools/*-*.test \
2065
  -- --hide-successes
2066

    
2067
.PHONY: gitignore-check
2068
gitignore-check:
2069
	@if [ -n "`git status --short`" ]; then \
2070
	  echo "Git status is not clean!" 1>&2 ; \
2071
	  git status --short; \
2072
	  exit 1; \
2073
	fi
2074

    
2075
# target to rebuild all man pages (both groff and html output)
2076
.PHONY: man
2077
man: $(man_MANS) $(manhtml)
2078

    
2079
# Target that builds all binaries (including those that are not
2080
# rebuilt except when running the tests)
2081
.PHONY: really-all
2082
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
2083

    
2084
# we don't need the ancient implicit rules:
2085
%: %,v
2086
%: RCS/%,v
2087
%: RCS/%
2088
%: s.%
2089
%: SCCS/s.%
2090

    
2091
-include ./Makefile.local
2092

    
2093
# vim: set noet :