Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 5f5dd119

History | View | Annotate | Download (59.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
httpdir = $(pkgpythondir)/http
46
masterddir = $(pkgpythondir)/masterd
47
confddir = $(pkgpythondir)/confd
48
rapidir = $(pkgpythondir)/rapi
49
serverdir = $(pkgpythondir)/server
50
watcherdir = $(pkgpythondir)/watcher
51
impexpddir = $(pkgpythondir)/impexpd
52
utilsdir = $(pkgpythondir)/utils
53
toolsdir = $(pkglibdir)/tools
54
iallocatorsdir = $(pkglibdir)/iallocators
55
pytoolsdir = $(pkgpythondir)/tools
56
docdir = $(datadir)/doc/$(PACKAGE)
57
myexeclibdir = $(pkglibdir)
58

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

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

    
89
# Haskell directories without the roots (src, test/hs)
90
HS_DIRS_NOROOT = $(filter-out src,$(filter-out test/hs,$(HS_DIRS)))
91

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

    
130
ALL_APIDOC_HS_DIRS = \
131
	$(APIDOC_HS_DIR) \
132
	$(patsubst %,$(APIDOC_HS_DIR)/%,$(call strip_hsroot,$(HS_DIRS_NOROOT)))
133

    
134
BUILDTIME_DIR_AUTOCREATE = \
135
	scripts \
136
	$(APIDOC_DIR) \
137
	$(ALL_APIDOC_HS_DIRS) \
138
	$(APIDOC_PY_DIR) \
139
	$(COVERAGE_DIR) \
140
	$(COVERAGE_HS_DIR) \
141
	$(COVERAGE_PY_DIR) \
142
	.hpc
143

    
144
BUILDTIME_DIRS = \
145
	$(BUILDTIME_DIR_AUTOCREATE) \
146
	doc/html \
147
	doc/man-html
148

    
149
DIRCHECK_EXCLUDE = \
150
	$(BUILDTIME_DIRS) \
151
	ganeti-[0-9]*.[0-9]*.[0-9]* \
152
	doc/html/_* \
153
	doc/man-html/_* \
154
	autom4te.cache
155

    
156
# some helper vars
157
COVERAGE_DIR = doc/coverage
158
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
159
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
160
APIDOC_DIR = doc/api
161
APIDOC_PY_DIR = $(APIDOC_DIR)/py
162
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
163

    
164
MAINTAINERCLEANFILES = \
165
	$(maninput) \
166
	doc/install-quick.rst \
167
	doc/news.rst \
168
	doc/upgrade.rst \
169
	vcs-version
170

    
171
maintainer-clean-local:
172
	rm -rf $(BUILDTIME_DIRS)
173

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

    
207
GENERATED_FILES = \
208
	$(built_base_sources) \
209
	$(BUILT_PYTHON_SOURCES) \
210
	$(PYTHON_BOOTSTRAP)
211

    
212
HS_GENERATED_FILES =
213
if WANT_HTOOLS
214
HS_GENERATED_FILES += $(HS_PROGS)
215
if ENABLE_CONFD
216
HS_GENERATED_FILES += src/hconfd src/ganeti-confd
217
endif
218

    
219
if ENABLE_MOND
220
HS_GENERATED_FILES += src/ganeti-mond
221
endif
222
endif
223

    
224
built_base_sources = \
225
	stamp-directories \
226
	stamp-srclinks
227

    
228
built_python_base_sources = \
229
	lib/_autoconf.py \
230
	lib/_vcsversion.py
231

    
232
BUILT_PYTHON_SOURCES = \
233
	$(built_python_base_sources) \
234
	lib/_generated_rpc.py
235

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

    
240
# these are all built from the underlying %.in sources
241
BUILT_EXAMPLES = \
242
	doc/examples/ganeti-kvm-poweroff.initd \
243
	doc/examples/ganeti.cron \
244
	doc/examples/ganeti.initd \
245
	doc/examples/ganeti-master-role.ocf \
246
	doc/examples/ganeti-node-role.ocf \
247
	doc/examples/gnt-config-backup \
248
	doc/examples/hooks/ipsec
249

    
250
nodist_pkgpython_PYTHON = \
251
	$(BUILT_PYTHON_SOURCES)
252

    
253
noinst_PYTHON = \
254
	lib/build/__init__.py \
255
	lib/build/shell_example_lexer.py \
256
	lib/build/sphinx_ext.py
257

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

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

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

    
331
hypervisor_PYTHON = \
332
	lib/hypervisor/__init__.py \
333
	lib/hypervisor/hv_base.py \
334
	lib/hypervisor/hv_chroot.py \
335
	lib/hypervisor/hv_fake.py \
336
	lib/hypervisor/hv_kvm.py \
337
	lib/hypervisor/hv_lxc.py \
338
	lib/hypervisor/hv_xen.py
339

    
340
rapi_PYTHON = \
341
	lib/rapi/__init__.py \
342
	lib/rapi/baserlib.py \
343
	lib/rapi/client.py \
344
	lib/rapi/client_utils.py \
345
	lib/rapi/connector.py \
346
	lib/rapi/rlib2.py \
347
	lib/rapi/testutils.py
348

    
349
http_PYTHON = \
350
	lib/http/__init__.py \
351
	lib/http/auth.py \
352
	lib/http/client.py \
353
	lib/http/server.py
354

    
355
confd_PYTHON = \
356
	lib/confd/__init__.py \
357
	lib/confd/client.py
358

    
359
masterd_PYTHON = \
360
	lib/masterd/__init__.py \
361
	lib/masterd/iallocator.py \
362
	lib/masterd/instance.py
363

    
364
impexpd_PYTHON = \
365
	lib/impexpd/__init__.py
366

    
367
watcher_PYTHON = \
368
	lib/watcher/__init__.py \
369
	lib/watcher/nodemaint.py \
370
	lib/watcher/state.py
371

    
372
server_PYTHON = \
373
	lib/server/__init__.py \
374
	lib/server/masterd.py \
375
	lib/server/noded.py \
376
	lib/server/rapi.py
377

    
378
pytools_PYTHON = \
379
	lib/tools/__init__.py \
380
	lib/tools/burnin.py \
381
	lib/tools/ensure_dirs.py \
382
	lib/tools/node_cleanup.py \
383
	lib/tools/node_daemon_setup.py \
384
	lib/tools/prepare_node_join.py
385

    
386
utils_PYTHON = \
387
	lib/utils/__init__.py \
388
	lib/utils/algo.py \
389
	lib/utils/filelock.py \
390
	lib/utils/hash.py \
391
	lib/utils/io.py \
392
	lib/utils/log.py \
393
	lib/utils/lvm.py \
394
	lib/utils/mlock.py \
395
	lib/utils/nodesetup.py \
396
	lib/utils/process.py \
397
	lib/utils/retry.py \
398
	lib/utils/text.py \
399
	lib/utils/wrapper.py \
400
	lib/utils/x509.py
401

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

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

    
466
# Haskell programs to be installed in $PREFIX/bin
467
HS_BIN_PROGS=src/htools
468

    
469
# Haskell programs to be installed in the MYEXECLIB dir
470
if ENABLE_MOND
471
HS_MYEXECLIB_PROGS=src/mon-collector
472
else
473
HS_MYEXECLIB_PROGS=
474
endif
475

    
476
# Haskell programs to be compiled by "make really-all"
477
HS_COMPILE_PROGS= \
478
	src/ganeti-mond \
479
	src/hconfd \
480
	src/rpc-test
481

    
482
# All Haskell non-test programs to be compiled but not automatically installed
483
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
484

    
485
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller
486
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
487

    
488
HS_ALL_PROGS = \
489
	$(HS_PROGS) \
490
	test/hs/hpc-htools \
491
	test/hs/hpc-mon-collector \
492
	test/hs/htest \
493
	$(HS_COMPILE_PROGS)
494

    
495
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
496
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
497

    
498
HFLAGS = \
499
	-O -Wall -Werror -isrc \
500
	-fwarn-monomorphism-restriction \
501
	-fwarn-tabs \
502
	$(GHC_BYVERSION_FLAGS)
503

    
504
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
505
HEXTRA =
506
# internal extra flags (used for test/hs/htest mainly)
507
HEXTRA_INT =
508
# exclude options for coverage reports
509
HPCEXCL = --exclude Main \
510
	--exclude Ganeti.Constants \
511
	--exclude Ganeti.HTools.QC \
512
	--exclude Ganeti.THH \
513
	--exclude Ganeti.Version \
514
	--exclude Test.Ganeti.Attoparsec \
515
	--exclude Test.Ganeti.TestCommon \
516
	--exclude Test.Ganeti.TestHTools \
517
	--exclude Test.Ganeti.TestHelper \
518
	--exclude Test.Ganeti.TestImports \
519
	$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
520

    
521
HS_LIB_SRCS = \
522
	src/Ganeti/Block/Drbd/Types.hs \
523
	src/Ganeti/Block/Drbd/Parser.hs \
524
	src/Ganeti/BasicTypes.hs \
525
	src/Ganeti/Common.hs \
526
	src/Ganeti/Compat.hs \
527
	src/Ganeti/Confd/Client.hs \
528
	src/Ganeti/Confd/Server.hs \
529
	src/Ganeti/Confd/Types.hs \
530
	src/Ganeti/Confd/Utils.hs \
531
	src/Ganeti/Config.hs \
532
	src/Ganeti/Curl/Multi.hs \
533
	src/Ganeti/Daemon.hs \
534
	src/Ganeti/DataCollectors/CLI.hs \
535
	src/Ganeti/DataCollectors/Drbd.hs \
536
	src/Ganeti/DataCollectors/Program.hs \
537
	src/Ganeti/DataCollectors/Types.hs \
538
	src/Ganeti/Errors.hs \
539
	src/Ganeti/HTools/Backend/IAlloc.hs \
540
	src/Ganeti/HTools/Backend/Luxi.hs \
541
	src/Ganeti/HTools/Backend/Rapi.hs \
542
	src/Ganeti/HTools/Backend/Simu.hs \
543
	src/Ganeti/HTools/Backend/Text.hs \
544
	src/Ganeti/HTools/CLI.hs \
545
	src/Ganeti/HTools/Cluster.hs \
546
	src/Ganeti/HTools/Container.hs \
547
	src/Ganeti/HTools/ExtLoader.hs \
548
	src/Ganeti/HTools/Graph.hs \
549
	src/Ganeti/HTools/Group.hs \
550
	src/Ganeti/HTools/Instance.hs \
551
	src/Ganeti/HTools/Loader.hs \
552
	src/Ganeti/HTools/Nic.hs \
553
	src/Ganeti/HTools/Node.hs \
554
	src/Ganeti/HTools/PeerMap.hs \
555
	src/Ganeti/HTools/Program/Hail.hs \
556
	src/Ganeti/HTools/Program/Harep.hs \
557
	src/Ganeti/HTools/Program/Hbal.hs \
558
	src/Ganeti/HTools/Program/Hcheck.hs \
559
	src/Ganeti/HTools/Program/Hinfo.hs \
560
	src/Ganeti/HTools/Program/Hscan.hs \
561
	src/Ganeti/HTools/Program/Hspace.hs \
562
	src/Ganeti/HTools/Program/Hroller.hs \
563
	src/Ganeti/HTools/Program/Main.hs \
564
	src/Ganeti/HTools/Types.hs \
565
	src/Ganeti/Hypervisor/Xen/XmParser.hs \
566
	src/Ganeti/Hypervisor/Xen/Types.hs \
567
	src/Ganeti/Hash.hs \
568
	src/Ganeti/JQueue.hs \
569
	src/Ganeti/JSON.hs \
570
	src/Ganeti/Jobs.hs \
571
	src/Ganeti/Logging.hs \
572
	src/Ganeti/Luxi.hs \
573
	src/Ganeti/Monitoring/Server.hs \
574
	src/Ganeti/Network.hs \
575
	src/Ganeti/Objects.hs \
576
	src/Ganeti/OpCodes.hs \
577
	src/Ganeti/OpParams.hs \
578
	src/Ganeti/Path.hs \
579
	src/Ganeti/Query/Common.hs \
580
	src/Ganeti/Query/Export.hs \
581
	src/Ganeti/Query/Filter.hs \
582
	src/Ganeti/Query/Group.hs \
583
	src/Ganeti/Query/Job.hs \
584
	src/Ganeti/Query/Language.hs \
585
	src/Ganeti/Query/Network.hs \
586
	src/Ganeti/Query/Node.hs \
587
	src/Ganeti/Query/Query.hs \
588
	src/Ganeti/Query/Server.hs \
589
	src/Ganeti/Query/Types.hs \
590
	src/Ganeti/Rpc.hs \
591
	src/Ganeti/Runtime.hs \
592
	src/Ganeti/Ssconf.hs \
593
	src/Ganeti/THH.hs \
594
	src/Ganeti/Types.hs \
595
	src/Ganeti/Utils.hs
596

    
597
HS_TEST_SRCS = \
598
	test/hs/Test/Ganeti/Attoparsec.hs \
599
	test/hs/Test/Ganeti/BasicTypes.hs \
600
	test/hs/Test/Ganeti/Block/Drbd/Parser.hs \
601
	test/hs/Test/Ganeti/Block/Drbd/Types.hs \
602
	test/hs/Test/Ganeti/Common.hs \
603
	test/hs/Test/Ganeti/Confd/Types.hs \
604
	test/hs/Test/Ganeti/Confd/Utils.hs \
605
	test/hs/Test/Ganeti/Daemon.hs \
606
	test/hs/Test/Ganeti/Errors.hs \
607
	test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
608
	test/hs/Test/Ganeti/HTools/Backend/Text.hs \
609
	test/hs/Test/Ganeti/HTools/CLI.hs \
610
	test/hs/Test/Ganeti/HTools/Cluster.hs \
611
	test/hs/Test/Ganeti/HTools/Container.hs \
612
	test/hs/Test/Ganeti/HTools/Graph.hs \
613
	test/hs/Test/Ganeti/HTools/Instance.hs \
614
	test/hs/Test/Ganeti/HTools/Loader.hs \
615
	test/hs/Test/Ganeti/HTools/Node.hs \
616
	test/hs/Test/Ganeti/HTools/PeerMap.hs \
617
	test/hs/Test/Ganeti/HTools/Types.hs \
618
	test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \
619
	test/hs/Test/Ganeti/JSON.hs \
620
	test/hs/Test/Ganeti/Jobs.hs \
621
	test/hs/Test/Ganeti/JQueue.hs \
622
	test/hs/Test/Ganeti/Luxi.hs \
623
	test/hs/Test/Ganeti/Network.hs \
624
	test/hs/Test/Ganeti/Objects.hs \
625
	test/hs/Test/Ganeti/OpCodes.hs \
626
	test/hs/Test/Ganeti/Query/Filter.hs \
627
	test/hs/Test/Ganeti/Query/Language.hs \
628
	test/hs/Test/Ganeti/Query/Network.hs \
629
	test/hs/Test/Ganeti/Query/Query.hs \
630
	test/hs/Test/Ganeti/Rpc.hs \
631
	test/hs/Test/Ganeti/Runtime.hs \
632
	test/hs/Test/Ganeti/Ssconf.hs \
633
	test/hs/Test/Ganeti/THH.hs \
634
	test/hs/Test/Ganeti/TestCommon.hs \
635
	test/hs/Test/Ganeti/TestHTools.hs \
636
	test/hs/Test/Ganeti/TestHelper.hs \
637
	test/hs/Test/Ganeti/Types.hs \
638
	test/hs/Test/Ganeti/Utils.hs
639

    
640
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
641

    
642
HS_BUILT_SRCS = \
643
	test/hs/Test/Ganeti/TestImports.hs \
644
	src/Ganeti/Constants.hs \
645
	src/Ganeti/Curl/Internal.hs \
646
	src/Ganeti/Version.hs
647
HS_BUILT_SRCS_IN = \
648
	$(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \
649
	src/Ganeti/Curl/Internal.hsc
650

    
651
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
652

    
653
$(RUN_IN_TEMPDIR): | stamp-directories
654

    
655
doc/html/index.html: ENABLE_MANPAGES =
656
doc/man-html/index.html: ENABLE_MANPAGES = 1
657
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
658

    
659
# Note: we use here an order-only prerequisite, as the contents of
660
# _autoconf.py are not actually influencing the html build output: it
661
# has to exist in order for the sphinx module to be loaded
662
# successfully, but we certainly don't want the docs to be rebuilt if
663
# it changes
664
doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \
665
	configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
666
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
667
	doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \
668
	| $(BUILT_PYTHON_SOURCES)
669
	@test -n "$(SPHINX)" || \
670
	    { echo 'sphinx-build' not found during configure; exit 1; }
671
if !MANPAGES_IN_DOC
672
	if test -n '$(ENABLE_MANPAGES)'; then \
673
	  echo 'Man pages in documentation were disabled at configure time' >&2; \
674
	  exit 1; \
675
	fi
676
endif
677
## Sphinx provides little control over what content should be included. Some
678
## mechanisms exist, but they all have drawbacks or actual issues. Since we
679
## build two different versions of the documentation--once without man pages and
680
## once, if enabled, with them--some control is necessary. xmpp-wrapper provides
681
## us with this, but requires running in a temporary directory. It moves the
682
## correct files into place depending on environment variables.
683
	dir=$(dir $@) && \
684
	@mkdir_p@ $$dir && \
685
	PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \
686
	$(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \
687
	    -d . \
688
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
689
	    -D release="$(PACKAGE_VERSION)" \
690
	    -D graphviz_dot="$(DOT)" \
691
	    -D enable_manpages="$(ENABLE_MANPAGES)" \
692
	    doc $(CURDIR)/$$dir && \
693
	rm -f $$dir/.buildinfo $$dir/objects.inv
694
	touch $@
695

    
696
doc/html: doc/html/index.html
697

    
698
doc/man-html: doc/man-html/index.html
699

    
700
doc/install-quick.rst: INSTALL
701
doc/news.rst: NEWS
702
doc/upgrade.rst: UPGRADE
703

    
704
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
705
	set -e; \
706
	{ echo '.. This file is automatically updated at build time from $<.'; \
707
	  echo '.. Do not edit.'; \
708
	  echo; \
709
	  cat $<; \
710
	} > $@
711

    
712
doc/manpages-enabled.rst: Makefile | $(built_base_sources)
713
	{ echo '.. This file is automatically generated, do not edit!'; \
714
	  echo ''; \
715
	  echo 'Man pages'; \
716
	  echo '========='; \
717
	  echo; \
718
	  echo '.. toctree::'; \
719
	  echo '   :maxdepth: 1'; \
720
	  echo; \
721
	  for i in $(notdir $(mandocrst)); do \
722
	    echo "   $$i"; \
723
	  done | LC_ALL=C sort; \
724
	} > $@
725

    
726
doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources)
727
if MANPAGES_IN_DOC
728
	{ echo '.. This file is automatically updated at build time from $<.'; \
729
	  echo '.. Do not edit.'; \
730
	  echo; \
731
	  echo "$*"; \
732
	  echo '=========================================='; \
733
	  tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \
734
	} > $@
735
else
736
	echo 'Man pages in documentation were disabled at configure time' >&2; \
737
	exit 1;
738
endif
739

    
740
# Things to build but not to install (add it to EXTRA_DIST if it should be
741
# distributed)
742
noinst_DATA = \
743
	doc/html \
744
	$(BUILT_EXAMPLES) \
745
	doc/examples/bash_completion \
746
	doc/examples/bash_completion-debug \
747
	$(manhtml)
748

    
749
if MANPAGES_IN_DOC
750
noinst_DATA += doc/man-html
751
endif
752

    
753
gnt_scripts = \
754
	scripts/gnt-backup \
755
	scripts/gnt-cluster \
756
	scripts/gnt-debug \
757
	scripts/gnt-group \
758
	scripts/gnt-instance \
759
	scripts/gnt-job \
760
	scripts/gnt-network \
761
	scripts/gnt-node \
762
	scripts/gnt-os \
763
	scripts/gnt-storage
764

    
765
PYTHON_BOOTSTRAP_SBIN = \
766
	daemons/ganeti-masterd \
767
	daemons/ganeti-noded \
768
	daemons/ganeti-rapi \
769
	daemons/ganeti-watcher \
770
	$(gnt_scripts)
771

    
772
PYTHON_BOOTSTRAP = \
773
	$(PYTHON_BOOTSTRAP_SBIN) \
774
	tools/burnin \
775
	tools/ensure-dirs \
776
	tools/node-cleanup \
777
	tools/node-daemon-setup \
778
	tools/prepare-node-join
779

    
780
qa_scripts = \
781
	qa/__init__.py \
782
	qa/ganeti-qa.py \
783
	qa/qa_cluster.py \
784
	qa/qa_config.py \
785
	qa/qa_daemon.py \
786
	qa/qa_env.py \
787
	qa/qa_error.py \
788
	qa/qa_group.py \
789
	qa/qa_instance.py \
790
	qa/qa_job.py \
791
	qa/qa_node.py \
792
	qa/qa_os.py \
793
	qa/qa_rapi.py \
794
	qa/qa_tags.py \
795
	qa/qa_utils.py
796

    
797
bin_SCRIPTS =
798
if WANT_HTOOLS
799
bin_SCRIPTS += $(HS_BIN_PROGS)
800
install-exec-hook:
801
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
802
# FIXME: this is a hardcoded logic, instead of auto-resolving
803
	$(LN_S) -f ../../../bin/htools \
804
	  $(DESTDIR)$(iallocatorsdir)/hail
805
	for role in $(HS_BIN_ROLES); do \
806
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
807
	done
808
endif
809

    
810
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTESTBUILT_SRCS) Makefile
811
	@if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \
812
	  echo "Error: cannot run unittests without the development" \
813
	       " libraries (see devnotes.rst)" 1>&2; \
814
	  exit 1; \
815
	fi
816
	@rm -f $(notdir $@).tix
817
	$(GHC) --make \
818
	  $(HFLAGS) \
819
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
820
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
821
	  $(HEXTRA) $(HEXTRA_INT) $@
822
	@touch "$@"
823

    
824
# for the test/hs/htest binary, we need to enable profiling/coverage
825
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
826

    
827
# we compile the hpc-htools binary with the program coverage
828
test/hs/hpc-htools: HEXTRA_INT=-fhpc
829

    
830
# we compile the hpc-mon-collector binary with the program coverage
831
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
832

    
833
# test dependency
834
test/hs/offline-test.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
835

    
836
# rules for building profiling-enabled versions of the haskell
837
# programs: hs-prof does the full two-step build, whereas
838
# hs-prof-quick does only the final rebuild (hs-prof must have been
839
# run before)
840
.PHONY: hs-prof hs-prof-quick
841
hs-prof:
842
	@if [ -z "$(TARGET)" ]; then \
843
	  echo "You need to define TARGET when running this rule" 1>&2; \
844
	  exit 1; \
845
	fi
846
	$(MAKE) $(AM_MAKEFLAGS) clean
847
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o"
848
	rm -f $(HS_ALL_PROGS)
849
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
850

    
851
hs-prof-quick:
852
	@if [ -z "$(TARGET)" ]; then \
853
	  echo "You need to define TARGET when running this rule" 1>&2; \
854
	  exit 1; \
855
	fi
856
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
857

    
858
dist_sbin_SCRIPTS = \
859
	tools/ganeti-listrunner
860

    
861
nodist_sbin_SCRIPTS = \
862
	$(PYTHON_BOOTSTRAP_SBIN) \
863
	daemons/ganeti-cleaner
864

    
865
if ENABLE_CONFD
866
src/ganeti-confd: src/hconfd
867
	cp -f $< $@
868

    
869
nodist_sbin_SCRIPTS += src/ganeti-confd
870
endif
871

    
872
if ENABLE_MOND
873
nodist_sbin_SCRIPTS += src/ganeti-mond
874
endif
875

    
876
python_scripts = \
877
	tools/cfgshell \
878
	tools/cfgupgrade \
879
	tools/cfgupgrade12 \
880
	tools/cluster-merge \
881
	tools/confd-client \
882
	tools/fmtjson \
883
	tools/lvmstrap \
884
	tools/move-instance \
885
	tools/ovfconverter \
886
	tools/sanitize-config
887

    
888
dist_tools_SCRIPTS = \
889
	$(python_scripts) \
890
	tools/burnin \
891
	tools/kvm-console-wrapper \
892
	tools/master-ip-setup \
893
	tools/xen-console-wrapper
894

    
895
nodist_tools_python_scripts = \
896
	tools/node-cleanup
897

    
898
nodist_tools_SCRIPTS = \
899
	$(nodist_tools_python_scripts) \
900
	tools/users-setup \
901
	tools/vcluster-setup
902

    
903
pkglib_python_scripts = \
904
	daemons/import-export \
905
	tools/check-cert-expired
906

    
907
nodist_pkglib_python_scripts = \
908
	tools/ensure-dirs \
909
	tools/node-daemon-setup \
910
	tools/prepare-node-join
911

    
912
myexeclib_SCRIPTS = \
913
	daemons/daemon-util \
914
	tools/kvm-ifup \
915
	$(pkglib_python_scripts) \
916
	$(HS_MYEXECLIB_PROGS)
917

    
918
nodist_myexeclib_SCRIPTS = \
919
	$(nodist_pkglib_python_scripts)
920

    
921
EXTRA_DIST = \
922
	NEWS \
923
	UPGRADE \
924
	epydoc.conf.in \
925
	pylintrc \
926
	autotools/build-bash-completion \
927
	autotools/build-rpc \
928
	autotools/check-header \
929
	autotools/check-imports \
930
	autotools/check-man-dashes \
931
	autotools/check-man-references \
932
	autotools/check-man-warnings \
933
	autotools/check-news \
934
	autotools/check-python-code \
935
	autotools/check-tar \
936
	autotools/check-version \
937
	autotools/convert-constants \
938
	autotools/docpp \
939
	autotools/gen-py-coverage \
940
	autotools/sphinx-wrapper \
941
	autotools/testrunner \
942
	autotools/wrong-hardcoded-paths \
943
	$(RUN_IN_TEMPDIR) \
944
	daemons/daemon-util.in \
945
	daemons/ganeti-cleaner.in \
946
	$(pkglib_python_scripts) \
947
	devel/upload \
948
	devel/webserver \
949
	tools/kvm-ifup.in \
950
	tools/users-setup.in \
951
	tools/vcluster-setup.in \
952
	$(docinput) \
953
	doc/html \
954
	$(BUILT_EXAMPLES:%=%.in) \
955
	doc/examples/ganeti.default \
956
	doc/examples/ganeti.default-debug \
957
	doc/examples/hooks/ethers \
958
	doc/examples/gnt-debug/README \
959
	doc/examples/gnt-debug/delay0.json \
960
	doc/examples/gnt-debug/delay50.json \
961
	test/py/lockperf.py \
962
	test/py/testutils.py \
963
	test/py/mocks.py \
964
	$(dist_TESTS) \
965
	$(TEST_FILES) \
966
	man/footer.rst \
967
	$(manrst) \
968
	$(maninput) \
969
	qa/qa-sample.json \
970
	$(qa_scripts) \
971
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
972
	$(HS_PROG_SRCS) \
973
	src/lint-hints.hs \
974
	test/hs/cli-tests-defs.sh \
975
	test/hs/offline-test.sh \
976
	.ghci
977

    
978
man_MANS = \
979
	man/ganeti-cleaner.8 \
980
	man/ganeti-confd.8 \
981
	man/ganeti-listrunner.8 \
982
	man/ganeti-masterd.8 \
983
	man/ganeti-mond.8 \
984
	man/ganeti-noded.8 \
985
	man/ganeti-os-interface.7 \
986
	man/ganeti-extstorage-interface.7 \
987
	man/ganeti-rapi.8 \
988
	man/ganeti-watcher.8 \
989
	man/ganeti.7 \
990
	man/gnt-backup.8 \
991
	man/gnt-cluster.8 \
992
	man/gnt-debug.8 \
993
	man/gnt-group.8 \
994
	man/gnt-network.8 \
995
	man/gnt-instance.8 \
996
	man/gnt-job.8 \
997
	man/gnt-node.8 \
998
	man/gnt-os.8 \
999
	man/gnt-storage.8 \
1000
	man/hail.1 \
1001
	man/harep.1 \
1002
	man/hbal.1 \
1003
	man/hcheck.1 \
1004
	man/hinfo.1 \
1005
	man/hscan.1 \
1006
	man/hspace.1 \
1007
	man/hroller.1 \
1008
	man/htools.1 \
1009
	man/mon-collector.7
1010

    
1011
# Remove extensions from all filenames in man_MANS
1012
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
1013

    
1014
manrst = $(patsubst %,%.rst,$(mannoext))
1015
manhtml = $(patsubst %.rst,%.html,$(manrst))
1016
mangen = $(patsubst %.rst,%.gen,$(manrst))
1017
maninput = \
1018
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
1019
	$(patsubst %.html,%.html.in,$(manhtml)) \
1020
	$(mangen)
1021

    
1022
TEST_FILES = \
1023
	test/data/htools/clean-nonzero-score.data \
1024
	test/data/htools/common-suffix.data \
1025
	test/data/htools/empty-cluster.data \
1026
	test/data/htools/hail-alloc-drbd.json \
1027
	test/data/htools/hail-alloc-invalid-network.json \
1028
	test/data/htools/hail-alloc-invalid-twodisks.json \
1029
	test/data/htools/hail-alloc-restricted-network.json \
1030
	test/data/htools/hail-alloc-twodisks.json \
1031
	test/data/htools/hail-change-group.json \
1032
	test/data/htools/hail-invalid-reloc.json \
1033
	test/data/htools/hail-node-evac.json \
1034
	test/data/htools/hail-reloc-drbd.json \
1035
	test/data/htools/hbal-excl-tags.data \
1036
	test/data/htools/hbal-split-insts.data \
1037
	test/data/htools/hspace-tiered-dualspec.data \
1038
	test/data/htools/hspace-tiered-ipolicy.data \
1039
	test/data/htools/hspace-tiered.data \
1040
	test/data/htools/invalid-node.data \
1041
	test/data/htools/missing-resources.data \
1042
	test/data/htools/multiple-master.data \
1043
	test/data/htools/n1-failure.data \
1044
	test/data/htools/rapi/groups.json \
1045
	test/data/htools/rapi/info.json \
1046
	test/data/htools/rapi/instances.json \
1047
	test/data/htools/rapi/nodes.json \
1048
	test/data/htools/unique-reboot-order.data \
1049
	test/hs/shelltests/htools-balancing.test \
1050
	test/hs/shelltests/htools-basic.test \
1051
	test/hs/shelltests/htools-dynutil.test \
1052
	test/hs/shelltests/htools-excl.test \
1053
	test/hs/shelltests/htools-hail.test \
1054
	test/hs/shelltests/htools-hroller.test \
1055
	test/hs/shelltests/htools-hspace.test \
1056
	test/hs/shelltests/htools-invalid.test \
1057
	test/hs/shelltests/htools-multi-group.test \
1058
	test/hs/shelltests/htools-no-backend.test \
1059
	test/hs/shelltests/htools-rapi.test \
1060
	test/hs/shelltests/htools-single-group.test \
1061
	test/hs/shelltests/htools-text-backend.test \
1062
	test/hs/shelltests/htools-mon-collector.test \
1063
	test/data/bdev-drbd-8.0.txt \
1064
	test/data/bdev-drbd-8.3.txt \
1065
	test/data/bdev-drbd-disk.txt \
1066
	test/data/bdev-drbd-net-ip4.txt \
1067
	test/data/bdev-drbd-net-ip6.txt \
1068
	test/data/bdev-rbd/json_output_empty.txt \
1069
	test/data/bdev-rbd/json_output_extra_matches.txt \
1070
	test/data/bdev-rbd/json_output_no_matches.txt \
1071
	test/data/bdev-rbd/json_output_ok.txt \
1072
	test/data/bdev-rbd/plain_output_new_extra_matches.txt \
1073
	test/data/bdev-rbd/plain_output_new_no_matches.txt \
1074
	test/data/bdev-rbd/plain_output_new_ok.txt \
1075
	test/data/bdev-rbd/plain_output_old_empty.txt \
1076
	test/data/bdev-rbd/plain_output_old_extra_matches.txt \
1077
	test/data/bdev-rbd/plain_output_old_no_matches.txt \
1078
	test/data/bdev-rbd/plain_output_old_ok.txt \
1079
	test/data/bdev-rbd/output_invalid.txt \
1080
	test/data/cert1.pem \
1081
	test/data/cert2.pem \
1082
	test/data/cluster_config_2.7.json \
1083
	test/data/cluster_config_downgraded_2.7.json \
1084
	test/data/instance-minor-pairing.txt \
1085
	test/data/ip-addr-show-dummy0.txt \
1086
	test/data/ip-addr-show-lo-ipv4.txt \
1087
	test/data/ip-addr-show-lo-ipv6.txt \
1088
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
1089
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
1090
	test/data/ip-addr-show-lo-oneline.txt \
1091
	test/data/ip-addr-show-lo.txt \
1092
	test/data/kvm_0.12.5_help.txt \
1093
	test/data/kvm_0.15.90_help.txt \
1094
	test/data/kvm_0.9.1_help.txt \
1095
	test/data/kvm_0.9.1_help_boot_test.txt \
1096
	test/data/kvm_1.0_help.txt \
1097
	test/data/kvm_1.1.2_help.txt \
1098
	test/data/ovfdata/compr_disk.vmdk.gz \
1099
	test/data/ovfdata/config.ini \
1100
	test/data/ovfdata/corrupted_resources.ovf \
1101
	test/data/ovfdata/empty.ini \
1102
	test/data/ovfdata/empty.ovf \
1103
	test/data/ovfdata/ganeti.mf \
1104
	test/data/ovfdata/ganeti.ovf \
1105
	test/data/ovfdata/gzip_disk.ovf \
1106
	test/data/ovfdata/new_disk.vmdk \
1107
	test/data/ovfdata/no_disk.ini \
1108
	test/data/ovfdata/no_disk_in_ref.ovf \
1109
	test/data/ovfdata/no_os.ini \
1110
	test/data/ovfdata/no_ovf.ova \
1111
	test/data/ovfdata/other/rawdisk.raw \
1112
	test/data/ovfdata/ova.ova \
1113
	test/data/ovfdata/rawdisk.raw \
1114
	test/data/ovfdata/second_disk.vmdk \
1115
	test/data/ovfdata/unsafe_path.ini \
1116
	test/data/ovfdata/virtualbox.ovf \
1117
	test/data/ovfdata/wrong_config.ini \
1118
	test/data/ovfdata/wrong_extension.ovd \
1119
	test/data/ovfdata/wrong_manifest.mf \
1120
	test/data/ovfdata/wrong_manifest.ovf \
1121
	test/data/ovfdata/wrong_ova.ova \
1122
	test/data/ovfdata/wrong_xml.ovf \
1123
	test/data/proc_drbd8.txt \
1124
	test/data/proc_drbd80-emptyline.txt \
1125
	test/data/proc_drbd83.txt \
1126
	test/data/proc_drbd83_sync.txt \
1127
	test/data/proc_drbd83_sync_want.txt \
1128
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
1129
	test/data/qa-minimal-nodes-instances-only.json \
1130
	test/data/sys_drbd_usermode_helper.txt \
1131
	test/data/vgreduce-removemissing-2.02.02.txt \
1132
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
1133
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
1134
	test/data/vgs-missing-pvs-2.02.02.txt \
1135
	test/data/vgs-missing-pvs-2.02.66.txt \
1136
	test/data/xen-xm-info-4.0.1.txt \
1137
	test/data/xen-xm-list-4.0.1-dom0-only.txt \
1138
	test/data/xen-xm-list-4.0.1-four-instances.txt \
1139
	test/data/xen-xm-list-long-4.0.1.txt \
1140
	test/data/xen-xm-uptime-4.0.1.txt \
1141
	test/py/ganeti-cli.test \
1142
	test/py/gnt-cli.test \
1143
	test/py/import-export_unittest-helper
1144

    
1145
python_tests = \
1146
	doc/examples/rapi_testutils.py \
1147
	test/py/cfgupgrade_unittest.py \
1148
	test/py/docs_unittest.py \
1149
	test/py/ganeti.asyncnotifier_unittest.py \
1150
	test/py/ganeti.backend_unittest-runasroot.py \
1151
	test/py/ganeti.backend_unittest.py \
1152
	test/py/ganeti.bdev_unittest.py \
1153
	test/py/ganeti.cli_unittest.py \
1154
	test/py/ganeti.client.gnt_cluster_unittest.py \
1155
	test/py/ganeti.client.gnt_instance_unittest.py \
1156
	test/py/ganeti.client.gnt_job_unittest.py \
1157
	test/py/ganeti.cmdlib_unittest.py \
1158
	test/py/ganeti.compat_unittest.py \
1159
	test/py/ganeti.confd.client_unittest.py \
1160
	test/py/ganeti.config_unittest.py \
1161
	test/py/ganeti.constants_unittest.py \
1162
	test/py/ganeti.daemon_unittest.py \
1163
	test/py/ganeti.errors_unittest.py \
1164
	test/py/ganeti.hooks_unittest.py \
1165
	test/py/ganeti.ht_unittest.py \
1166
	test/py/ganeti.http_unittest.py \
1167
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
1168
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
1169
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1170
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1171
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
1172
	test/py/ganeti.hypervisor_unittest.py \
1173
	test/py/ganeti.impexpd_unittest.py \
1174
	test/py/ganeti.jqueue_unittest.py \
1175
	test/py/ganeti.jstore_unittest.py \
1176
	test/py/ganeti.locking_unittest.py \
1177
	test/py/ganeti.luxi_unittest.py \
1178
	test/py/ganeti.masterd.iallocator_unittest.py \
1179
	test/py/ganeti.masterd.instance_unittest.py \
1180
	test/py/ganeti.mcpu_unittest.py \
1181
	test/py/ganeti.netutils_unittest.py \
1182
	test/py/ganeti.objects_unittest.py \
1183
	test/py/ganeti.opcodes_unittest.py \
1184
	test/py/ganeti.outils_unittest.py \
1185
	test/py/ganeti.ovf_unittest.py \
1186
	test/py/ganeti.qlang_unittest.py \
1187
	test/py/ganeti.query_unittest.py \
1188
	test/py/ganeti.rapi.baserlib_unittest.py \
1189
	test/py/ganeti.rapi.client_unittest.py \
1190
	test/py/ganeti.rapi.resources_unittest.py \
1191
	test/py/ganeti.rapi.rlib2_unittest.py \
1192
	test/py/ganeti.rapi.testutils_unittest.py \
1193
	test/py/ganeti.rpc_unittest.py \
1194
	test/py/ganeti.runtime_unittest.py \
1195
	test/py/ganeti.serializer_unittest.py \
1196
	test/py/ganeti.server.rapi_unittest.py \
1197
	test/py/ganeti.ssconf_unittest.py \
1198
	test/py/ganeti.ssh_unittest.py \
1199
	test/py/ganeti.storage_unittest.py \
1200
	test/py/ganeti.tools.burnin_unittest.py \
1201
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1202
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1203
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1204
	test/py/ganeti.uidpool_unittest.py \
1205
	test/py/ganeti.utils.algo_unittest.py \
1206
	test/py/ganeti.utils.filelock_unittest.py \
1207
	test/py/ganeti.utils.hash_unittest.py \
1208
	test/py/ganeti.utils.io_unittest-runasroot.py \
1209
	test/py/ganeti.utils.io_unittest.py \
1210
	test/py/ganeti.utils.log_unittest.py \
1211
	test/py/ganeti.utils.lvm_unittest.py \
1212
	test/py/ganeti.utils.mlock_unittest.py \
1213
	test/py/ganeti.utils.nodesetup_unittest.py \
1214
	test/py/ganeti.utils.process_unittest.py \
1215
	test/py/ganeti.utils.retry_unittest.py \
1216
	test/py/ganeti.utils.text_unittest.py \
1217
	test/py/ganeti.utils.wrapper_unittest.py \
1218
	test/py/ganeti.utils.x509_unittest.py \
1219
	test/py/ganeti.utils_unittest.py \
1220
	test/py/ganeti.vcluster_unittest.py \
1221
	test/py/ganeti.workerpool_unittest.py \
1222
	test/py/pycurl_reset_unittest.py \
1223
	test/py/qa.qa_config_unittest.py \
1224
	test/py/tempfile_fork_unittest.py
1225

    
1226
haskell_tests = test/hs/htest
1227

    
1228
dist_TESTS = \
1229
	test/py/check-cert-expired_unittest.bash \
1230
	test/py/daemon-util_unittest.bash \
1231
	test/py/ganeti-cleaner_unittest.bash \
1232
	test/py/import-export_unittest.bash \
1233
	test/py/cli-test.bash \
1234
	test/py/bash_completion.bash \
1235
	$(python_tests)
1236

    
1237
nodist_TESTS =
1238
check_SCRIPTS =
1239

    
1240
if WANT_HSTESTS
1241
nodist_TESTS += $(haskell_tests)
1242
dist_TESTS += test/hs/offline-test.sh
1243
check_SCRIPTS += \
1244
	test/hs/hpc-htools \
1245
	test/hs/hpc-mon-collector \
1246
	$(HS_BUILT_TEST_HELPERS)
1247
endif
1248

    
1249
TESTS = $(dist_TESTS) $(nodist_TESTS)
1250

    
1251
# Environment for all tests
1252
PLAIN_TESTS_ENVIRONMENT = \
1253
	PYTHONPATH=. \
1254
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1255
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1256
	$(RUN_IN_TEMPDIR)
1257

    
1258
# Environment for tests run by automake
1259
TESTS_ENVIRONMENT = \
1260
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1261

    
1262
all_python_code = \
1263
	$(dist_sbin_SCRIPTS) \
1264
	$(python_scripts) \
1265
	$(pkglib_python_scripts) \
1266
	$(nodist_pkglib_python_scripts) \
1267
	$(nodist_tools_python_scripts) \
1268
	$(python_tests) \
1269
	$(pkgpython_PYTHON) \
1270
	$(client_PYTHON) \
1271
	$(cmdlib_PYTHON) \
1272
	$(hypervisor_PYTHON) \
1273
	$(rapi_PYTHON) \
1274
	$(server_PYTHON) \
1275
	$(pytools_PYTHON) \
1276
	$(http_PYTHON) \
1277
	$(confd_PYTHON) \
1278
	$(masterd_PYTHON) \
1279
	$(impexpd_PYTHON) \
1280
	$(utils_PYTHON) \
1281
	$(watcher_PYTHON) \
1282
	$(noinst_PYTHON) \
1283
	$(qa_scripts)
1284

    
1285
srclink_files = \
1286
	man/footer.rst \
1287
	test/py/check-cert-expired_unittest.bash \
1288
	test/py/daemon-util_unittest.bash \
1289
	test/py/ganeti-cleaner_unittest.bash \
1290
	test/py/import-export_unittest.bash \
1291
	test/py/cli-test.bash \
1292
	test/py/bash_completion.bash \
1293
	test/hs/offline-test.sh \
1294
	test/hs/cli-tests-defs.sh \
1295
	$(all_python_code) \
1296
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1297
	$(docinput)
1298

    
1299
check_python_code = \
1300
	$(BUILD_BASH_COMPLETION) \
1301
	$(CHECK_IMPORTS) \
1302
	$(CHECK_HEADER) \
1303
	$(DOCPP) \
1304
	$(all_python_code)
1305

    
1306
lint_python_code = \
1307
	ganeti \
1308
	ganeti/http/server.py \
1309
	$(dist_sbin_SCRIPTS) \
1310
	$(python_scripts) \
1311
	$(pkglib_python_scripts) \
1312
	$(BUILD_BASH_COMPLETION) \
1313
	$(CHECK_IMPORTS) \
1314
	$(CHECK_HEADER) \
1315
	$(DOCPP) \
1316
	$(PYTHON_BOOTSTRAP)
1317

    
1318
standalone_python_modules = \
1319
	lib/rapi/client.py \
1320
	tools/ganeti-listrunner
1321

    
1322
pep8_python_code = \
1323
	ganeti \
1324
	ganeti/http/server.py \
1325
	$(dist_sbin_SCRIPTS) \
1326
	$(python_scripts) \
1327
	$(pkglib_python_scripts) \
1328
	$(BUILD_BASH_COMPLETION) \
1329
	$(CHECK_HEADER) \
1330
	$(DOCPP) \
1331
	$(PYTHON_BOOTSTRAP) \
1332
	qa
1333

    
1334
test/py/daemon-util_unittest.bash: daemons/daemon-util
1335

    
1336
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1337

    
1338
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1339

    
1340
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1341
	sed -f $(REPLACE_VARS_SED) < $< > $@
1342
	chmod +x $@
1343

    
1344
tools/users-setup: tools/users-setup.in $(REPLACE_VARS_SED)
1345
	sed -f $(REPLACE_VARS_SED) < $< > $@
1346
	chmod +x $@
1347

    
1348
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1349
	sed -f $(REPLACE_VARS_SED) < $< > $@
1350
	chmod +x $@
1351

    
1352
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1353
	sed -f $(REPLACE_VARS_SED) < $< > $@
1354
	chmod +x $@
1355

    
1356
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1357
	sed -f $(REPLACE_VARS_SED) < $< > $@
1358

    
1359
doc/examples/bash_completion: BC_ARGS = --compact
1360
doc/examples/bash_completion-debug: BC_ARGS =
1361

    
1362
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1363
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1364
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1365
	daemons/ganeti-cleaner \
1366
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1367
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1368
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1369

    
1370
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1371
	lib/build/shell_example_lexer.py \
1372
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1373
	@echo "Checking $< for hardcoded paths..."
1374
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1375
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1376
	  exit 1; \
1377
	fi
1378
	set -e ; \
1379
	trap 'echo auto-removing $@; rm $@' EXIT; \
1380
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1381
	$(CHECK_MAN_REFERENCES) $@; \
1382
	trap - EXIT
1383

    
1384
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1385
	@test -n "$(PANDOC)" || \
1386
	  { echo 'pandoc' not found during configure; exit 1; }
1387
	set -o pipefail -e; \
1388
	trap 'echo auto-removing $@; rm $@' EXIT; \
1389
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1390
	  sed -e 's/\\@/@/g' > $@; \
1391
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1392
	$(CHECK_MAN_DASHES) $@; \
1393
	trap - EXIT
1394

    
1395
man/%.html.in: man/%.gen man/footer.rst
1396
	@test -n "$(PANDOC)" || \
1397
	  { echo 'pandoc' not found during configure; exit 1; }
1398
	set -o pipefail ; \
1399
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1400
	  sed -e 's/\\@/@/g' > $@
1401

    
1402
man/%: man/%.in  $(REPLACE_VARS_SED)
1403
	sed -f $(REPLACE_VARS_SED) < $< > $@
1404

    
1405
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1406
	sed -f $(REPLACE_VARS_SED) < $< > $@
1407

    
1408
vcs-version:
1409
	if test -d .git; then \
1410
	  git describe > $@; \
1411
	elif test ! -f $@ ; then \
1412
	  echo "Cannot auto-generate $@ file"; exit 1; \
1413
	fi
1414

    
1415
.PHONY: clean-vcs-version
1416
clean-vcs-version:
1417
	rm -f vcs-version
1418

    
1419
.PHONY: regen-vcs-version
1420
regen-vcs-version:
1421
	@set -e; \
1422
	cd $(srcdir); \
1423
	if test -d .git; then \
1424
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1425
	  git describe > $$T; \
1426
	  if ! cmp --quiet $$T vcs-version; then \
1427
	    mv $$T vcs-version; \
1428
	  fi; \
1429
	fi
1430

    
1431
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1432
	vcs-version $(built_base_sources)
1433
	set -e; \
1434
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1435
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1436

    
1437
src/Ganeti/Constants.hs: src/Ganeti/Constants.hs.in \
1438
	lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1439
	lib/jstore.py $(RUN_IN_TEMPDIR) \
1440
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1441
	| lib/_vcsversion.py
1442
	set -e; \
1443
	{ cat $< ; \
1444
	  PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
1445
	} > $@
1446

    
1447
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1448
	hsc2hs -o $@ $<
1449

    
1450
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1451
	$(built_base_sources)
1452
	set -e; \
1453
	{ cat $< ; \
1454
	  echo ; \
1455
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1456
	    echo "import $$name ()" ; \
1457
	  done ; \
1458
	} > $@
1459

    
1460
lib/_autoconf.py: Makefile | stamp-directories
1461
	set -e; \
1462
	{ echo '# This file is automatically generated, do not edit!'; \
1463
	  echo '#'; \
1464
	  echo ''; \
1465
	  echo '"""Build-time configuration for Ganeti.'; \
1466
	  echo '';\
1467
	  echo 'This file is autogenerated by the build process.'; \
1468
	  echo 'For any changes you need to re-run ./configure (and'; \
1469
	  echo 'not edit by hand).'; \
1470
	  echo ''; \
1471
	  echo '"""'; \
1472
	  echo ''; \
1473
	  echo '# pylint: disable=C0301,C0324'; \
1474
	  echo '# because this is autogenerated, we do not want'; \
1475
	  echo '# style warnings' ; \
1476
	  echo ''; \
1477
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1478
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1479
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1480
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1481
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1482
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1483
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1484
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1485
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1486
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1487
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1488
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1489
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1490
	  echo "ES_SEARCH_PATH = [$(ES_SEARCH_PATH)]"; \
1491
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1492
	  echo "XEN_CONFIG_DIR = '$(XEN_CONFIG_DIR)'"; \
1493
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1494
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1495
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1496
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1497
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1498
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1499
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1500
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1501
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1502
	  echo "IP_PATH = '$(IP_PATH)'"; \
1503
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1504
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1505
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1506
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1507
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1508
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1509
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1510
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1511
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1512
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1513
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1514
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1515
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1516
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1517
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1518
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1519
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1520
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1521
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1522
	  echo "NODED_USER = '$(NODED_USER)'"; \
1523
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1524
	  echo "MOND_USER = '$(MOND_USER)'"; \
1525
	  echo "MOND_GROUP = '$(MOND_GROUP)'"; \
1526
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1527
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1528
	  echo "HTOOLS = True"; \
1529
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1530
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1531
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1532
	  echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1533
	  echo "ENABLE_MOND = $(ENABLE_MOND)"; \
1534
## Write dictionary with man page name as the key and the section number as the
1535
## value
1536
	  echo "MAN_PAGES = {"; \
1537
	  for i in $(notdir $(man_MANS)); do \
1538
	    echo "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/  "\1": \2,/g'; \
1539
	  done; \
1540
	  echo "}"; \
1541
	} > $@
1542

    
1543
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1544
	set -e; \
1545
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1546
	{ echo '# This file is automatically generated, do not edit!'; \
1547
	  echo '#'; \
1548
	  echo ''; \
1549
	  echo '"""Build-time VCS version number for Ganeti.'; \
1550
	  echo '';\
1551
	  echo 'This file is autogenerated by the build process.'; \
1552
	  echo 'For any changes you need to re-run ./configure (and'; \
1553
	  echo 'not edit by hand).'; \
1554
	  echo ''; \
1555
	  echo '"""'; \
1556
	  echo ''; \
1557
	  echo '# pylint: disable=C0301,C0324'; \
1558
	  echo '# because this is autogenerated, we do not want'; \
1559
	  echo '# style warnings' ; \
1560
	  echo ''; \
1561
	  echo "VCS_VERSION = '$$VCSVER'"; \
1562
	} > $@
1563

    
1564
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1565
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1566

    
1567
$(SHELL_ENV_INIT): Makefile stamp-directories
1568
	set -e; \
1569
	{ echo '# Allow overriding for tests'; \
1570
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1571
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1572
	  echo; \
1573
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1574
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1575
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1576
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1577
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1578
	} > $@
1579

    
1580
## Writes sed script to replace placeholders with build-time values. The
1581
## additional quotes after the first @ sign are necessary to stop configure
1582
## from replacing those values as well.
1583
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1584
	set -e; \
1585
	{ echo 's#@''PREFIX@#$(prefix)#g'; \
1586
	  echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1587
	  echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1588
	  echo 's#@''BINDIR@#$(bindir)#g'; \
1589
	  echo 's#@''SBINDIR@#$(sbindir)#g'; \
1590
	  echo 's#@''LIBDIR@#$(libdir)#g'; \
1591
	  echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1592
	  echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1593
	  echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1594
	  echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1595
	  echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1596
	  echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1597
	  echo 's#@''RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1598
	  echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1599
	  echo 's#@''PKGLIBDIR@#$(pkglibdir)#g'; \
1600
	  echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1601
	  echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1602
	  echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1603
	  echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1604
	  echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1605
	  echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1606
	  echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1607
	  echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1608
	  echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1609
	  echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1610
	  echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1611
	  echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1612
	  echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1613
	  echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1614
	  echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1615
	  echo; \
1616
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1617
	  echo '  r $(SHELL_ENV_INIT)'; \
1618
	  echo '  d'; \
1619
	  echo '}'; \
1620
	} > $@
1621

    
1622
# Using deferred evaluation
1623
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1624
daemons/ganeti-watcher: MODULE = ganeti.watcher
1625
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1626
tools/burnin: MODULE = ganeti.tools.burnin
1627
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1628
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1629
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1630
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1631
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1632

    
1633
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1634
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1635
	set -e; \
1636
	{ echo '#!/usr/bin/python'; \
1637
	  echo '# This file is automatically generated, do not edit!'; \
1638
	  echo "# Edit $(MODULE) instead."; \
1639
	  echo; \
1640
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1641
	  echo; \
1642
	  echo '# pylint: disable=C0103'; \
1643
	  echo '# C0103: Invalid name'; \
1644
	  echo; \
1645
	  echo 'import sys'; \
1646
	  echo 'import $(MODULE) as main'; \
1647
	  echo; \
1648
	  echo '# Temporarily alias commands until bash completion'; \
1649
	  echo '# generator is changed'; \
1650
	  echo 'if hasattr(main, "commands"):'; \
1651
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1652
	  echo 'if hasattr(main, "aliases"):'; \
1653
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1654
	  echo; \
1655
	  echo 'if __name__ == "__main__":'; \
1656
	  echo '  sys.exit(main.Main())'; \
1657
	} > $@
1658
	chmod u+x $@
1659

    
1660
$(HS_BUILT_TEST_HELPERS): Makefile
1661
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1662
	set -e; \
1663
	{ echo '#!/bin/sh'; \
1664
	  echo '# This file is automatically generated, do not edit!'; \
1665
	  echo "# Edit Makefile.am instead."; \
1666
	  echo; \
1667
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
1668
	} > $@
1669
	chmod u+x $@
1670

    
1671
stamp-directories: Makefile
1672
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1673
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1674
	touch $@
1675

    
1676
# We need to create symlinks because "make distcheck" will not install Python
1677
# files when building.
1678
stamp-srclinks: Makefile | stamp-directories
1679
	set -e; \
1680
	for i in $(srclink_files); do \
1681
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1682
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1683
	  fi; \
1684
	done
1685
	touch $@
1686

    
1687
.PHONY: ganeti
1688
ganeti:
1689
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1690

    
1691
.PHONY: check-dirs
1692
check-dirs: $(GENERATED_FILES)
1693
	@set -e; \
1694
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1695
	  error=; \
1696
	  while read dir; do \
1697
	    case "$$dir" in \
1698
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1699
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1700
	    esac; \
1701
	  done; \
1702
	  for dir in $(DIRS); do \
1703
	    if ! test -d "$$dir"; then \
1704
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1705
	      error=1; \
1706
	    fi \
1707
	  done; \
1708
	  test -z "$$error"; \
1709
	}
1710

    
1711
.PHONY: check-local
1712
check-local: check-dirs $(GENERATED_FILES)
1713
	$(CHECK_PYTHON_CODE) $(check_python_code)
1714
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1715
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1716
	RELEASE=$(PACKAGE_VERSION) $(CHECK_NEWS) < $(top_srcdir)/NEWS
1717
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1718
	@expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1719
	error= ; \
1720
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1721
	  echo "Incorrect version in README, expected $$expver" >&2; \
1722
	  error=1; \
1723
	fi; \
1724
	for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1725
	    doc/security.rst; do \
1726
	  if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1727
	    "Documents Ganeti version $$expver"; then \
1728
	    echo "Incorrect version in $$file, expected $$expver" >&2; \
1729
	    error=1; \
1730
	  fi; \
1731
	done; \
1732
	if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1733
	  echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
1734
	  error=1; \
1735
	fi; \
1736
	if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
1737
	  ".. Last updated for Ganeti $$expver"; then \
1738
	  echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
1739
	  error=1; \
1740
	fi; \
1741
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
1742
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
1743
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
1744
	    error=1; \
1745
	  fi; \
1746
	done; \
1747
	test -z "$$error"
1748

    
1749
.PHONY: hs-tests
1750
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1751
	@rm -f htest.tix
1752
	./test/hs/htest
1753

    
1754
.PHONY: hs-shell
1755
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
1756
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1757
	HBINARY="./test/hs/hpc-htools" ./test/hs/offline-test.sh
1758

    
1759
.PHONY: hs-check
1760
hs-check: hs-tests hs-shell
1761

    
1762
# E111: indentation is not a multiple of four
1763
# E121: continuation line indentation is not a multiple of four
1764
#       (since our indent level is not 4)
1765
# E125: continuation line does not distinguish itself from next logical line
1766
#       (since our indent level is not 4)
1767
# E127: continuation line over-indented for visual indent
1768
#       (since our indent level is not 4)
1769
# note: do NOT add E128 here; it's a valid style error in most cases!
1770
# I've seen real errors, but also some cases were we indent wrongly
1771
# due to line length; try to rework the cases where it is triggered,
1772
# instead of silencing it
1773
# E261: at least two spaces before inline comment
1774
# E501: line too long (80 characters)
1775
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1776

    
1777
# For excluding pep8 expects filenames only, not whole paths
1778
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1779

    
1780
LINT_TARGETS = pylint pylint-qa
1781
if HAS_PEP8
1782
LINT_TARGETS += pep8
1783
endif
1784
if HAS_HLINT
1785
LINT_TARGETS += hlint
1786
endif
1787

    
1788
.PHONY: lint
1789
lint: $(LINT_TARGETS)
1790

    
1791
.PHONY: pylint
1792
pylint: $(GENERATED_FILES)
1793
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1794
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1795

    
1796
.PHONY: pylint-qa
1797
pylint-qa: $(GENERATED_FILES)
1798
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1799
	cd $(top_srcdir)/qa && \
1800
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1801
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1802

    
1803
.PHONY: pep8
1804
pep8: $(GENERATED_FILES)
1805
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1806
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1807
	  --repeat $(pep8_python_code)
1808

    
1809
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1810
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
1811
.PHONY: hlint
1812
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
1813
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1814
	@rm -f doc/hs-lint.html
1815
	if tty -s; then C="-c"; else C=""; fi; \
1816
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1817
	  --ignore "Use first" \
1818
	  --ignore "Use &&&" \
1819
	  --ignore "Use void" \
1820
	  --ignore "Reduce duplication" \
1821
	  --hint src/lint-hints \
1822
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1823
	@if [ ! -f doc/hs-lint.html ]; then \
1824
	  echo "All good" > doc/hs-lint.html; \
1825
	fi
1826

    
1827
# a dist hook rule for updating the vcs-version file; this is
1828
# hardcoded due to where it needs to build the file...
1829
dist-hook:
1830
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1831
	rm -f $(top_distdir)/vcs-version
1832
	cp -p $(srcdir)/vcs-version $(top_distdir)
1833

    
1834
# a distcheck hook rule for catching revision control directories
1835
distcheck-hook:
1836
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1837
	  echo "Found revision control files in final archive." 1>&2; \
1838
	  exit 1; \
1839
	fi
1840
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1841
	  echo "Found Python byte code in final archive." 1>&2; \
1842
	  exit 1; \
1843
	fi
1844
	if find $(top_distdir) -name '*~' | grep .; then \
1845
	  echo "Found backup files in final archive." 1>&2; \
1846
	  exit 1; \
1847
	fi
1848
# Empty files or directories should not be distributed. They can cause
1849
# unnecessary warnings for packagers. Directories used by automake during
1850
# distcheck must be excluded.
1851
	if find $(top_distdir) -empty -and -not \( \
1852
	    -path $(top_distdir)/_build -or \
1853
	    -path $(top_distdir)/_inst \) | grep .; then \
1854
	  echo "Found empty files or directories in final archive." 1>&2; \
1855
	  exit 1; \
1856
	fi
1857
	if test -e $(top_distdir)/doc/man-html; then \
1858
	  echo "Found documentation including man pages in final archive" >&2; \
1859
	  exit 1; \
1860
	fi
1861

    
1862
# Backwards compatible distcheck-release target
1863
distcheck-release: distcheck
1864

    
1865
distrebuildcheck: dist
1866
	set -e; \
1867
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1868
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1869
	cd $$builddir; \
1870
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1871
	cd $(distdir); \
1872
	./configure; \
1873
	$(MAKE) maintainer-clean; \
1874
	cp $(abs_srcdir)/vcs-version .; \
1875
	./configure; \
1876
	$(MAKE) $(AM_MAKEFLAGS)
1877

    
1878
dist-release: dist
1879
	set -e; \
1880
	for i in $(DIST_ARCHIVES); do \
1881
	  echo -n "Checking $$i ... "; \
1882
	  autotools/check-tar < $$i; \
1883
	  echo OK; \
1884
	done
1885

    
1886
install-exec-local:
1887
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1888
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1889
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1890

    
1891
.PHONY: apidoc
1892
if WANT_HSAPIDOC
1893
apidoc: py-apidoc hs-apidoc
1894
else
1895
apidoc: py-apidoc
1896
endif
1897

    
1898
.PHONY: py-apidoc
1899
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1900
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
1901
	$(RUN_IN_TEMPDIR) epydoc -v \
1902
	  --conf $(CURDIR)/epydoc.conf \
1903
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
1904

    
1905
.PHONY: hs-apidoc
1906
hs-apidoc: $(APIDOC_HS_DIR)/index.html
1907

    
1908
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
1909
	@test -n "$(HSCOLOUR)" || \
1910
	    { echo 'HsColour' not found during configure; exit 1; }
1911
	@test -n "$(HADDOCK)" || \
1912
	    { echo 'haddock' not found during configure; exit 1; }
1913
	rm -rf $(APIDOC_HS_DIR)/*
1914
	for i in $(ALL_APIDOC_HS_DIRS); do \
1915
	  @mkdir_p@ $$i; \
1916
	  $(HSCOLOUR) -print-css > $$i/hscolour.css; \
1917
	done
1918
	set -e ; \
1919
	export LC_ALL=en_US.UTF-8; \
1920
	OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
1921
	if [ "$(HS_PARALLEL3)" ]; \
1922
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
1923
	fi; \
1924
	if [ "$(HS_REGEX_PCRE)" ]; \
1925
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
1926
	fi; \
1927
	for file in $(HS_LIBTESTBUILT_SRCS); do \
1928
	  f_nosrc=$${file##src/}; \
1929
	  f_notst=$${f_nosrc##test/hs/}; \
1930
	  f_html=$${f_notst%%.hs}.html; \
1931
	  $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
1932
	done ; \
1933
	$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1934
	  -t ganeti -p src/haddock-prologue \
1935
	  --source-module="%{MODULE/.//}.html" \
1936
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
1937
	  $$OPTGHC \
1938
	  $(HS_LIBTESTBUILT_SRCS)
1939

    
1940
.PHONY: TAGS
1941
TAGS: $(GENERATED_FILES)
1942
	rm -f TAGS
1943
	$(GHC) -e ":etags" -v0 \
1944
	  $(filter-out -O -Werror,$(HFLAGS)) \
1945
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
1946
	  $(HS_LIBTEST_SRCS)
1947
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1948
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1949
	  -path './qa/*.py' | \
1950
	  etags -l python -a -
1951

    
1952
.PHONY: coverage
1953
if WANT_HTOOLS
1954
coverage: py-coverage hs-coverage
1955
else
1956
coverage: py-coverage
1957
endif
1958

    
1959
.PHONY: py-coverage
1960
py-coverage: $(GENERATED_FILES) $(python_tests)
1961
	@test -n "$(PYCOVERAGE)" || \
1962
	    { echo 'python-coverage' not found during configure; exit 1; }
1963
	set -e; \
1964
	COVERAGE=$(PYCOVERAGE) \
1965
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1966
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1967
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1968
	$(PLAIN_TESTS_ENVIRONMENT) \
1969
	$(abs_top_srcdir)/autotools/gen-py-coverage \
1970
	$(python_tests)
1971

    
1972
.PHONY: hs-coverage
1973
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
1974
	rm -f *.tix
1975
	$(MAKE) $(AM_MAKEFLAGS) hs-check
1976
	@mkdir_p@ $(COVERAGE_HS_DIR)
1977
	hpc sum --union $(HPCEXCL) \
1978
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
1979
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
1980
	hpc report coverage-hs.tix
1981
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
1982

    
1983
# Special "kind-of-QA" target for htools, needs special setup (all
1984
# tools compiled with -fhpc)
1985
.PHONY: live-test
1986
live-test: all
1987
	set -e ; \
1988
	cd src; \
1989
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
1990
	rm -f *.tix *.mix; \
1991
	./live-test.sh; \
1992
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
1993
	  --output=live-test.tix ; \
1994
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1995
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1996
	  --srcdir=.. $(HPCEXCL) ; \
1997
	hpc report --srcdir=.. live-test $(HPCEXCL)
1998

    
1999
commit-check: distcheck lint apidoc
2000

    
2001
.PHONY: gitignore-check
2002
gitignore-check:
2003
	@if [ -n "`git status --short`" ]; then \
2004
	  echo "Git status is not clean!" 1>&2 ; \
2005
	  git status --short; \
2006
	  exit 1; \
2007
	fi
2008

    
2009
# target to rebuild all man pages (both groff and html output)
2010
.PHONY: man
2011
man: $(man_MANS) $(manhtml)
2012

    
2013
# Target that builds all binaries (including those that are not
2014
# rebuilt except when running the tests)
2015
.PHONY: really-all
2016
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
2017

    
2018
# we don't need the ancient implicit rules:
2019
%: %,v
2020
%: RCS/%,v
2021
%: RCS/%
2022
%: s.%
2023
%: SCCS/s.%
2024

    
2025
-include ./Makefile.local
2026

    
2027
# vim: set noet :