Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 580b1fdd

History | View | Annotate | Download (63.4 kB)

1
# Ganeti makefile
2
# - Indent with tabs only.
3
# - Keep files sorted; one line per file.
4
# - Directories in lib/ must have their own *dir variable (see hypervisor).
5
# - All directories must be listed DIRS.
6
# - Use autogen.sh to generate Makefile.in and configure script.
7

    
8
# Automake doesn't export these variables before version 1.10.
9
abs_top_builddir = @abs_top_builddir@
10
abs_top_srcdir = @abs_top_srcdir@
11

    
12
# Helper values for calling builtin functions
13
empty :=
14
space := $(empty) $(empty)
15
comma := ,
16

    
17
# Helper function to strip src/ and test/hs/ from a list
18
strip_hsroot = $(patsubst src/%,%,$(patsubst test/hs/%,%,$(1)))
19

    
20
# Use bash in order to be able to use pipefail
21
SHELL=/bin/bash
22

    
23
# Enable colors in shelltest
24
SHELLTESTARGS = "-c"
25

    
26
ACLOCAL_AMFLAGS = -I autotools
27
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
28
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
29
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
30
CHECK_HEADER = $(top_srcdir)/autotools/check-header
31
CHECK_MAN_DASHES = $(top_srcdir)/autotools/check-man-dashes
32
CHECK_MAN_REFERENCES = $(top_srcdir)/autotools/check-man-references
33
CHECK_MAN_WARNINGS = $(top_srcdir)/autotools/check-man-warnings
34
CHECK_VERSION = $(top_srcdir)/autotools/check-version
35
CHECK_NEWS = $(top_srcdir)/autotools/check-news
36
CHECK_IMPORTS = $(top_srcdir)/autotools/check-imports
37
DOCPP = $(top_srcdir)/autotools/docpp
38
REPLACE_VARS_SED = autotools/replace_vars.sed
39
CONVERT_CONSTANTS = $(top_srcdir)/autotools/convert-constants
40
BUILD_RPC = $(top_srcdir)/autotools/build-rpc
41
SHELL_ENV_INIT = autotools/shell-env-init
42

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

    
63
# Delete output file if an error occurred while building it
64
.DELETE_ON_ERROR:
65

    
66
HS_DIRS = \
67
	src \
68
	src/Ganeti \
69
	src/Ganeti/Confd \
70
	src/Ganeti/Curl \
71
	src/Ganeti/Cpu \
72
	src/Ganeti/DataCollectors \
73
	src/Ganeti/Hs2Py \
74
	src/Ganeti/HTools \
75
	src/Ganeti/HTools/Backend \
76
	src/Ganeti/HTools/Program \
77
	src/Ganeti/Hypervisor \
78
	src/Ganeti/Hypervisor/Xen \
79
	src/Ganeti/Monitoring \
80
	src/Ganeti/Query \
81
	src/Ganeti/Storage \
82
	src/Ganeti/Storage/Diskstats \
83
	src/Ganeti/Storage/Drbd \
84
	src/Ganeti/Storage/Lvm \
85
	test/hs \
86
	test/hs/Test \
87
	test/hs/Test/Ganeti \
88
	test/hs/Test/Ganeti/Storage \
89
	test/hs/Test/Ganeti/Storage/Diskstats \
90
	test/hs/Test/Ganeti/Storage/Drbd \
91
	test/hs/Test/Ganeti/Storage/Lvm \
92
	test/hs/Test/Ganeti/Confd \
93
	test/hs/Test/Ganeti/HTools \
94
	test/hs/Test/Ganeti/HTools/Backend \
95
	test/hs/Test/Ganeti/Hypervisor \
96
	test/hs/Test/Ganeti/Hypervisor/Xen \
97
	test/hs/Test/Ganeti/Query
98

    
99
# Haskell directories without the roots (src, test/hs)
100
HS_DIRS_NOROOT = $(filter-out src,$(filter-out test/hs,$(HS_DIRS)))
101

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

    
142
ALL_APIDOC_HS_DIRS = \
143
	$(APIDOC_HS_DIR) \
144
	$(patsubst %,$(APIDOC_HS_DIR)/%,$(call strip_hsroot,$(HS_DIRS_NOROOT)))
145

    
146
BUILDTIME_DIR_AUTOCREATE = \
147
	scripts \
148
	$(APIDOC_DIR) \
149
	$(ALL_APIDOC_HS_DIRS) \
150
	$(APIDOC_PY_DIR) \
151
	$(COVERAGE_DIR) \
152
	$(COVERAGE_HS_DIR) \
153
	$(COVERAGE_PY_DIR) \
154
	.hpc
155

    
156
BUILDTIME_DIRS = \
157
	$(BUILDTIME_DIR_AUTOCREATE) \
158
	doc/html \
159
	doc/man-html
160

    
161
DIRCHECK_EXCLUDE = \
162
	$(BUILDTIME_DIRS) \
163
	ganeti-[0-9]*.[0-9]*.[0-9]* \
164
	doc/html/_* \
165
	doc/man-html/_* \
166
	autom4te.cache
167

    
168
# some helper vars
169
COVERAGE_DIR = doc/coverage
170
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
171
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
172
APIDOC_DIR = doc/api
173
APIDOC_PY_DIR = $(APIDOC_DIR)/py
174
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
175

    
176
MAINTAINERCLEANFILES = \
177
	$(maninput) \
178
	doc/install-quick.rst \
179
	doc/news.rst \
180
	doc/upgrade.rst \
181
	vcs-version
182

    
183
maintainer-clean-local:
184
	rm -rf $(BUILDTIME_DIRS)
185

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

    
222
GENERATED_FILES = \
223
	$(built_base_sources) \
224
	$(BUILT_PYTHON_SOURCES) \
225
	$(PYTHON_BOOTSTRAP)
226

    
227
HS_GENERATED_FILES =
228
if WANT_HTOOLS
229
HS_GENERATED_FILES += $(HS_PROGS)
230
if ENABLE_CONFD
231
HS_GENERATED_FILES += src/hconfd src/ganeti-confd src/hluxid src/ganeti-luxid
232
endif
233

    
234
if ENABLE_MOND
235
HS_GENERATED_FILES += src/ganeti-mond
236
endif
237
endif
238

    
239
built_base_sources = \
240
	stamp-directories \
241
	stamp-srclinks
242

    
243
built_python_base_sources = \
244
	lib/_autoconf.py \
245
	lib/_vcsversion.py \
246
	lib/opcodes.py
247

    
248
BUILT_PYTHON_SOURCES = \
249
	$(built_python_base_sources) \
250
	lib/_generated_rpc.py
251

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

    
256
# these are all built from the underlying %.in sources
257
BUILT_EXAMPLES = \
258
	doc/examples/ganeti-kvm-poweroff.initd \
259
	doc/examples/ganeti.cron \
260
	doc/examples/ganeti.initd \
261
	doc/examples/ganeti.logrotate \
262
	doc/examples/ganeti-master-role.ocf \
263
	doc/examples/ganeti-node-role.ocf \
264
	doc/examples/gnt-config-backup \
265
	doc/examples/hooks/ipsec
266

    
267
nodist_pkgpython_PYTHON = \
268
	$(BUILT_PYTHON_SOURCES)
269

    
270
noinst_PYTHON = \
271
	lib/build/__init__.py \
272
	lib/build/shell_example_lexer.py \
273
	lib/build/sphinx_ext.py
274

    
275
pkgpython_PYTHON = \
276
	lib/__init__.py \
277
	lib/asyncnotifier.py \
278
	lib/backend.py \
279
	lib/bootstrap.py \
280
	lib/cli.py \
281
	lib/compat.py \
282
	lib/config.py \
283
	lib/constants.py \
284
	lib/daemon.py \
285
	lib/errors.py \
286
	lib/hooksmaster.py \
287
	lib/ht.py \
288
	lib/jqueue.py \
289
	lib/jstore.py \
290
	lib/locking.py \
291
	lib/luxi.py \
292
	lib/mcpu.py \
293
	lib/netutils.py \
294
	lib/objects.py \
295
	lib/opcodes_base.py \
296
	lib/outils.py \
297
	lib/ovf.py \
298
	lib/pathutils.py \
299
	lib/qlang.py \
300
	lib/query.py \
301
	lib/rpc.py \
302
	lib/rpc_defs.py \
303
	lib/runtime.py \
304
	lib/serializer.py \
305
	lib/ssconf.py \
306
	lib/ssh.py \
307
	lib/uidpool.py \
308
	lib/vcluster.py \
309
	lib/network.py \
310
	lib/workerpool.py
311

    
312
client_PYTHON = \
313
	lib/client/__init__.py \
314
	lib/client/gnt_backup.py \
315
	lib/client/gnt_cluster.py \
316
	lib/client/gnt_debug.py \
317
	lib/client/gnt_group.py \
318
	lib/client/gnt_instance.py \
319
	lib/client/gnt_job.py \
320
	lib/client/gnt_node.py \
321
	lib/client/gnt_network.py \
322
	lib/client/gnt_os.py \
323
	lib/client/gnt_storage.py
324

    
325
cmdlib_PYTHON = \
326
	lib/cmdlib/__init__.py \
327
	lib/cmdlib/backup.py \
328
	lib/cmdlib/base.py \
329
	lib/cmdlib/cluster.py \
330
	lib/cmdlib/common.py \
331
	lib/cmdlib/group.py \
332
	lib/cmdlib/instance.py \
333
	lib/cmdlib/instance_migration.py \
334
	lib/cmdlib/instance_operation.py \
335
	lib/cmdlib/instance_query.py \
336
	lib/cmdlib/instance_storage.py \
337
	lib/cmdlib/instance_utils.py \
338
	lib/cmdlib/misc.py \
339
	lib/cmdlib/network.py \
340
	lib/cmdlib/node.py \
341
	lib/cmdlib/operating_system.py \
342
	lib/cmdlib/query.py \
343
	lib/cmdlib/tags.py \
344
	lib/cmdlib/test.py
345

    
346
hypervisor_PYTHON = \
347
	lib/hypervisor/__init__.py \
348
	lib/hypervisor/hv_base.py \
349
	lib/hypervisor/hv_chroot.py \
350
	lib/hypervisor/hv_fake.py \
351
	lib/hypervisor/hv_kvm.py \
352
	lib/hypervisor/hv_lxc.py \
353
	lib/hypervisor/hv_xen.py
354

    
355
storage_PYTHON = \
356
	lib/storage/__init__.py \
357
	lib/storage/bdev.py \
358
	lib/storage/base.py \
359
	lib/storage/container.py \
360
	lib/storage/drbd.py \
361
	lib/storage/drbd_info.py \
362
	lib/storage/drbd_cmdgen.py \
363
	lib/storage/filestorage.py
364

    
365
rapi_PYTHON = \
366
	lib/rapi/__init__.py \
367
	lib/rapi/baserlib.py \
368
	lib/rapi/client.py \
369
	lib/rapi/client_utils.py \
370
	lib/rapi/connector.py \
371
	lib/rapi/rlib2.py \
372
	lib/rapi/testutils.py
373

    
374
http_PYTHON = \
375
	lib/http/__init__.py \
376
	lib/http/auth.py \
377
	lib/http/client.py \
378
	lib/http/server.py
379

    
380
confd_PYTHON = \
381
	lib/confd/__init__.py \
382
	lib/confd/client.py
383

    
384
masterd_PYTHON = \
385
	lib/masterd/__init__.py \
386
	lib/masterd/iallocator.py \
387
	lib/masterd/instance.py
388

    
389
impexpd_PYTHON = \
390
	lib/impexpd/__init__.py
391

    
392
watcher_PYTHON = \
393
	lib/watcher/__init__.py \
394
	lib/watcher/nodemaint.py \
395
	lib/watcher/state.py
396

    
397
server_PYTHON = \
398
	lib/server/__init__.py \
399
	lib/server/masterd.py \
400
	lib/server/noded.py \
401
	lib/server/rapi.py
402

    
403
pytools_PYTHON = \
404
	lib/tools/__init__.py \
405
	lib/tools/burnin.py \
406
	lib/tools/ensure_dirs.py \
407
	lib/tools/node_cleanup.py \
408
	lib/tools/node_daemon_setup.py \
409
	lib/tools/prepare_node_join.py
410

    
411
utils_PYTHON = \
412
	lib/utils/__init__.py \
413
	lib/utils/algo.py \
414
	lib/utils/filelock.py \
415
	lib/utils/hash.py \
416
	lib/utils/io.py \
417
	lib/utils/log.py \
418
	lib/utils/lvm.py \
419
	lib/utils/mlock.py \
420
	lib/utils/nodesetup.py \
421
	lib/utils/process.py \
422
	lib/utils/retry.py \
423
	lib/utils/storage.py \
424
	lib/utils/text.py \
425
	lib/utils/wrapper.py \
426
	lib/utils/x509.py
427

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

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

    
495
# Haskell programs to be installed in $PREFIX/bin
496
HS_BIN_PROGS=src/htools
497

    
498
# Haskell programs to be installed in the MYEXECLIB dir
499
if ENABLE_MOND
500
HS_MYEXECLIB_PROGS=src/mon-collector
501
else
502
HS_MYEXECLIB_PROGS=
503
endif
504

    
505
# Haskell programs to be compiled by "make really-all"
506
HS_COMPILE_PROGS= \
507
	src/ganeti-mond \
508
	src/hconfd \
509
	src/hluxid \
510
	src/hs2py \
511
	src/rpc-test
512

    
513
# All Haskell non-test programs to be compiled but not automatically installed
514
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
515

    
516
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller
517
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
518

    
519
HS_ALL_PROGS = \
520
	$(HS_PROGS) \
521
	test/hs/hpc-htools \
522
	test/hs/hpc-mon-collector \
523
	test/hs/htest \
524
	$(HS_COMPILE_PROGS)
525

    
526
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
527
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
528

    
529
HFLAGS = \
530
	-O -Wall -Werror -isrc \
531
	-fwarn-monomorphism-restriction \
532
	-fwarn-tabs \
533
	$(GHC_BYVERSION_FLAGS)
534

    
535
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
536
HEXTRA =
537
# internal extra flags (used for test/hs/htest mainly)
538
HEXTRA_INT =
539
# exclude options for coverage reports
540
HPCEXCL = --exclude Main \
541
	--exclude Ganeti.Constants \
542
	--exclude Ganeti.HTools.QC \
543
	--exclude Ganeti.THH \
544
	--exclude Ganeti.Version \
545
	--exclude Test.Ganeti.Attoparsec \
546
	--exclude Test.Ganeti.TestCommon \
547
	--exclude Test.Ganeti.TestHTools \
548
	--exclude Test.Ganeti.TestHelper \
549
	--exclude Test.Ganeti.TestImports \
550
	$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
551

    
552
HS_LIB_SRCS = \
553
	src/Ganeti/BasicTypes.hs \
554
	src/Ganeti/Common.hs \
555
	src/Ganeti/Compat.hs \
556
	src/Ganeti/Confd/Client.hs \
557
	src/Ganeti/Confd/ClientFunctions.hs \
558
	src/Ganeti/Confd/Server.hs \
559
	src/Ganeti/Confd/Types.hs \
560
	src/Ganeti/Confd/Utils.hs \
561
	src/Ganeti/Config.hs \
562
	src/Ganeti/ConfigReader.hs \
563
	src/Ganeti/Cpu/LoadParser.hs \
564
	src/Ganeti/Cpu/Types.hs \
565
	src/Ganeti/Curl/Multi.hs \
566
	src/Ganeti/Daemon.hs \
567
	src/Ganeti/DataCollectors/CLI.hs \
568
	src/Ganeti/DataCollectors/CPUload.hs \
569
	src/Ganeti/DataCollectors/Diskstats.hs \
570
	src/Ganeti/DataCollectors/Drbd.hs \
571
	src/Ganeti/DataCollectors/InstStatus.hs \
572
	src/Ganeti/DataCollectors/InstStatusTypes.hs \
573
	src/Ganeti/DataCollectors/Lv.hs \
574
	src/Ganeti/DataCollectors/Program.hs \
575
	src/Ganeti/DataCollectors/Types.hs \
576
	src/Ganeti/Errors.hs \
577
	src/Ganeti/HTools/Backend/IAlloc.hs \
578
	src/Ganeti/HTools/Backend/Luxi.hs \
579
	src/Ganeti/HTools/Backend/Rapi.hs \
580
	src/Ganeti/HTools/Backend/Simu.hs \
581
	src/Ganeti/HTools/Backend/Text.hs \
582
	src/Ganeti/HTools/CLI.hs \
583
	src/Ganeti/HTools/Cluster.hs \
584
	src/Ganeti/HTools/Container.hs \
585
	src/Ganeti/HTools/ExtLoader.hs \
586
	src/Ganeti/HTools/Graph.hs \
587
	src/Ganeti/HTools/Group.hs \
588
	src/Ganeti/HTools/Instance.hs \
589
	src/Ganeti/HTools/Loader.hs \
590
	src/Ganeti/HTools/Nic.hs \
591
	src/Ganeti/HTools/Node.hs \
592
	src/Ganeti/HTools/PeerMap.hs \
593
	src/Ganeti/HTools/Program/Hail.hs \
594
	src/Ganeti/HTools/Program/Harep.hs \
595
	src/Ganeti/HTools/Program/Hbal.hs \
596
	src/Ganeti/HTools/Program/Hcheck.hs \
597
	src/Ganeti/HTools/Program/Hinfo.hs \
598
	src/Ganeti/HTools/Program/Hscan.hs \
599
	src/Ganeti/HTools/Program/Hspace.hs \
600
	src/Ganeti/HTools/Program/Hroller.hs \
601
	src/Ganeti/HTools/Program/Main.hs \
602
	src/Ganeti/HTools/Types.hs \
603
	src/Ganeti/Hypervisor/Xen.hs \
604
	src/Ganeti/Hypervisor/Xen/XmParser.hs \
605
	src/Ganeti/Hypervisor/Xen/Types.hs \
606
	src/Ganeti/Hash.hs \
607
	src/Ganeti/Hs2Py/GenOpCodes.hs \
608
	src/Ganeti/Hs2Py/OpDoc.hs \
609
	src/Ganeti/JQueue.hs \
610
	src/Ganeti/JSON.hs \
611
	src/Ganeti/Jobs.hs \
612
	src/Ganeti/Logging.hs \
613
	src/Ganeti/Luxi.hs \
614
	src/Ganeti/Monitoring/Server.hs \
615
	src/Ganeti/Network.hs \
616
	src/Ganeti/Objects.hs \
617
	src/Ganeti/OpCodes.hs \
618
	src/Ganeti/OpParams.hs \
619
	src/Ganeti/Path.hs \
620
	src/Ganeti/Parsers.hs \
621
	src/Ganeti/Query/Cluster.hs \
622
	src/Ganeti/Query/Common.hs \
623
	src/Ganeti/Query/Export.hs \
624
	src/Ganeti/Query/Filter.hs \
625
	src/Ganeti/Query/Group.hs \
626
	src/Ganeti/Query/Job.hs \
627
	src/Ganeti/Query/Language.hs \
628
	src/Ganeti/Query/Network.hs \
629
	src/Ganeti/Query/Node.hs \
630
	src/Ganeti/Query/Query.hs \
631
	src/Ganeti/Query/Server.hs \
632
	src/Ganeti/Query/Types.hs \
633
	src/Ganeti/Rpc.hs \
634
	src/Ganeti/Runtime.hs \
635
	src/Ganeti/Ssconf.hs \
636
	src/Ganeti/Storage/Diskstats/Parser.hs \
637
	src/Ganeti/Storage/Diskstats/Types.hs \
638
	src/Ganeti/Storage/Drbd/Parser.hs \
639
	src/Ganeti/Storage/Drbd/Types.hs \
640
	src/Ganeti/Storage/Lvm/LVParser.hs \
641
	src/Ganeti/Storage/Lvm/Types.hs \
642
	src/Ganeti/Storage/Utils.hs \
643
	src/Ganeti/THH.hs \
644
	src/Ganeti/Types.hs \
645
	src/Ganeti/Utils.hs
646

    
647
HS_TEST_SRCS = \
648
	test/hs/Test/Ganeti/Attoparsec.hs \
649
	test/hs/Test/Ganeti/BasicTypes.hs \
650
	test/hs/Test/Ganeti/Common.hs \
651
	test/hs/Test/Ganeti/Confd/Types.hs \
652
	test/hs/Test/Ganeti/Confd/Utils.hs \
653
	test/hs/Test/Ganeti/Daemon.hs \
654
	test/hs/Test/Ganeti/Errors.hs \
655
	test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
656
	test/hs/Test/Ganeti/HTools/Backend/Text.hs \
657
	test/hs/Test/Ganeti/HTools/CLI.hs \
658
	test/hs/Test/Ganeti/HTools/Cluster.hs \
659
	test/hs/Test/Ganeti/HTools/Container.hs \
660
	test/hs/Test/Ganeti/HTools/Graph.hs \
661
	test/hs/Test/Ganeti/HTools/Instance.hs \
662
	test/hs/Test/Ganeti/HTools/Loader.hs \
663
	test/hs/Test/Ganeti/HTools/Node.hs \
664
	test/hs/Test/Ganeti/HTools/PeerMap.hs \
665
	test/hs/Test/Ganeti/HTools/Types.hs \
666
	test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \
667
	test/hs/Test/Ganeti/JSON.hs \
668
	test/hs/Test/Ganeti/Jobs.hs \
669
	test/hs/Test/Ganeti/JQueue.hs \
670
	test/hs/Test/Ganeti/Luxi.hs \
671
	test/hs/Test/Ganeti/Network.hs \
672
	test/hs/Test/Ganeti/Objects.hs \
673
	test/hs/Test/Ganeti/OpCodes.hs \
674
	test/hs/Test/Ganeti/Query/Filter.hs \
675
	test/hs/Test/Ganeti/Query/Language.hs \
676
	test/hs/Test/Ganeti/Query/Network.hs \
677
	test/hs/Test/Ganeti/Query/Query.hs \
678
	test/hs/Test/Ganeti/Rpc.hs \
679
	test/hs/Test/Ganeti/Runtime.hs \
680
	test/hs/Test/Ganeti/Ssconf.hs \
681
	test/hs/Test/Ganeti/Storage/Diskstats/Parser.hs \
682
	test/hs/Test/Ganeti/Storage/Drbd/Parser.hs \
683
	test/hs/Test/Ganeti/Storage/Drbd/Types.hs \
684
	test/hs/Test/Ganeti/Storage/Lvm/LVParser.hs \
685
	test/hs/Test/Ganeti/THH.hs \
686
	test/hs/Test/Ganeti/TestCommon.hs \
687
	test/hs/Test/Ganeti/TestHTools.hs \
688
	test/hs/Test/Ganeti/TestHelper.hs \
689
	test/hs/Test/Ganeti/Types.hs \
690
	test/hs/Test/Ganeti/Utils.hs
691

    
692
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
693

    
694
HS_BUILT_SRCS = \
695
	test/hs/Test/Ganeti/TestImports.hs \
696
	src/Ganeti/Constants.hs \
697
	src/Ganeti/Curl/Internal.hs \
698
	src/Ganeti/Version.hs
699
HS_BUILT_SRCS_IN = \
700
	$(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \
701
	src/Ganeti/Curl/Internal.hsc \
702
	lib/opcodes.py.in_after \
703
	lib/opcodes.py.in_before
704

    
705
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
706

    
707
$(RUN_IN_TEMPDIR): | stamp-directories
708

    
709
doc/html/index.html: ENABLE_MANPAGES =
710
doc/man-html/index.html: ENABLE_MANPAGES = 1
711
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
712

    
713
# Note: we use here an order-only prerequisite, as the contents of
714
# _autoconf.py are not actually influencing the html build output: it
715
# has to exist in order for the sphinx module to be loaded
716
# successfully, but we certainly don't want the docs to be rebuilt if
717
# it changes
718
doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \
719
	configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
720
	lib/build/shell_example_lexer.py lib/ht.py \
721
	doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \
722
	autotools/sphinx-wrapper | $(BUILT_PYTHON_SOURCES)
723
	@test -n "$(SPHINX)" || \
724
	    { echo 'sphinx-build' not found during configure; exit 1; }
725
if !MANPAGES_IN_DOC
726
	if test -n '$(ENABLE_MANPAGES)'; then \
727
	  echo 'Man pages in documentation were disabled at configure time' >&2; \
728
	  exit 1; \
729
	fi
730
endif
731
## Sphinx provides little control over what content should be included. Some
732
## mechanisms exist, but they all have drawbacks or actual issues. Since we
733
## build two different versions of the documentation--once without man pages and
734
## once, if enabled, with them--some control is necessary. xmpp-wrapper provides
735
## us with this, but requires running in a temporary directory. It moves the
736
## correct files into place depending on environment variables.
737
	dir=$(dir $@) && \
738
	@mkdir_p@ $$dir && \
739
	PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \
740
	$(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \
741
	    -d . \
742
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
743
	    -D release="$(PACKAGE_VERSION)" \
744
	    -D graphviz_dot="$(DOT)" \
745
	    -D enable_manpages="$(ENABLE_MANPAGES)" \
746
	    doc $(CURDIR)/$$dir && \
747
	rm -f $$dir/.buildinfo $$dir/objects.inv
748
	touch $@
749

    
750
doc/html: doc/html/index.html
751

    
752
doc/man-html: doc/man-html/index.html
753

    
754
doc/install-quick.rst: INSTALL
755
doc/news.rst: NEWS
756
doc/upgrade.rst: UPGRADE
757

    
758
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
759
	set -e; \
760
	{ echo '.. This file is automatically updated at build time from $<.'; \
761
	  echo '.. Do not edit.'; \
762
	  echo; \
763
	  cat $<; \
764
	} > $@
765

    
766
doc/manpages-enabled.rst: Makefile | $(built_base_sources)
767
	{ echo '.. This file is automatically generated, do not edit!'; \
768
	  echo ''; \
769
	  echo 'Man pages'; \
770
	  echo '========='; \
771
	  echo; \
772
	  echo '.. toctree::'; \
773
	  echo '   :maxdepth: 1'; \
774
	  echo; \
775
	  for i in $(notdir $(mandocrst)); do \
776
	    echo "   $$i"; \
777
	  done | LC_ALL=C sort; \
778
	} > $@
779

    
780
doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources)
781
if MANPAGES_IN_DOC
782
	{ echo '.. This file is automatically updated at build time from $<.'; \
783
	  echo '.. Do not edit.'; \
784
	  echo; \
785
	  echo "$*"; \
786
	  echo '=========================================='; \
787
	  tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \
788
	} > $@
789
else
790
	echo 'Man pages in documentation were disabled at configure time' >&2; \
791
	exit 1;
792
endif
793

    
794
# Things to build but not to install (add it to EXTRA_DIST if it should be
795
# distributed)
796
noinst_DATA = \
797
	doc/html \
798
	$(BUILT_EXAMPLES) \
799
	doc/examples/bash_completion \
800
	doc/examples/bash_completion-debug \
801
	$(manhtml)
802

    
803
if MANPAGES_IN_DOC
804
noinst_DATA += doc/man-html
805
endif
806

    
807
gnt_scripts = \
808
	scripts/gnt-backup \
809
	scripts/gnt-cluster \
810
	scripts/gnt-debug \
811
	scripts/gnt-group \
812
	scripts/gnt-instance \
813
	scripts/gnt-job \
814
	scripts/gnt-network \
815
	scripts/gnt-node \
816
	scripts/gnt-os \
817
	scripts/gnt-storage
818

    
819
PYTHON_BOOTSTRAP_SBIN = \
820
	daemons/ganeti-masterd \
821
	daemons/ganeti-noded \
822
	daemons/ganeti-rapi \
823
	daemons/ganeti-watcher \
824
	$(gnt_scripts)
825

    
826
PYTHON_BOOTSTRAP = \
827
	$(PYTHON_BOOTSTRAP_SBIN) \
828
	tools/burnin \
829
	tools/ensure-dirs \
830
	tools/node-cleanup \
831
	tools/node-daemon-setup \
832
	tools/prepare-node-join
833

    
834
qa_scripts = \
835
	qa/__init__.py \
836
	qa/ganeti-qa.py \
837
	qa/qa_cluster.py \
838
	qa/qa_config.py \
839
	qa/qa_daemon.py \
840
	qa/qa_env.py \
841
	qa/qa_error.py \
842
	qa/qa_group.py \
843
	qa/qa_instance.py \
844
	qa/qa_instance_utils.py \
845
	qa/qa_job.py \
846
	qa/qa_monitoring.py \
847
	qa/qa_node.py \
848
	qa/qa_os.py \
849
	qa/qa_rapi.py \
850
	qa/qa_tags.py \
851
	qa/qa_utils.py
852

    
853
bin_SCRIPTS =
854
if WANT_HTOOLS
855
bin_SCRIPTS += $(HS_BIN_PROGS)
856
install-exec-hook:
857
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
858
# FIXME: this is a hardcoded logic, instead of auto-resolving
859
	$(LN_S) -f ../../../bin/htools \
860
	  $(DESTDIR)$(iallocatorsdir)/hail
861
	for role in $(HS_BIN_ROLES); do \
862
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
863
	done
864
endif
865

    
866
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTESTBUILT_SRCS) Makefile
867
	@if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \
868
	  echo "Error: cannot run unittests without the development" \
869
	       " libraries (see devnotes.rst)" 1>&2; \
870
	  exit 1; \
871
	fi
872
	@rm -f $(notdir $@).tix
873
	$(GHC) --make \
874
	  $(HFLAGS) \
875
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
876
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
877
	  $(HEXTRA) $(HEXTRA_INT) $@
878
	@touch "$@"
879

    
880
# for the test/hs/htest binary, we need to enable profiling/coverage
881
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
882

    
883
# we compile the hpc-htools binary with the program coverage
884
test/hs/hpc-htools: HEXTRA_INT=-fhpc
885

    
886
# we compile the hpc-mon-collector binary with the program coverage
887
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
888

    
889
# test dependency
890
test/hs/offline-test.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
891

    
892
# rules for building profiling-enabled versions of the haskell
893
# programs: hs-prof does the full two-step build, whereas
894
# hs-prof-quick does only the final rebuild (hs-prof must have been
895
# run before)
896
.PHONY: hs-prof hs-prof-quick
897
hs-prof:
898
	@if [ -z "$(TARGET)" ]; then \
899
	  echo "You need to define TARGET when running this rule" 1>&2; \
900
	  exit 1; \
901
	fi
902
	$(MAKE) $(AM_MAKEFLAGS) clean
903
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o"
904
	rm -f $(HS_ALL_PROGS)
905
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
906

    
907
hs-prof-quick:
908
	@if [ -z "$(TARGET)" ]; then \
909
	  echo "You need to define TARGET when running this rule" 1>&2; \
910
	  exit 1; \
911
	fi
912
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
913

    
914
dist_sbin_SCRIPTS = \
915
	tools/ganeti-listrunner
916

    
917
nodist_sbin_SCRIPTS = \
918
	$(PYTHON_BOOTSTRAP_SBIN) \
919
	daemons/ganeti-cleaner
920

    
921
if ENABLE_CONFD
922
src/ganeti-confd: src/hconfd
923
	cp -f $< $@
924

    
925
src/ganeti-luxid: src/hluxid
926
	cp -f $< $@
927

    
928
nodist_sbin_SCRIPTS += src/ganeti-confd
929
nodist_sbin_SCRIPTS += src/ganeti-luxid
930
endif
931

    
932
if ENABLE_MOND
933
nodist_sbin_SCRIPTS += src/ganeti-mond
934
endif
935

    
936
python_scripts = \
937
	tools/cfgshell \
938
	tools/cfgupgrade \
939
	tools/cfgupgrade12 \
940
	tools/cluster-merge \
941
	tools/confd-client \
942
	tools/fmtjson \
943
	tools/lvmstrap \
944
	tools/move-instance \
945
	tools/ovfconverter \
946
	tools/sanitize-config
947

    
948
dist_tools_SCRIPTS = \
949
	$(python_scripts) \
950
	tools/burnin \
951
	tools/kvm-console-wrapper \
952
	tools/master-ip-setup \
953
	tools/xen-console-wrapper
954

    
955
nodist_tools_python_scripts = \
956
	tools/node-cleanup
957

    
958
nodist_tools_SCRIPTS = \
959
	$(nodist_tools_python_scripts) \
960
	tools/users-setup \
961
	tools/vcluster-setup
962

    
963
pkglib_python_scripts = \
964
	daemons/import-export \
965
	tools/check-cert-expired
966

    
967
nodist_pkglib_python_scripts = \
968
	tools/ensure-dirs \
969
	tools/node-daemon-setup \
970
	tools/prepare-node-join
971

    
972
myexeclib_SCRIPTS = \
973
	daemons/daemon-util \
974
	tools/kvm-ifup \
975
	tools/vif-ganeti \
976
	tools/net-common \
977
	$(pkglib_python_scripts) \
978
	$(HS_MYEXECLIB_PROGS)
979

    
980
nodist_myexeclib_SCRIPTS = \
981
	$(nodist_pkglib_python_scripts)
982

    
983
EXTRA_DIST = \
984
	NEWS \
985
	UPGRADE \
986
	epydoc.conf.in \
987
	pylintrc \
988
	autotools/build-bash-completion \
989
	autotools/build-rpc \
990
	autotools/check-header \
991
	autotools/check-imports \
992
	autotools/check-man-dashes \
993
	autotools/check-man-references \
994
	autotools/check-man-warnings \
995
	autotools/check-news \
996
	autotools/check-python-code \
997
	autotools/check-tar \
998
	autotools/check-version \
999
	autotools/convert-constants \
1000
	autotools/docpp \
1001
	autotools/gen-py-coverage \
1002
	autotools/sphinx-wrapper \
1003
	autotools/testrunner \
1004
	autotools/wrong-hardcoded-paths \
1005
	$(RUN_IN_TEMPDIR) \
1006
	daemons/daemon-util.in \
1007
	daemons/ganeti-cleaner.in \
1008
	$(pkglib_python_scripts) \
1009
	devel/upload \
1010
	devel/webserver \
1011
	tools/kvm-ifup.in \
1012
	tools/vif-ganeti.in \
1013
	tools/net-common.in \
1014
	tools/users-setup.in \
1015
	tools/vcluster-setup.in \
1016
	$(docinput) \
1017
	doc/html \
1018
	$(BUILT_EXAMPLES:%=%.in) \
1019
	doc/examples/ganeti.default \
1020
	doc/examples/ganeti.default-debug \
1021
	doc/examples/hooks/ethers \
1022
	doc/examples/gnt-debug/README \
1023
	doc/examples/gnt-debug/delay0.json \
1024
	doc/examples/gnt-debug/delay50.json \
1025
	test/py/lockperf.py \
1026
	test/py/testutils.py \
1027
	test/py/mocks.py \
1028
	$(dist_TESTS) \
1029
	$(TEST_FILES) \
1030
	man/footer.rst \
1031
	$(manrst) \
1032
	$(maninput) \
1033
	qa/qa-sample.json \
1034
	$(qa_scripts) \
1035
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
1036
	$(HS_PROG_SRCS) \
1037
	src/lint-hints.hs \
1038
	test/hs/cli-tests-defs.sh \
1039
	test/hs/offline-test.sh \
1040
	.ghci
1041

    
1042
man_MANS = \
1043
	man/ganeti-cleaner.8 \
1044
	man/ganeti-confd.8 \
1045
	man/ganeti-luxid.8 \
1046
	man/ganeti-listrunner.8 \
1047
	man/ganeti-masterd.8 \
1048
	man/ganeti-mond.8 \
1049
	man/ganeti-noded.8 \
1050
	man/ganeti-os-interface.7 \
1051
	man/ganeti-extstorage-interface.7 \
1052
	man/ganeti-rapi.8 \
1053
	man/ganeti-watcher.8 \
1054
	man/ganeti.7 \
1055
	man/gnt-backup.8 \
1056
	man/gnt-cluster.8 \
1057
	man/gnt-debug.8 \
1058
	man/gnt-group.8 \
1059
	man/gnt-network.8 \
1060
	man/gnt-instance.8 \
1061
	man/gnt-job.8 \
1062
	man/gnt-node.8 \
1063
	man/gnt-os.8 \
1064
	man/gnt-storage.8 \
1065
	man/hail.1 \
1066
	man/harep.1 \
1067
	man/hbal.1 \
1068
	man/hcheck.1 \
1069
	man/hinfo.1 \
1070
	man/hscan.1 \
1071
	man/hspace.1 \
1072
	man/hroller.1 \
1073
	man/htools.1 \
1074
	man/mon-collector.7
1075

    
1076
# Remove extensions from all filenames in man_MANS
1077
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
1078

    
1079
manrst = $(patsubst %,%.rst,$(mannoext))
1080
manhtml = $(patsubst %.rst,%.html,$(manrst))
1081
mangen = $(patsubst %.rst,%.gen,$(manrst))
1082
maninput = \
1083
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
1084
	$(patsubst %.html,%.html.in,$(manhtml)) \
1085
	$(mangen)
1086

    
1087
TEST_FILES = \
1088
	test/autotools/autotools-check-news.test \
1089
	test/data/htools/clean-nonzero-score.data \
1090
	test/data/htools/common-suffix.data \
1091
	test/data/htools/empty-cluster.data \
1092
	test/data/htools/hail-alloc-drbd.json \
1093
	test/data/htools/hail-alloc-invalid-network.json \
1094
	test/data/htools/hail-alloc-invalid-twodisks.json \
1095
	test/data/htools/hail-alloc-restricted-network.json \
1096
	test/data/htools/hail-alloc-spindles.json \
1097
	test/data/htools/hail-alloc-twodisks.json \
1098
	test/data/htools/hail-change-group.json \
1099
	test/data/htools/hail-invalid-reloc.json \
1100
	test/data/htools/hail-node-evac.json \
1101
	test/data/htools/hail-reloc-drbd.json \
1102
	test/data/htools/hbal-excl-tags.data \
1103
	test/data/htools/hbal-split-insts.data \
1104
	test/data/htools/hspace-tiered-dualspec-exclusive.data \
1105
	test/data/htools/hspace-tiered-dualspec.data \
1106
	test/data/htools/hspace-tiered-exclusive.data \
1107
	test/data/htools/hspace-tiered-ipolicy.data \
1108
	test/data/htools/hspace-tiered-mixed.data \
1109
	test/data/htools/hspace-tiered-resourcetypes.data \
1110
	test/data/htools/hspace-tiered-vcpu.data \
1111
	test/data/htools/hspace-tiered.data \
1112
	test/data/htools/invalid-node.data \
1113
	test/data/htools/missing-resources.data \
1114
	test/data/htools/multiple-master.data \
1115
	test/data/htools/multiple-tags.data \
1116
	test/data/htools/n1-failure.data \
1117
	test/data/htools/rapi/groups.json \
1118
	test/data/htools/rapi/info.json \
1119
	test/data/htools/rapi/instances.json \
1120
	test/data/htools/rapi/nodes.json \
1121
	test/data/htools/hroller-full.data \
1122
	test/data/htools/hroller-nodegroups.data \
1123
	test/data/htools/hroller-nonredundant.data \
1124
	test/data/htools/hroller-online.data \
1125
	test/data/htools/unique-reboot-order.data \
1126
	test/hs/shelltests/htools-balancing.test \
1127
	test/hs/shelltests/htools-basic.test \
1128
	test/hs/shelltests/htools-dynutil.test \
1129
	test/hs/shelltests/htools-excl.test \
1130
	test/hs/shelltests/htools-hail.test \
1131
	test/hs/shelltests/htools-hroller.test \
1132
	test/hs/shelltests/htools-hspace.test \
1133
	test/hs/shelltests/htools-invalid.test \
1134
	test/hs/shelltests/htools-multi-group.test \
1135
	test/hs/shelltests/htools-no-backend.test \
1136
	test/hs/shelltests/htools-rapi.test \
1137
	test/hs/shelltests/htools-single-group.test \
1138
	test/hs/shelltests/htools-text-backend.test \
1139
	test/hs/shelltests/htools-mon-collector.test \
1140
	test/data/bdev-drbd-8.0.txt \
1141
	test/data/bdev-drbd-8.3.txt \
1142
	test/data/bdev-drbd-8.4.txt \
1143
	test/data/bdev-drbd-8.4-no-disk-params.txt \
1144
	test/data/bdev-drbd-disk.txt \
1145
	test/data/bdev-drbd-net-ip4.txt \
1146
	test/data/bdev-drbd-net-ip6.txt \
1147
	test/data/bdev-rbd/json_output_empty.txt \
1148
	test/data/bdev-rbd/json_output_extra_matches.txt \
1149
	test/data/bdev-rbd/json_output_no_matches.txt \
1150
	test/data/bdev-rbd/json_output_ok.txt \
1151
	test/data/bdev-rbd/plain_output_new_extra_matches.txt \
1152
	test/data/bdev-rbd/plain_output_new_no_matches.txt \
1153
	test/data/bdev-rbd/plain_output_new_ok.txt \
1154
	test/data/bdev-rbd/plain_output_old_empty.txt \
1155
	test/data/bdev-rbd/plain_output_old_extra_matches.txt \
1156
	test/data/bdev-rbd/plain_output_old_no_matches.txt \
1157
	test/data/bdev-rbd/plain_output_old_ok.txt \
1158
	test/data/bdev-rbd/output_invalid.txt \
1159
	test/data/cert1.pem \
1160
	test/data/cert2.pem \
1161
	test/data/cluster_config_2.7.json \
1162
	test/data/cluster_config_2.8.json \
1163
	test/data/cluster_config_2.9.json \
1164
	test/data/instance-minor-pairing.txt \
1165
	test/data/instance-prim-sec.txt \
1166
	test/data/ip-addr-show-dummy0.txt \
1167
	test/data/ip-addr-show-lo-ipv4.txt \
1168
	test/data/ip-addr-show-lo-ipv6.txt \
1169
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
1170
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
1171
	test/data/ip-addr-show-lo-oneline.txt \
1172
	test/data/ip-addr-show-lo.txt \
1173
	test/data/kvm_0.12.5_help.txt \
1174
	test/data/kvm_0.15.90_help.txt \
1175
	test/data/kvm_0.9.1_help.txt \
1176
	test/data/kvm_0.9.1_help_boot_test.txt \
1177
	test/data/kvm_1.0_help.txt \
1178
	test/data/kvm_1.1.2_help.txt \
1179
	test/data/lvs_lv.txt \
1180
	test/data/NEWS_OK.txt \
1181
	test/data/NEWS_previous_unreleased.txt \
1182
	test/data/ovfdata/compr_disk.vmdk.gz \
1183
	test/data/ovfdata/config.ini \
1184
	test/data/ovfdata/corrupted_resources.ovf \
1185
	test/data/ovfdata/empty.ini \
1186
	test/data/ovfdata/empty.ovf \
1187
	test/data/ovfdata/ganeti.mf \
1188
	test/data/ovfdata/ganeti.ovf \
1189
	test/data/ovfdata/gzip_disk.ovf \
1190
	test/data/ovfdata/new_disk.vmdk \
1191
	test/data/ovfdata/no_disk.ini \
1192
	test/data/ovfdata/no_disk_in_ref.ovf \
1193
	test/data/ovfdata/no_os.ini \
1194
	test/data/ovfdata/no_ovf.ova \
1195
	test/data/ovfdata/other/rawdisk.raw \
1196
	test/data/ovfdata/ova.ova \
1197
	test/data/ovfdata/rawdisk.raw \
1198
	test/data/ovfdata/second_disk.vmdk \
1199
	test/data/ovfdata/unsafe_path.ini \
1200
	test/data/ovfdata/virtualbox.ovf \
1201
	test/data/ovfdata/wrong_config.ini \
1202
	test/data/ovfdata/wrong_extension.ovd \
1203
	test/data/ovfdata/wrong_manifest.mf \
1204
	test/data/ovfdata/wrong_manifest.ovf \
1205
	test/data/ovfdata/wrong_ova.ova \
1206
	test/data/ovfdata/wrong_xml.ovf \
1207
	test/data/proc_diskstats.txt \
1208
	test/data/proc_drbd8.txt \
1209
	test/data/proc_drbd80-emptyline.txt \
1210
	test/data/proc_drbd80-emptyversion.txt \
1211
	test/data/proc_drbd83.txt \
1212
	test/data/proc_drbd83_sync.txt \
1213
	test/data/proc_drbd83_sync_want.txt \
1214
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
1215
	test/data/proc_drbd84.txt \
1216
	test/data/proc_drbd84_sync.txt \
1217
	test/data/qa-minimal-nodes-instances-only.json \
1218
	test/data/sys_drbd_usermode_helper.txt \
1219
	test/data/vgreduce-removemissing-2.02.02.txt \
1220
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
1221
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
1222
	test/data/vgs-missing-pvs-2.02.02.txt \
1223
	test/data/vgs-missing-pvs-2.02.66.txt \
1224
	test/data/xen-xm-info-4.0.1.txt \
1225
	test/data/xen-xm-list-4.0.1-dom0-only.txt \
1226
	test/data/xen-xm-list-4.0.1-four-instances.txt \
1227
	test/data/xen-xm-list-long-4.0.1.txt \
1228
	test/data/xen-xm-uptime-4.0.1.txt \
1229
	test/py/ganeti-cli.test \
1230
	test/py/gnt-cli.test \
1231
	test/py/import-export_unittest-helper
1232

    
1233

    
1234
python_tests = \
1235
	doc/examples/rapi_testutils.py \
1236
	test/py/cfgupgrade_unittest.py \
1237
	test/py/docs_unittest.py \
1238
	test/py/ganeti.asyncnotifier_unittest.py \
1239
	test/py/ganeti.backend_unittest-runasroot.py \
1240
	test/py/ganeti.backend_unittest.py \
1241
	test/py/ganeti.bootstrap_unittest.py \
1242
	test/py/ganeti.cli_unittest.py \
1243
	test/py/ganeti.client.gnt_cluster_unittest.py \
1244
	test/py/ganeti.client.gnt_instance_unittest.py \
1245
	test/py/ganeti.client.gnt_job_unittest.py \
1246
	test/py/ganeti.cmdlib_unittest.py \
1247
	test/py/ganeti.cmdlib.cluster_unittest.py \
1248
	test/py/ganeti.cmdlib.instance_storage_unittest.py \
1249
	test/py/ganeti.compat_unittest.py \
1250
	test/py/ganeti.confd.client_unittest.py \
1251
	test/py/ganeti.config_unittest.py \
1252
	test/py/ganeti.constants_unittest.py \
1253
	test/py/ganeti.daemon_unittest.py \
1254
	test/py/ganeti.errors_unittest.py \
1255
	test/py/ganeti.hooks_unittest.py \
1256
	test/py/ganeti.ht_unittest.py \
1257
	test/py/ganeti.http_unittest.py \
1258
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
1259
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
1260
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1261
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1262
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
1263
	test/py/ganeti.hypervisor_unittest.py \
1264
	test/py/ganeti.impexpd_unittest.py \
1265
	test/py/ganeti.jqueue_unittest.py \
1266
	test/py/ganeti.jstore_unittest.py \
1267
	test/py/ganeti.locking_unittest.py \
1268
	test/py/ganeti.luxi_unittest.py \
1269
	test/py/ganeti.masterd.iallocator_unittest.py \
1270
	test/py/ganeti.masterd.instance_unittest.py \
1271
	test/py/ganeti.mcpu_unittest.py \
1272
	test/py/ganeti.netutils_unittest.py \
1273
	test/py/ganeti.objects_unittest.py \
1274
	test/py/ganeti.opcodes_unittest.py \
1275
	test/py/ganeti.outils_unittest.py \
1276
	test/py/ganeti.ovf_unittest.py \
1277
	test/py/ganeti.qlang_unittest.py \
1278
	test/py/ganeti.query_unittest.py \
1279
	test/py/ganeti.rapi.baserlib_unittest.py \
1280
	test/py/ganeti.rapi.client_unittest.py \
1281
	test/py/ganeti.rapi.resources_unittest.py \
1282
	test/py/ganeti.rapi.rlib2_unittest.py \
1283
	test/py/ganeti.rapi.testutils_unittest.py \
1284
	test/py/ganeti.rpc_unittest.py \
1285
	test/py/ganeti.runtime_unittest.py \
1286
	test/py/ganeti.serializer_unittest.py \
1287
	test/py/ganeti.server.rapi_unittest.py \
1288
	test/py/ganeti.ssconf_unittest.py \
1289
	test/py/ganeti.ssh_unittest.py \
1290
	test/py/ganeti.storage.bdev_unittest.py \
1291
	test/py/ganeti.storage.container_unittest.py \
1292
	test/py/ganeti.storage.drbd_unittest.py \
1293
	test/py/ganeti.storage.filestorage_unittest.py \
1294
	test/py/ganeti.tools.burnin_unittest.py \
1295
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1296
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1297
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1298
	test/py/ganeti.uidpool_unittest.py \
1299
	test/py/ganeti.utils.algo_unittest.py \
1300
	test/py/ganeti.utils.filelock_unittest.py \
1301
	test/py/ganeti.utils.hash_unittest.py \
1302
	test/py/ganeti.utils.io_unittest-runasroot.py \
1303
	test/py/ganeti.utils.io_unittest.py \
1304
	test/py/ganeti.utils.log_unittest.py \
1305
	test/py/ganeti.utils.lvm_unittest.py \
1306
	test/py/ganeti.utils.mlock_unittest.py \
1307
	test/py/ganeti.utils.nodesetup_unittest.py \
1308
	test/py/ganeti.utils.process_unittest.py \
1309
	test/py/ganeti.utils.retry_unittest.py \
1310
	test/py/ganeti.utils.storage_unittest.py \
1311
	test/py/ganeti.utils.text_unittest.py \
1312
	test/py/ganeti.utils.wrapper_unittest.py \
1313
	test/py/ganeti.utils.x509_unittest.py \
1314
	test/py/ganeti.utils_unittest.py \
1315
	test/py/ganeti.vcluster_unittest.py \
1316
	test/py/ganeti.workerpool_unittest.py \
1317
	test/py/pycurl_reset_unittest.py \
1318
	test/py/qa.qa_config_unittest.py \
1319
	test/py/tempfile_fork_unittest.py
1320

    
1321
haskell_tests = test/hs/htest
1322

    
1323
dist_TESTS = \
1324
	test/py/check-cert-expired_unittest.bash \
1325
	test/py/daemon-util_unittest.bash \
1326
	test/py/ganeti-cleaner_unittest.bash \
1327
	test/py/import-export_unittest.bash \
1328
	test/py/cli-test.bash \
1329
	test/py/bash_completion.bash
1330

    
1331
if PY_UNIT
1332
dist_TESTS += $(python_tests)
1333
endif
1334

    
1335
nodist_TESTS =
1336
check_SCRIPTS =
1337

    
1338
if WANT_HSTESTS
1339
nodist_TESTS += $(haskell_tests)
1340
dist_TESTS += test/hs/offline-test.sh
1341
check_SCRIPTS += \
1342
	test/hs/hpc-htools \
1343
	test/hs/hpc-mon-collector \
1344
	$(HS_BUILT_TEST_HELPERS)
1345
endif
1346

    
1347
TESTS = $(dist_TESTS) $(nodist_TESTS)
1348

    
1349
# Environment for all tests
1350
PLAIN_TESTS_ENVIRONMENT = \
1351
	PYTHONPATH=. \
1352
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1353
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1354
	$(RUN_IN_TEMPDIR)
1355

    
1356
# Environment for tests run by automake
1357
TESTS_ENVIRONMENT = \
1358
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1359

    
1360
all_python_code = \
1361
	$(dist_sbin_SCRIPTS) \
1362
	$(python_scripts) \
1363
	$(pkglib_python_scripts) \
1364
	$(nodist_pkglib_python_scripts) \
1365
	$(nodist_tools_python_scripts) \
1366
	$(pkgpython_PYTHON) \
1367
	$(client_PYTHON) \
1368
	$(cmdlib_PYTHON) \
1369
	$(hypervisor_PYTHON) \
1370
	$(storage_PYTHON) \
1371
	$(rapi_PYTHON) \
1372
	$(server_PYTHON) \
1373
	$(pytools_PYTHON) \
1374
	$(http_PYTHON) \
1375
	$(confd_PYTHON) \
1376
	$(masterd_PYTHON) \
1377
	$(impexpd_PYTHON) \
1378
	$(utils_PYTHON) \
1379
	$(watcher_PYTHON) \
1380
	$(noinst_PYTHON) \
1381
	$(qa_scripts)
1382

    
1383
if PY_UNIT
1384
all_python_code += $(python_tests)
1385
endif
1386

    
1387
srclink_files = \
1388
	man/footer.rst \
1389
	test/py/check-cert-expired_unittest.bash \
1390
	test/py/daemon-util_unittest.bash \
1391
	test/py/ganeti-cleaner_unittest.bash \
1392
	test/py/import-export_unittest.bash \
1393
	test/py/cli-test.bash \
1394
	test/py/bash_completion.bash \
1395
	test/hs/offline-test.sh \
1396
	test/hs/cli-tests-defs.sh \
1397
	$(all_python_code) \
1398
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1399
	$(docinput)
1400

    
1401
check_python_code = \
1402
	$(BUILD_BASH_COMPLETION) \
1403
	$(CHECK_IMPORTS) \
1404
	$(CHECK_HEADER) \
1405
	$(DOCPP) \
1406
	$(all_python_code)
1407

    
1408
lint_python_code = \
1409
	ganeti \
1410
	ganeti/http/server.py \
1411
	$(dist_sbin_SCRIPTS) \
1412
	$(python_scripts) \
1413
	$(pkglib_python_scripts) \
1414
	$(BUILD_BASH_COMPLETION) \
1415
	$(CHECK_IMPORTS) \
1416
	$(CHECK_HEADER) \
1417
	$(DOCPP) \
1418
	$(PYTHON_BOOTSTRAP)
1419

    
1420
standalone_python_modules = \
1421
	lib/rapi/client.py \
1422
	tools/ganeti-listrunner
1423

    
1424
pep8_python_code = \
1425
	ganeti \
1426
	ganeti/http/server.py \
1427
	$(dist_sbin_SCRIPTS) \
1428
	$(python_scripts) \
1429
	$(pkglib_python_scripts) \
1430
	$(BUILD_BASH_COMPLETION) \
1431
	$(CHECK_HEADER) \
1432
	$(DOCPP) \
1433
	$(PYTHON_BOOTSTRAP) \
1434
	qa
1435

    
1436
test/py/daemon-util_unittest.bash: daemons/daemon-util
1437

    
1438
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1439

    
1440
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1441

    
1442
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1443
	sed -f $(REPLACE_VARS_SED) < $< > $@
1444
	chmod +x $@
1445

    
1446
tools/vif-ganeti: tools/vif-ganeti.in $(REPLACE_VARS_SED)
1447
	sed -f $(REPLACE_VARS_SED) < $< > $@
1448
	chmod +x $@
1449

    
1450
tools/net-common: tools/net-common.in $(REPLACE_VARS_SED)
1451
	sed -f $(REPLACE_VARS_SED) < $< > $@
1452
	chmod +x $@
1453

    
1454
tools/users-setup: tools/users-setup.in $(REPLACE_VARS_SED)
1455
	sed -f $(REPLACE_VARS_SED) < $< > $@
1456
	chmod +x $@
1457

    
1458
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1459
	sed -f $(REPLACE_VARS_SED) < $< > $@
1460
	chmod +x $@
1461

    
1462
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1463
	sed -f $(REPLACE_VARS_SED) < $< > $@
1464
	chmod +x $@
1465

    
1466
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1467
	sed -f $(REPLACE_VARS_SED) < $< > $@
1468

    
1469
doc/examples/bash_completion: BC_ARGS = --compact
1470
doc/examples/bash_completion-debug: BC_ARGS =
1471

    
1472
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1473
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1474
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1475
	daemons/ganeti-cleaner \
1476
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1477
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1478
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1479

    
1480
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1481
	lib/build/shell_example_lexer.py \
1482
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1483
	@echo "Checking $< for hardcoded paths..."
1484
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1485
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1486
	  exit 1; \
1487
	fi
1488
	set -e ; \
1489
	trap 'echo auto-removing $@; rm $@' EXIT; \
1490
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1491
	$(CHECK_MAN_REFERENCES) $@; \
1492
	trap - EXIT
1493

    
1494
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1495
	@test -n "$(PANDOC)" || \
1496
	  { echo 'pandoc' not found during configure; exit 1; }
1497
	set -o pipefail -e; \
1498
	trap 'echo auto-removing $@; rm $@' EXIT; \
1499
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1500
	  sed -e 's/\\@/@/g' > $@; \
1501
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1502
	$(CHECK_MAN_DASHES) $@; \
1503
	trap - EXIT
1504

    
1505
man/%.html.in: man/%.gen man/footer.rst
1506
	@test -n "$(PANDOC)" || \
1507
	  { echo 'pandoc' not found during configure; exit 1; }
1508
	set -o pipefail ; \
1509
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1510
	  sed -e 's/\\@/@/g' > $@
1511

    
1512
man/%: man/%.in  $(REPLACE_VARS_SED)
1513
	sed -f $(REPLACE_VARS_SED) < $< > $@
1514

    
1515
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1516
	sed -f $(REPLACE_VARS_SED) < $< > $@
1517

    
1518
vcs-version:
1519
	if test -d .git; then \
1520
	  git describe > $@; \
1521
	elif test ! -f $@ ; then \
1522
	  echo "Cannot auto-generate $@ file"; exit 1; \
1523
	fi
1524

    
1525
.PHONY: clean-vcs-version
1526
clean-vcs-version:
1527
	rm -f vcs-version
1528

    
1529
.PHONY: regen-vcs-version
1530
regen-vcs-version:
1531
	@set -e; \
1532
	cd $(srcdir); \
1533
	if test -d .git; then \
1534
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1535
	  git describe > $$T; \
1536
	  if ! cmp --quiet $$T vcs-version; then \
1537
	    mv $$T vcs-version; \
1538
	  fi; \
1539
	fi
1540

    
1541
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1542
	vcs-version $(built_base_sources)
1543
	set -e; \
1544
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1545
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1546

    
1547
src/Ganeti/Constants.hs: src/Ganeti/Constants.hs.in \
1548
	lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1549
	lib/jstore.py $(RUN_IN_TEMPDIR) \
1550
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1551
	| lib/_vcsversion.py
1552
	set -e; \
1553
	{ cat $< ; \
1554
	  PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
1555
	} > $@
1556

    
1557
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1558
	hsc2hs -o $@ $<
1559

    
1560
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1561
	$(built_base_sources)
1562
	set -e; \
1563
	{ cat $< ; \
1564
	  echo ; \
1565
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1566
	    echo "import $$name ()" ; \
1567
	  done ; \
1568
	} > $@
1569

    
1570
lib/_autoconf.py: Makefile | stamp-directories
1571
	set -e; \
1572
	{ echo '# This file is automatically generated, do not edit!'; \
1573
	  echo '#'; \
1574
	  echo ''; \
1575
	  echo '"""Build-time configuration for Ganeti.'; \
1576
	  echo '';\
1577
	  echo 'This file is autogenerated by the build process.'; \
1578
	  echo 'For any changes you need to re-run ./configure (and'; \
1579
	  echo 'not edit by hand).'; \
1580
	  echo ''; \
1581
	  echo '"""'; \
1582
	  echo ''; \
1583
	  echo '# pylint: disable=C0301,C0324'; \
1584
	  echo '# because this is autogenerated, we do not want'; \
1585
	  echo '# style warnings' ; \
1586
	  echo ''; \
1587
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1588
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1589
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1590
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1591
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1592
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1593
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1594
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1595
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1596
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1597
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1598
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1599
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1600
	  echo "ES_SEARCH_PATH = [$(ES_SEARCH_PATH)]"; \
1601
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1602
	  echo "XEN_CONFIG_DIR = '$(XEN_CONFIG_DIR)'"; \
1603
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1604
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1605
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1606
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1607
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1608
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1609
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1610
	  echo "IP_PATH = '$(IP_PATH)'"; \
1611
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1612
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1613
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1614
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1615
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1616
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1617
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1618
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1619
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1620
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1621
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1622
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1623
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1624
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1625
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1626
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1627
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1628
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1629
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1630
	  echo "LUXID_USER = '$(LUXID_USER)'"; \
1631
	  echo "LUXID_GROUP = '$(LUXID_GROUP)'"; \
1632
	  echo "NODED_USER = '$(NODED_USER)'"; \
1633
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1634
	  echo "MOND_USER = '$(MOND_USER)'"; \
1635
	  echo "MOND_GROUP = '$(MOND_GROUP)'"; \
1636
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1637
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1638
	  echo "HTOOLS = True"; \
1639
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1640
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1641
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1642
	  echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1643
	  echo "ENABLE_MOND = $(ENABLE_MOND)"; \
1644
## Write dictionary with man page name as the key and the section number as the
1645
## value
1646
	  echo "MAN_PAGES = {"; \
1647
	  for i in $(notdir $(man_MANS)); do \
1648
	    echo "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/  "\1": \2,/g'; \
1649
	  done; \
1650
	  echo "}"; \
1651
	} > $@
1652

    
1653
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1654
	set -e; \
1655
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1656
	{ echo '# This file is automatically generated, do not edit!'; \
1657
	  echo '#'; \
1658
	  echo ''; \
1659
	  echo '"""Build-time VCS version number for Ganeti.'; \
1660
	  echo '';\
1661
	  echo 'This file is autogenerated by the build process.'; \
1662
	  echo 'For any changes you need to re-run ./configure (and'; \
1663
	  echo 'not edit by hand).'; \
1664
	  echo ''; \
1665
	  echo '"""'; \
1666
	  echo ''; \
1667
	  echo '# pylint: disable=C0301,C0324'; \
1668
	  echo '# because this is autogenerated, we do not want'; \
1669
	  echo '# style warnings' ; \
1670
	  echo ''; \
1671
	  echo "VCS_VERSION = '$$VCSVER'"; \
1672
	} > $@
1673

    
1674
lib/opcodes.py: Makefile src/hs2py src/Ganeti/Constants.hs \
1675
		lib/opcodes.py.in_before lib/opcodes.py.in_after \
1676
		| stamp-directories
1677
	cat $(abs_top_srcdir)/lib/opcodes.py.in_before > $@
1678
	src/hs2py >> $@
1679
	cat $(abs_top_srcdir)/lib/opcodes.py.in_after >> $@
1680

    
1681
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1682
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1683

    
1684
$(SHELL_ENV_INIT): Makefile stamp-directories
1685
	set -e; \
1686
	{ echo '# Allow overriding for tests'; \
1687
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1688
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1689
	  echo; \
1690
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1691
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1692
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1693
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1694
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1695
	} > $@
1696

    
1697
## Writes sed script to replace placeholders with build-time values. The
1698
## additional quotes after the first @ sign are necessary to stop configure
1699
## from replacing those values as well.
1700
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1701
	set -e; \
1702
	{ echo 's#@''PREFIX@#$(prefix)#g'; \
1703
	  echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1704
	  echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1705
	  echo 's#@''BINDIR@#$(bindir)#g'; \
1706
	  echo 's#@''SBINDIR@#$(sbindir)#g'; \
1707
	  echo 's#@''LIBDIR@#$(libdir)#g'; \
1708
	  echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1709
	  echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1710
	  echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1711
	  echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1712
	  echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1713
	  echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1714
	  echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1715
	  echo 's#@''PKGLIBDIR@#$(pkglibdir)#g'; \
1716
	  echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1717
	  echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1718
	  echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1719
	  echo 's#@''GNTLUXIDUSER@#$(LUXID_USER)#g'; \
1720
	  echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1721
	  echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1722
	  echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1723
	  echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1724
	  echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1725
	  echo 's#@''GNTLUXIDGROUP@#$(LUXID_GROUP)#g'; \
1726
	  echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1727
	  echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1728
	  echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1729
	  echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1730
	  echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1731
	  echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1732
	  echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1733
	  echo; \
1734
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1735
	  echo '  r $(SHELL_ENV_INIT)'; \
1736
	  echo '  d'; \
1737
	  echo '}'; \
1738
	} > $@
1739

    
1740
# Using deferred evaluation
1741
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1742
daemons/ganeti-watcher: MODULE = ganeti.watcher
1743
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1744
tools/burnin: MODULE = ganeti.tools.burnin
1745
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1746
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1747
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1748
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1749
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1750

    
1751
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1752
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1753
	set -e; \
1754
	{ echo '#!/usr/bin/python'; \
1755
	  echo '# This file is automatically generated, do not edit!'; \
1756
	  echo "# Edit $(MODULE) instead."; \
1757
	  echo; \
1758
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1759
	  echo; \
1760
	  echo '# pylint: disable=C0103'; \
1761
	  echo '# C0103: Invalid name'; \
1762
	  echo; \
1763
	  echo 'import sys'; \
1764
	  echo 'import $(MODULE) as main'; \
1765
	  echo; \
1766
	  echo '# Temporarily alias commands until bash completion'; \
1767
	  echo '# generator is changed'; \
1768
	  echo 'if hasattr(main, "commands"):'; \
1769
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1770
	  echo 'if hasattr(main, "aliases"):'; \
1771
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1772
	  echo; \
1773
	  echo 'if __name__ == "__main__":'; \
1774
	  echo '  sys.exit(main.Main())'; \
1775
	} > $@
1776
	chmod u+x $@
1777

    
1778
$(HS_BUILT_TEST_HELPERS): Makefile
1779
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1780
	set -e; \
1781
	{ echo '#!/bin/sh'; \
1782
	  echo '# This file is automatically generated, do not edit!'; \
1783
	  echo "# Edit Makefile.am instead."; \
1784
	  echo; \
1785
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
1786
	} > $@
1787
	chmod u+x $@
1788

    
1789
stamp-directories: Makefile
1790
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1791
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1792
	touch $@
1793

    
1794
# We need to create symlinks because "make distcheck" will not install Python
1795
# files when building.
1796
stamp-srclinks: Makefile | stamp-directories
1797
	set -e; \
1798
	for i in $(srclink_files); do \
1799
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1800
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1801
	  fi; \
1802
	done
1803
	touch $@
1804

    
1805
.PHONY: ganeti
1806
ganeti:
1807
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1808

    
1809
.PHONY: check-dirs
1810
check-dirs: $(GENERATED_FILES)
1811
	@set -e; \
1812
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1813
	  error=; \
1814
	  while read dir; do \
1815
	    case "$$dir" in \
1816
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1817
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1818
	    esac; \
1819
	  done; \
1820
	  for dir in $(DIRS); do \
1821
	    if ! test -d "$$dir"; then \
1822
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1823
	      error=1; \
1824
	    fi \
1825
	  done; \
1826
	  test -z "$$error"; \
1827
	}
1828

    
1829
.PHONY: check-local
1830
check-local: check-dirs $(GENERATED_FILES)
1831
	$(CHECK_PYTHON_CODE) $(check_python_code)
1832
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1833
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1834
	RELEASE=$(PACKAGE_VERSION) $(CHECK_NEWS) < $(top_srcdir)/NEWS
1835
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1836
	error= ; \
1837
	if [ "x`echo $(VERSION_SUFFIX)|grep 'alpha'`" == "x" ]; then \
1838
	  expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1839
	  if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1840
	    echo "Incorrect version in README, expected $$expver" >&2; \
1841
	    error=1; \
1842
	  fi; \
1843
	  for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1844
	      doc/security.rst; do \
1845
	    if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1846
	      "Documents Ganeti version $$expver"; then \
1847
	      echo "Incorrect version in $$file, expected $$expver" >&2; \
1848
	      error=1; \
1849
	    fi; \
1850
	  done; \
1851
	  if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1852
	    echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
1853
	    error=1; \
1854
	  fi; \
1855
	  if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
1856
	    ".. Last updated for Ganeti $$expver"; then \
1857
	    echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
1858
	    error=1; \
1859
	  fi; \
1860
	fi; \
1861
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
1862
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
1863
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
1864
	    error=1; \
1865
	  fi; \
1866
	done; \
1867
	test -z "$$error"
1868

    
1869
.PHONY: hs-test-%
1870
hs-test-%: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1871
	@rm -f htest.tix
1872
	test/hs/htest -t $*
1873

    
1874
.PHONY: hs-tests
1875
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1876
	@rm -f htest.tix
1877
	./test/hs/htest
1878

    
1879
.PHONY: hs-shell-%
1880
hs-shell-%: test/hs/hpc-htools test/hs/hpc-mon-collector \
1881
            $(HS_BUILT_TEST_HELPERS)
1882
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1883
	HBINARY="./test/hs/hpc-htools" \
1884
	SHELLTESTARGS=$(SHELLTESTARGS) \
1885
	./test/hs/offline-test.sh $*
1886

    
1887
.PHONY: hs-shell
1888
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
1889
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1890
	HBINARY="./test/hs/hpc-htools" \
1891
	SHELLTESTARGS=$(SHELLTESTARGS) \
1892
	./test/hs/offline-test.sh
1893

    
1894
.PHONY: hs-check
1895
hs-check: hs-tests hs-shell
1896

    
1897
# E111: indentation is not a multiple of four
1898
# E121: continuation line indentation is not a multiple of four
1899
#       (since our indent level is not 4)
1900
# E125: continuation line does not distinguish itself from next logical line
1901
#       (since our indent level is not 4)
1902
# E127: continuation line over-indented for visual indent
1903
#       (since our indent level is not 4)
1904
# note: do NOT add E128 here; it's a valid style error in most cases!
1905
# I've seen real errors, but also some cases were we indent wrongly
1906
# due to line length; try to rework the cases where it is triggered,
1907
# instead of silencing it
1908
# E261: at least two spaces before inline comment
1909
# E501: line too long (80 characters)
1910
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1911

    
1912
# For excluding pep8 expects filenames only, not whole paths
1913
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1914

    
1915
LINT_TARGETS = pylint pylint-qa
1916
if HAS_PEP8
1917
LINT_TARGETS += pep8
1918
endif
1919
if HAS_HLINT
1920
LINT_TARGETS += hlint
1921
endif
1922

    
1923
.PHONY: lint
1924
lint: $(LINT_TARGETS)
1925

    
1926
.PHONY: pylint
1927
pylint: $(GENERATED_FILES)
1928
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1929
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1930

    
1931
.PHONY: pylint-qa
1932
pylint-qa: $(GENERATED_FILES)
1933
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1934
	cd $(top_srcdir)/qa && \
1935
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1936
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1937

    
1938
.PHONY: pep8
1939
pep8: $(GENERATED_FILES)
1940
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1941
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1942
	  --repeat $(pep8_python_code)
1943

    
1944
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1945
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
1946
.PHONY: hlint
1947
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
1948
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1949
	@rm -f doc/hs-lint.html
1950
	if tty -s; then C="-c"; else C=""; fi; \
1951
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1952
	  --ignore "Use first" \
1953
	  --ignore "Use &&&" \
1954
	  --ignore "Use void" \
1955
	  --ignore "Reduce duplication" \
1956
	  --hint src/lint-hints \
1957
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1958
	@if [ ! -f doc/hs-lint.html ]; then \
1959
	  echo "All good" > doc/hs-lint.html; \
1960
	fi
1961

    
1962
# a dist hook rule for updating the vcs-version file; this is
1963
# hardcoded due to where it needs to build the file...
1964
dist-hook:
1965
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1966
	rm -f $(top_distdir)/vcs-version
1967
	cp -p $(srcdir)/vcs-version $(top_distdir)
1968

    
1969
# a distcheck hook rule for catching revision control directories
1970
distcheck-hook:
1971
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1972
	  echo "Found revision control files in final archive." 1>&2; \
1973
	  exit 1; \
1974
	fi
1975
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1976
	  echo "Found Python byte code in final archive." 1>&2; \
1977
	  exit 1; \
1978
	fi
1979
	if find $(top_distdir) -name '*~' | grep .; then \
1980
	  echo "Found backup files in final archive." 1>&2; \
1981
	  exit 1; \
1982
	fi
1983
# Empty files or directories should not be distributed. They can cause
1984
# unnecessary warnings for packagers. Directories used by automake during
1985
# distcheck must be excluded.
1986
	if find $(top_distdir) -empty -and -not \( \
1987
	    -path $(top_distdir)/_build -or \
1988
	    -path $(top_distdir)/_inst \) | grep .; then \
1989
	  echo "Found empty files or directories in final archive." 1>&2; \
1990
	  exit 1; \
1991
	fi
1992
	if test -e $(top_distdir)/doc/man-html; then \
1993
	  echo "Found documentation including man pages in final archive" >&2; \
1994
	  exit 1; \
1995
	fi
1996

    
1997
# Backwards compatible distcheck-release target
1998
distcheck-release: distcheck
1999

    
2000
distrebuildcheck: dist
2001
	set -e; \
2002
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
2003
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
2004
	cd $$builddir; \
2005
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
2006
	cd $(distdir); \
2007
	./configure; \
2008
	$(MAKE) maintainer-clean; \
2009
	cp $(abs_srcdir)/vcs-version .; \
2010
	./configure; \
2011
	$(MAKE) $(AM_MAKEFLAGS)
2012

    
2013
dist-release: dist
2014
	set -e; \
2015
	for i in $(DIST_ARCHIVES); do \
2016
	  echo -n "Checking $$i ... "; \
2017
	  autotools/check-tar < $$i; \
2018
	  echo OK; \
2019
	done
2020

    
2021
install-exec-local:
2022
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
2023
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
2024
	  "$(DESTDIR)${localstatedir}/run/ganeti"
2025

    
2026
.PHONY: apidoc
2027
if WANT_HSAPIDOC
2028
apidoc: py-apidoc hs-apidoc
2029
else
2030
apidoc: py-apidoc
2031
endif
2032

    
2033
.PHONY: py-apidoc
2034
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
2035
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
2036
	$(RUN_IN_TEMPDIR) epydoc -v \
2037
	  --conf $(CURDIR)/epydoc.conf \
2038
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
2039

    
2040
.PHONY: hs-apidoc
2041
hs-apidoc: $(APIDOC_HS_DIR)/index.html
2042

    
2043
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
2044
	@test -n "$(HSCOLOUR)" || \
2045
	    { echo 'HsColour' not found during configure; exit 1; }
2046
	@test -n "$(HADDOCK)" || \
2047
	    { echo 'haddock' not found during configure; exit 1; }
2048
	rm -rf $(APIDOC_HS_DIR)/*
2049
	for i in $(ALL_APIDOC_HS_DIRS); do \
2050
	  @mkdir_p@ $$i; \
2051
	  $(HSCOLOUR) -print-css > $$i/hscolour.css; \
2052
	done
2053
	set -e ; \
2054
	export LC_ALL=en_US.UTF-8; \
2055
	OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
2056
	if [ "$(HS_PARALLEL3)" ]; \
2057
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
2058
	fi; \
2059
	if [ "$(HS_REGEX_PCRE)" ]; \
2060
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
2061
	fi; \
2062
	for file in $(HS_LIBTESTBUILT_SRCS); do \
2063
	  f_nosrc=$${file##src/}; \
2064
	  f_notst=$${f_nosrc##test/hs/}; \
2065
	  f_html=$${f_notst%%.hs}.html; \
2066
	  $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
2067
	done ; \
2068
	$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
2069
	  -t ganeti -p src/haddock-prologue \
2070
	  --source-module="%{MODULE/.//}.html" \
2071
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
2072
	  $$OPTGHC \
2073
	  $(HS_LIBTESTBUILT_SRCS)
2074

    
2075
.PHONY: TAGS
2076
TAGS: $(GENERATED_FILES)
2077
	rm -f TAGS
2078
	$(GHC) -e ":etags" -v0 \
2079
	  $(filter-out -O -Werror,$(HFLAGS)) \
2080
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
2081
	  $(HS_LIBTEST_SRCS)
2082
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
2083
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
2084
	  -path './qa/*.py' | \
2085
	  etags -l python -a -
2086

    
2087
.PHONY: coverage
2088

    
2089
COVERAGE_TESTS=
2090
if WANT_HTOOLS
2091
COVERAGE_TESTS += hs-coverage
2092
endif
2093
if PY_UNIT
2094
COVERAGE_TESTS += py-coverage
2095
endif
2096

    
2097
coverage: $(COVERAGE_TESTS)
2098

    
2099
.PHONY: py-coverage
2100
py-coverage: $(GENERATED_FILES) $(python_tests)
2101
	@test -n "$(PYCOVERAGE)" || \
2102
	    { echo 'python-coverage' not found during configure; exit 1; }
2103
	set -e; \
2104
	COVERAGE=$(PYCOVERAGE) \
2105
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
2106
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
2107
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
2108
	$(PLAIN_TESTS_ENVIRONMENT) \
2109
	$(abs_top_srcdir)/autotools/gen-py-coverage \
2110
	$(python_tests)
2111

    
2112
.PHONY: hs-coverage
2113
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
2114
	rm -f *.tix
2115
	$(MAKE) $(AM_MAKEFLAGS) hs-check
2116
	@mkdir_p@ $(COVERAGE_HS_DIR)
2117
	hpc sum --union $(HPCEXCL) \
2118
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
2119
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
2120
	hpc report coverage-hs.tix
2121
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
2122

    
2123
# Special "kind-of-QA" target for htools, needs special setup (all
2124
# tools compiled with -fhpc)
2125
.PHONY: live-test
2126
live-test: all
2127
	set -e ; \
2128
	cd src; \
2129
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
2130
	rm -f *.tix *.mix; \
2131
	./live-test.sh; \
2132
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
2133
	  --output=live-test.tix ; \
2134
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
2135
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
2136
	  --srcdir=.. $(HPCEXCL) ; \
2137
	hpc report --srcdir=.. live-test $(HPCEXCL)
2138

    
2139
commit-check: autotools-check distcheck lint apidoc
2140

    
2141
autotools-check:
2142
	TESTDATA_DIR=./test/data shelltest $(SHELLTESTARGS) \
2143
  $(abs_top_srcdir)/test/autotools/*-*.test \
2144
  -- --hide-successes
2145

    
2146
.PHONY: gitignore-check
2147
gitignore-check:
2148
	@if [ -n "`git status --short`" ]; then \
2149
	  echo "Git status is not clean!" 1>&2 ; \
2150
	  git status --short; \
2151
	  exit 1; \
2152
	fi
2153

    
2154
# target to rebuild all man pages (both groff and html output)
2155
.PHONY: man
2156
man: $(man_MANS) $(manhtml)
2157

    
2158
# Target that builds all binaries (including those that are not
2159
# rebuilt except when running the tests)
2160
.PHONY: really-all
2161
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
2162

    
2163
# we don't need the ancient implicit rules:
2164
%: %,v
2165
%: RCS/%,v
2166
%: RCS/%
2167
%: s.%
2168
%: SCCS/s.%
2169

    
2170
-include ./Makefile.local
2171

    
2172
# vim: set noet :