Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ bd39b6bb

History | View | Annotate | Download (64.3 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
	test/py/cmdlib \
141
	test/py/cmdlib/testsupport \
142
	tools
143

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

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

    
158
BUILDTIME_DIRS = \
159
	$(BUILDTIME_DIR_AUTOCREATE) \
160
	doc/html \
161
	doc/man-html
162

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

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

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

    
185
maintainer-clean-local:
186
	rm -rf $(BUILDTIME_DIRS)
187

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

    
224
GENERATED_FILES = \
225
	$(built_base_sources) \
226
	$(BUILT_PYTHON_SOURCES) \
227
	$(PYTHON_BOOTSTRAP)
228

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

    
236
if ENABLE_MOND
237
HS_GENERATED_FILES += src/ganeti-mond
238
endif
239
endif
240

    
241
built_base_sources = \
242
	stamp-directories \
243
	stamp-srclinks
244

    
245
built_python_base_sources = \
246
	lib/_autoconf.py \
247
	lib/_vcsversion.py \
248
	lib/opcodes.py
249

    
250
BUILT_PYTHON_SOURCES = \
251
	$(built_python_base_sources) \
252
	lib/_generated_rpc.py
253

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

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

    
269
nodist_pkgpython_PYTHON = \
270
	$(BUILT_PYTHON_SOURCES)
271

    
272
noinst_PYTHON = \
273
	lib/build/__init__.py \
274
	lib/build/shell_example_lexer.py \
275
	lib/build/sphinx_ext.py
276

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

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

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

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

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

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

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

    
382
confd_PYTHON = \
383
	lib/confd/__init__.py \
384
	lib/confd/client.py
385

    
386
masterd_PYTHON = \
387
	lib/masterd/__init__.py \
388
	lib/masterd/iallocator.py \
389
	lib/masterd/instance.py
390

    
391
impexpd_PYTHON = \
392
	lib/impexpd/__init__.py
393

    
394
watcher_PYTHON = \
395
	lib/watcher/__init__.py \
396
	lib/watcher/nodemaint.py \
397
	lib/watcher/state.py
398

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

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

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

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

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

    
498
# Haskell programs to be installed in $PREFIX/bin
499
HS_BIN_PROGS=src/htools
500

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

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

    
516
# All Haskell non-test programs to be compiled but not automatically installed
517
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
518

    
519
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller
520
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
521

    
522
HS_ALL_PROGS = \
523
	$(HS_PROGS) \
524
	test/hs/hpc-htools \
525
	test/hs/hpc-mon-collector \
526
	test/hs/htest \
527
	$(HS_COMPILE_PROGS)
528

    
529
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
530
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
531

    
532
HFLAGS = \
533
	-O -Wall -Werror -isrc \
534
	-fwarn-monomorphism-restriction \
535
	-fwarn-tabs \
536
	$(GHC_BYVERSION_FLAGS)
537

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

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

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

    
695
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
696

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

    
708
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
709

    
710
$(RUN_IN_TEMPDIR): | stamp-directories
711

    
712
doc/html/index.html: ENABLE_MANPAGES =
713
doc/man-html/index.html: ENABLE_MANPAGES = 1
714
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
715

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

    
753
doc/html: doc/html/index.html
754

    
755
doc/man-html: doc/man-html/index.html
756

    
757
doc/install-quick.rst: INSTALL
758
doc/news.rst: NEWS
759
doc/upgrade.rst: UPGRADE
760

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

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

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

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

    
805
if HAS_SPHINX
806
if MANPAGES_IN_DOC
807
noinst_DATA += doc/man-html
808
else
809
noinst_DATA += doc/html
810
endif
811
endif
812

    
813
gnt_scripts = \
814
	scripts/gnt-backup \
815
	scripts/gnt-cluster \
816
	scripts/gnt-debug \
817
	scripts/gnt-group \
818
	scripts/gnt-instance \
819
	scripts/gnt-job \
820
	scripts/gnt-network \
821
	scripts/gnt-node \
822
	scripts/gnt-os \
823
	scripts/gnt-storage
824

    
825
PYTHON_BOOTSTRAP_SBIN = \
826
	daemons/ganeti-masterd \
827
	daemons/ganeti-noded \
828
	daemons/ganeti-rapi \
829
	daemons/ganeti-watcher \
830
	$(gnt_scripts)
831

    
832
PYTHON_BOOTSTRAP = \
833
	$(PYTHON_BOOTSTRAP_SBIN) \
834
	tools/burnin \
835
	tools/ensure-dirs \
836
	tools/node-cleanup \
837
	tools/node-daemon-setup \
838
	tools/prepare-node-join
839

    
840
qa_scripts = \
841
	qa/__init__.py \
842
	qa/ganeti-qa.py \
843
	qa/qa_cluster.py \
844
	qa/qa_config.py \
845
	qa/qa_daemon.py \
846
	qa/qa_env.py \
847
	qa/qa_error.py \
848
	qa/qa_group.py \
849
	qa/qa_instance.py \
850
	qa/qa_instance_utils.py \
851
	qa/qa_job.py \
852
	qa/qa_monitoring.py \
853
	qa/qa_node.py \
854
	qa/qa_os.py \
855
	qa/qa_rapi.py \
856
	qa/qa_tags.py \
857
	qa/qa_utils.py
858

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

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

    
886
# for the test/hs/htest binary, we need to enable profiling/coverage
887
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
888

    
889
# we compile the hpc-htools binary with the program coverage
890
test/hs/hpc-htools: HEXTRA_INT=-fhpc
891

    
892
# we compile the hpc-mon-collector binary with the program coverage
893
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
894

    
895
# test dependency
896
test/hs/offline-test.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
897

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

    
913
hs-prof-quick:
914
	@if [ -z "$(TARGET)" ]; then \
915
	  echo "You need to define TARGET when running this rule" 1>&2; \
916
	  exit 1; \
917
	fi
918
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
919

    
920
dist_sbin_SCRIPTS = \
921
	tools/ganeti-listrunner
922

    
923
nodist_sbin_SCRIPTS = \
924
	$(PYTHON_BOOTSTRAP_SBIN) \
925
	daemons/ganeti-cleaner
926

    
927
if ENABLE_CONFD
928
src/ganeti-confd: src/hconfd
929
	cp -f $< $@
930

    
931
src/ganeti-luxid: src/hluxid
932
	cp -f $< $@
933

    
934
nodist_sbin_SCRIPTS += src/ganeti-confd
935
nodist_sbin_SCRIPTS += src/ganeti-luxid
936
endif
937

    
938
if ENABLE_MOND
939
nodist_sbin_SCRIPTS += src/ganeti-mond
940
endif
941

    
942
python_scripts = \
943
	tools/cfgshell \
944
	tools/cfgupgrade \
945
	tools/cfgupgrade12 \
946
	tools/cluster-merge \
947
	tools/confd-client \
948
	tools/fmtjson \
949
	tools/lvmstrap \
950
	tools/move-instance \
951
	tools/ovfconverter \
952
	tools/sanitize-config
953

    
954
dist_tools_SCRIPTS = \
955
	$(python_scripts) \
956
	tools/burnin \
957
	tools/kvm-console-wrapper \
958
	tools/master-ip-setup \
959
	tools/xen-console-wrapper
960

    
961
nodist_tools_python_scripts = \
962
	tools/node-cleanup
963

    
964
nodist_tools_SCRIPTS = \
965
	$(nodist_tools_python_scripts) \
966
	tools/users-setup \
967
	tools/vcluster-setup
968

    
969
pkglib_python_scripts = \
970
	daemons/import-export \
971
	tools/check-cert-expired
972

    
973
nodist_pkglib_python_scripts = \
974
	tools/ensure-dirs \
975
	tools/node-daemon-setup \
976
	tools/prepare-node-join
977

    
978
myexeclib_SCRIPTS = \
979
	daemons/daemon-util \
980
	tools/kvm-ifup \
981
	tools/vif-ganeti \
982
	tools/net-common \
983
	$(pkglib_python_scripts) \
984
	$(HS_MYEXECLIB_PROGS)
985

    
986
nodist_myexeclib_SCRIPTS = \
987
	$(nodist_pkglib_python_scripts)
988

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

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

    
1081
# Remove extensions from all filenames in man_MANS
1082
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
1083

    
1084
manrst = $(patsubst %,%.rst,$(mannoext))
1085
manhtml = $(patsubst %.rst,%.html,$(manrst))
1086
mangen = $(patsubst %.rst,%.gen,$(manrst))
1087
maninput = \
1088
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
1089
	$(patsubst %.html,%.html.in,$(manhtml)) \
1090
	$(mangen)
1091

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

    
1238

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

    
1327
python_test_support = \
1328
	test/py/__init__.py \
1329
	test/py/lockperf.py \
1330
	test/py/testutils.py \
1331
	test/py/mocks.py \
1332
	test/py/cmdlib/__init__.py \
1333
	test/py/cmdlib/testsupport/__init__.py \
1334
	test/py/cmdlib/testsupport/cmdlib_testcase.py \
1335
	test/py/cmdlib/testsupport/config_mock.py \
1336
	test/py/cmdlib/testsupport/iallocator_mock.py \
1337
	test/py/cmdlib/testsupport/lock_manager_mock.py \
1338
	test/py/cmdlib/testsupport/processor_mock.py \
1339
	test/py/cmdlib/testsupport/rpc_runner_mock.py
1340

    
1341
haskell_tests = test/hs/htest
1342

    
1343
dist_TESTS = \
1344
	test/py/check-cert-expired_unittest.bash \
1345
	test/py/daemon-util_unittest.bash \
1346
	test/py/ganeti-cleaner_unittest.bash \
1347
	test/py/import-export_unittest.bash \
1348
	test/py/cli-test.bash \
1349
	test/py/bash_completion.bash
1350

    
1351
if PY_UNIT
1352
dist_TESTS += $(python_tests)
1353
endif
1354

    
1355
nodist_TESTS =
1356
check_SCRIPTS =
1357

    
1358
if WANT_HSTESTS
1359
nodist_TESTS += $(haskell_tests)
1360
dist_TESTS += test/hs/offline-test.sh
1361
check_SCRIPTS += \
1362
	test/hs/hpc-htools \
1363
	test/hs/hpc-mon-collector \
1364
	$(HS_BUILT_TEST_HELPERS)
1365
endif
1366

    
1367
TESTS = $(dist_TESTS) $(nodist_TESTS)
1368

    
1369
# Environment for all tests
1370
PLAIN_TESTS_ENVIRONMENT = \
1371
	PYTHONPATH=.:./test/py \
1372
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1373
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1374
	$(RUN_IN_TEMPDIR)
1375

    
1376
# Environment for tests run by automake
1377
TESTS_ENVIRONMENT = \
1378
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1379

    
1380
all_python_code = \
1381
	$(dist_sbin_SCRIPTS) \
1382
	$(python_scripts) \
1383
	$(pkglib_python_scripts) \
1384
	$(nodist_pkglib_python_scripts) \
1385
	$(nodist_tools_python_scripts) \
1386
	$(pkgpython_PYTHON) \
1387
	$(client_PYTHON) \
1388
	$(cmdlib_PYTHON) \
1389
	$(hypervisor_PYTHON) \
1390
	$(storage_PYTHON) \
1391
	$(rapi_PYTHON) \
1392
	$(server_PYTHON) \
1393
	$(pytools_PYTHON) \
1394
	$(http_PYTHON) \
1395
	$(confd_PYTHON) \
1396
	$(masterd_PYTHON) \
1397
	$(impexpd_PYTHON) \
1398
	$(utils_PYTHON) \
1399
	$(watcher_PYTHON) \
1400
	$(noinst_PYTHON) \
1401
	$(qa_scripts)
1402

    
1403
if PY_UNIT
1404
all_python_code += $(python_tests)
1405
all_python_code += $(python_test_support)
1406
endif
1407

    
1408
srclink_files = \
1409
	man/footer.rst \
1410
	test/py/check-cert-expired_unittest.bash \
1411
	test/py/daemon-util_unittest.bash \
1412
	test/py/ganeti-cleaner_unittest.bash \
1413
	test/py/import-export_unittest.bash \
1414
	test/py/cli-test.bash \
1415
	test/py/bash_completion.bash \
1416
	test/hs/offline-test.sh \
1417
	test/hs/cli-tests-defs.sh \
1418
	$(all_python_code) \
1419
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1420
	$(docinput)
1421

    
1422
check_python_code = \
1423
	$(BUILD_BASH_COMPLETION) \
1424
	$(CHECK_IMPORTS) \
1425
	$(CHECK_HEADER) \
1426
	$(DOCPP) \
1427
	$(all_python_code)
1428

    
1429
lint_python_code = \
1430
	ganeti \
1431
	ganeti/http/server.py \
1432
	$(dist_sbin_SCRIPTS) \
1433
	$(python_scripts) \
1434
	$(pkglib_python_scripts) \
1435
	$(BUILD_BASH_COMPLETION) \
1436
	$(CHECK_IMPORTS) \
1437
	$(CHECK_HEADER) \
1438
	$(DOCPP) \
1439
	$(PYTHON_BOOTSTRAP)
1440

    
1441
standalone_python_modules = \
1442
	lib/rapi/client.py \
1443
	tools/ganeti-listrunner
1444

    
1445
pep8_python_code = \
1446
	ganeti \
1447
	ganeti/http/server.py \
1448
	$(dist_sbin_SCRIPTS) \
1449
	$(python_scripts) \
1450
	$(pkglib_python_scripts) \
1451
	$(BUILD_BASH_COMPLETION) \
1452
	$(CHECK_HEADER) \
1453
	$(DOCPP) \
1454
	$(PYTHON_BOOTSTRAP) \
1455
	qa \
1456
	$(python_test_support)
1457

    
1458
test/py/daemon-util_unittest.bash: daemons/daemon-util
1459

    
1460
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1461

    
1462
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1463

    
1464
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1465
	sed -f $(REPLACE_VARS_SED) < $< > $@
1466
	chmod +x $@
1467

    
1468
tools/vif-ganeti: tools/vif-ganeti.in $(REPLACE_VARS_SED)
1469
	sed -f $(REPLACE_VARS_SED) < $< > $@
1470
	chmod +x $@
1471

    
1472
tools/net-common: tools/net-common.in $(REPLACE_VARS_SED)
1473
	sed -f $(REPLACE_VARS_SED) < $< > $@
1474
	chmod +x $@
1475

    
1476
tools/users-setup: tools/users-setup.in $(REPLACE_VARS_SED)
1477
	sed -f $(REPLACE_VARS_SED) < $< > $@
1478
	chmod +x $@
1479

    
1480
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1481
	sed -f $(REPLACE_VARS_SED) < $< > $@
1482
	chmod +x $@
1483

    
1484
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1485
	sed -f $(REPLACE_VARS_SED) < $< > $@
1486
	chmod +x $@
1487

    
1488
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1489
	sed -f $(REPLACE_VARS_SED) < $< > $@
1490

    
1491
doc/examples/bash_completion: BC_ARGS = --compact
1492
doc/examples/bash_completion-debug: BC_ARGS =
1493

    
1494
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1495
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1496
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1497
	daemons/ganeti-cleaner \
1498
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1499
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1500
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1501

    
1502
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1503
	lib/build/shell_example_lexer.py \
1504
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1505
	@echo "Checking $< for hardcoded paths..."
1506
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1507
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1508
	  exit 1; \
1509
	fi
1510
	set -e ; \
1511
	trap 'echo auto-removing $@; rm $@' EXIT; \
1512
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1513
	$(CHECK_MAN_REFERENCES) $@; \
1514
	trap - EXIT
1515

    
1516
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1517
	@test -n "$(PANDOC)" || \
1518
	  { echo 'pandoc' not found during configure; exit 1; }
1519
	set -o pipefail -e; \
1520
	trap 'echo auto-removing $@; rm $@' EXIT; \
1521
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1522
	  sed -e 's/\\@/@/g' > $@; \
1523
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1524
	$(CHECK_MAN_DASHES) $@; \
1525
	trap - EXIT
1526

    
1527
man/%.html.in: man/%.gen man/footer.rst
1528
	@test -n "$(PANDOC)" || \
1529
	  { echo 'pandoc' not found during configure; exit 1; }
1530
	set -o pipefail ; \
1531
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1532
	  sed -e 's/\\@/@/g' > $@
1533

    
1534
man/%: man/%.in  $(REPLACE_VARS_SED)
1535
	sed -f $(REPLACE_VARS_SED) < $< > $@
1536

    
1537
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1538
	sed -f $(REPLACE_VARS_SED) < $< > $@
1539

    
1540
vcs-version:
1541
	if test -d .git; then \
1542
	  git describe > $@; \
1543
	elif test ! -f $@ ; then \
1544
	  echo "Cannot auto-generate $@ file"; exit 1; \
1545
	fi
1546

    
1547
.PHONY: clean-vcs-version
1548
clean-vcs-version:
1549
	rm -f vcs-version
1550

    
1551
.PHONY: regen-vcs-version
1552
regen-vcs-version:
1553
	@set -e; \
1554
	cd $(srcdir); \
1555
	if test -d .git; then \
1556
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1557
	  git describe > $$T; \
1558
	  if ! cmp --quiet $$T vcs-version; then \
1559
	    mv $$T vcs-version; \
1560
	  fi; \
1561
	fi
1562

    
1563
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1564
	vcs-version $(built_base_sources)
1565
	set -e; \
1566
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1567
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1568

    
1569
src/Ganeti/Constants.hs: src/Ganeti/Constants.hs.in \
1570
	lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1571
	lib/jstore.py $(RUN_IN_TEMPDIR) \
1572
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1573
	| lib/_vcsversion.py
1574
	set -e; \
1575
	{ cat $< ; \
1576
	  PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
1577
	} > $@
1578

    
1579
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1580
	hsc2hs -o $@ $<
1581

    
1582
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1583
	$(built_base_sources)
1584
	set -e; \
1585
	{ cat $< ; \
1586
	  echo ; \
1587
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1588
	    echo "import $$name ()" ; \
1589
	  done ; \
1590
	} > $@
1591

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

    
1674
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1675
	set -e; \
1676
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1677
	{ echo '# This file is automatically generated, do not edit!'; \
1678
	  echo '#'; \
1679
	  echo ''; \
1680
	  echo '"""Build-time VCS version number for Ganeti.'; \
1681
	  echo '';\
1682
	  echo 'This file is autogenerated by the build process.'; \
1683
	  echo 'For any changes you need to re-run ./configure (and'; \
1684
	  echo 'not edit by hand).'; \
1685
	  echo ''; \
1686
	  echo '"""'; \
1687
	  echo ''; \
1688
	  echo '# pylint: disable=C0301,C0324'; \
1689
	  echo '# because this is autogenerated, we do not want'; \
1690
	  echo '# style warnings' ; \
1691
	  echo ''; \
1692
	  echo "VCS_VERSION = '$$VCSVER'"; \
1693
	} > $@
1694

    
1695
lib/opcodes.py: Makefile src/hs2py src/Ganeti/Constants.hs \
1696
		lib/opcodes.py.in_before lib/opcodes.py.in_after \
1697
		| stamp-directories
1698
	cat $(abs_top_srcdir)/lib/opcodes.py.in_before > $@
1699
	src/hs2py >> $@
1700
	cat $(abs_top_srcdir)/lib/opcodes.py.in_after >> $@
1701

    
1702
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1703
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1704

    
1705
$(SHELL_ENV_INIT): Makefile stamp-directories
1706
	set -e; \
1707
	{ echo '# Allow overriding for tests'; \
1708
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1709
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1710
	  echo; \
1711
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1712
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1713
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1714
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1715
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1716
	} > $@
1717

    
1718
## Writes sed script to replace placeholders with build-time values. The
1719
## additional quotes after the first @ sign are necessary to stop configure
1720
## from replacing those values as well.
1721
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1722
	set -e; \
1723
	{ echo 's#@''PREFIX@#$(prefix)#g'; \
1724
	  echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1725
	  echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1726
	  echo 's#@''BINDIR@#$(bindir)#g'; \
1727
	  echo 's#@''SBINDIR@#$(sbindir)#g'; \
1728
	  echo 's#@''LIBDIR@#$(libdir)#g'; \
1729
	  echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1730
	  echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1731
	  echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1732
	  echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1733
	  echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1734
	  echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1735
	  echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1736
	  echo 's#@''PKGLIBDIR@#$(pkglibdir)#g'; \
1737
	  echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1738
	  echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1739
	  echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1740
	  echo 's#@''GNTLUXIDUSER@#$(LUXID_USER)#g'; \
1741
	  echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1742
	  echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1743
	  echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1744
	  echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1745
	  echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1746
	  echo 's#@''GNTLUXIDGROUP@#$(LUXID_GROUP)#g'; \
1747
	  echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1748
	  echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1749
	  echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1750
	  echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1751
	  echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1752
	  echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1753
	  echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1754
	  echo; \
1755
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1756
	  echo '  r $(SHELL_ENV_INIT)'; \
1757
	  echo '  d'; \
1758
	  echo '}'; \
1759
	} > $@
1760

    
1761
# Using deferred evaluation
1762
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1763
daemons/ganeti-watcher: MODULE = ganeti.watcher
1764
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1765
tools/burnin: MODULE = ganeti.tools.burnin
1766
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1767
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1768
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1769
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1770
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1771

    
1772
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1773
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1774
	set -e; \
1775
	{ echo '#!/usr/bin/python'; \
1776
	  echo '# This file is automatically generated, do not edit!'; \
1777
	  echo "# Edit $(MODULE) instead."; \
1778
	  echo; \
1779
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1780
	  echo; \
1781
	  echo '# pylint: disable=C0103'; \
1782
	  echo '# C0103: Invalid name'; \
1783
	  echo; \
1784
	  echo 'import sys'; \
1785
	  echo 'import $(MODULE) as main'; \
1786
	  echo; \
1787
	  echo '# Temporarily alias commands until bash completion'; \
1788
	  echo '# generator is changed'; \
1789
	  echo 'if hasattr(main, "commands"):'; \
1790
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1791
	  echo 'if hasattr(main, "aliases"):'; \
1792
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1793
	  echo; \
1794
	  echo 'if __name__ == "__main__":'; \
1795
	  echo '  sys.exit(main.Main())'; \
1796
	} > $@
1797
	chmod u+x $@
1798

    
1799
$(HS_BUILT_TEST_HELPERS): Makefile
1800
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1801
	set -e; \
1802
	{ echo '#!/bin/sh'; \
1803
	  echo '# This file is automatically generated, do not edit!'; \
1804
	  echo "# Edit Makefile.am instead."; \
1805
	  echo; \
1806
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
1807
	} > $@
1808
	chmod u+x $@
1809

    
1810
stamp-directories: Makefile
1811
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1812
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1813
	touch $@
1814

    
1815
# We need to create symlinks because "make distcheck" will not install Python
1816
# files when building.
1817
stamp-srclinks: Makefile | stamp-directories
1818
	set -e; \
1819
	for i in $(srclink_files); do \
1820
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1821
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1822
	  fi; \
1823
	done
1824
	touch $@
1825

    
1826
.PHONY: ganeti
1827
ganeti:
1828
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1829

    
1830
.PHONY: check-dirs
1831
check-dirs: $(GENERATED_FILES)
1832
	@set -e; \
1833
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1834
	  error=; \
1835
	  while read dir; do \
1836
	    case "$$dir" in \
1837
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1838
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1839
	    esac; \
1840
	  done; \
1841
	  for dir in $(DIRS); do \
1842
	    if ! test -d "$$dir"; then \
1843
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1844
	      error=1; \
1845
	    fi \
1846
	  done; \
1847
	  test -z "$$error"; \
1848
	}
1849

    
1850
.PHONY: check-local
1851
check-local: check-dirs $(GENERATED_FILES)
1852
	$(CHECK_PYTHON_CODE) $(check_python_code)
1853
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1854
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1855
	RELEASE=$(PACKAGE_VERSION) $(CHECK_NEWS) < $(top_srcdir)/NEWS
1856
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1857
	error= ; \
1858
	if [ "x`echo $(VERSION_SUFFIX)|grep 'alpha'`" == "x" ]; then \
1859
	  expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1860
	  if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1861
	    echo "Incorrect version in README, expected $$expver" >&2; \
1862
	    error=1; \
1863
	  fi; \
1864
	  for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1865
	      doc/security.rst; do \
1866
	    if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1867
	      "Documents Ganeti version $$expver"; then \
1868
	      echo "Incorrect version in $$file, expected $$expver" >&2; \
1869
	      error=1; \
1870
	    fi; \
1871
	  done; \
1872
	  if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1873
	    echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
1874
	    error=1; \
1875
	  fi; \
1876
	  if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
1877
	    ".. Last updated for Ganeti $$expver"; then \
1878
	    echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
1879
	    error=1; \
1880
	  fi; \
1881
	fi; \
1882
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
1883
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
1884
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
1885
	    error=1; \
1886
	  fi; \
1887
	done; \
1888
	test -z "$$error"
1889

    
1890
.PHONY: hs-test-%
1891
hs-test-%: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1892
	@rm -f htest.tix
1893
	test/hs/htest -t $*
1894

    
1895
.PHONY: hs-tests
1896
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1897
	@rm -f htest.tix
1898
	./test/hs/htest
1899

    
1900
.PHONY: hs-shell-%
1901
hs-shell-%: test/hs/hpc-htools test/hs/hpc-mon-collector \
1902
            $(HS_BUILT_TEST_HELPERS)
1903
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1904
	HBINARY="./test/hs/hpc-htools" \
1905
	SHELLTESTARGS=$(SHELLTESTARGS) \
1906
	./test/hs/offline-test.sh $*
1907

    
1908
.PHONY: hs-shell
1909
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
1910
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1911
	HBINARY="./test/hs/hpc-htools" \
1912
	SHELLTESTARGS=$(SHELLTESTARGS) \
1913
	./test/hs/offline-test.sh
1914

    
1915
.PHONY: hs-check
1916
hs-check: hs-tests hs-shell
1917

    
1918
# E111: indentation is not a multiple of four
1919
# E121: continuation line indentation is not a multiple of four
1920
#       (since our indent level is not 4)
1921
# E125: continuation line does not distinguish itself from next logical line
1922
#       (since our indent level is not 4)
1923
# E127: continuation line over-indented for visual indent
1924
#       (since our indent level is not 4)
1925
# note: do NOT add E128 here; it's a valid style error in most cases!
1926
# I've seen real errors, but also some cases were we indent wrongly
1927
# due to line length; try to rework the cases where it is triggered,
1928
# instead of silencing it
1929
# E261: at least two spaces before inline comment
1930
# E501: line too long (80 characters)
1931
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1932

    
1933
# For excluding pep8 expects filenames only, not whole paths
1934
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1935

    
1936
LINT_TARGETS = pylint pylint-qa pylint-test
1937
if HAS_PEP8
1938
LINT_TARGETS += pep8
1939
endif
1940
if HAS_HLINT
1941
LINT_TARGETS += hlint
1942
endif
1943

    
1944
.PHONY: lint
1945
lint: $(LINT_TARGETS)
1946

    
1947
.PHONY: pylint
1948
pylint: $(GENERATED_FILES)
1949
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1950
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1951

    
1952
.PHONY: pylint-qa
1953
pylint-qa: $(GENERATED_FILES)
1954
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1955
	cd $(top_srcdir)/qa && \
1956
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1957
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1958
# FIXME: lint all test code, not just the newly added test support
1959
pylint-test: $(GENERATED_FILES)
1960
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1961
	cd $(top_srcdir) && \
1962
		PYTHONPATH=.:./test/py $(PYLINT) $(LINT_OPTS) \
1963
		--rcfile=pylintrc-test  $(python_test_support)
1964

    
1965
.PHONY: pep8
1966
pep8: $(GENERATED_FILES)
1967
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1968
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1969
	  --repeat $(pep8_python_code)
1970

    
1971
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1972
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
1973
.PHONY: hlint
1974
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
1975
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1976
	@rm -f doc/hs-lint.html
1977
	if tty -s; then C="-c"; else C=""; fi; \
1978
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1979
	  --ignore "Use first" \
1980
	  --ignore "Use &&&" \
1981
	  --ignore "Use void" \
1982
	  --ignore "Reduce duplication" \
1983
	  --hint src/lint-hints \
1984
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1985
	@if [ ! -f doc/hs-lint.html ]; then \
1986
	  echo "All good" > doc/hs-lint.html; \
1987
	fi
1988

    
1989
# a dist hook rule for updating the vcs-version file; this is
1990
# hardcoded due to where it needs to build the file...
1991
dist-hook:
1992
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1993
	rm -f $(top_distdir)/vcs-version
1994
	cp -p $(srcdir)/vcs-version $(top_distdir)
1995

    
1996
# a distcheck hook rule for catching revision control directories
1997
distcheck-hook:
1998
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1999
	  echo "Found revision control files in final archive." 1>&2; \
2000
	  exit 1; \
2001
	fi
2002
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
2003
	  echo "Found Python byte code in final archive." 1>&2; \
2004
	  exit 1; \
2005
	fi
2006
	if find $(top_distdir) -name '*~' | grep .; then \
2007
	  echo "Found backup files in final archive." 1>&2; \
2008
	  exit 1; \
2009
	fi
2010
# Empty files or directories should not be distributed. They can cause
2011
# unnecessary warnings for packagers. Directories used by automake during
2012
# distcheck must be excluded.
2013
	if find $(top_distdir) -empty -and -not \( \
2014
	    -path $(top_distdir)/_build -or \
2015
	    -path $(top_distdir)/_inst \) | grep .; then \
2016
	  echo "Found empty files or directories in final archive." 1>&2; \
2017
	  exit 1; \
2018
	fi
2019
	if test -e $(top_distdir)/doc/man-html; then \
2020
	  echo "Found documentation including man pages in final archive" >&2; \
2021
	  exit 1; \
2022
	fi
2023

    
2024
# Backwards compatible distcheck-release target
2025
distcheck-release: distcheck
2026

    
2027
distrebuildcheck: dist
2028
	set -e; \
2029
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
2030
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
2031
	cd $$builddir; \
2032
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
2033
	cd $(distdir); \
2034
	./configure; \
2035
	$(MAKE) maintainer-clean; \
2036
	cp $(abs_srcdir)/vcs-version .; \
2037
	./configure; \
2038
	$(MAKE) $(AM_MAKEFLAGS)
2039

    
2040
dist-release: dist
2041
	set -e; \
2042
	for i in $(DIST_ARCHIVES); do \
2043
	  echo -n "Checking $$i ... "; \
2044
	  autotools/check-tar < $$i; \
2045
	  echo OK; \
2046
	done
2047

    
2048
install-exec-local:
2049
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
2050
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
2051
	  "$(DESTDIR)${localstatedir}/run/ganeti"
2052

    
2053
.PHONY: apidoc
2054
if WANT_HSAPIDOC
2055
apidoc: py-apidoc hs-apidoc
2056
else
2057
apidoc: py-apidoc
2058
endif
2059

    
2060
.PHONY: py-apidoc
2061
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
2062
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
2063
	$(RUN_IN_TEMPDIR) epydoc -v \
2064
	  --conf $(CURDIR)/epydoc.conf \
2065
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
2066

    
2067
.PHONY: hs-apidoc
2068
hs-apidoc: $(APIDOC_HS_DIR)/index.html
2069

    
2070
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
2071
	@test -n "$(HSCOLOUR)" || \
2072
	    { echo 'HsColour' not found during configure; exit 1; }
2073
	@test -n "$(HADDOCK)" || \
2074
	    { echo 'haddock' not found during configure; exit 1; }
2075
	rm -rf $(APIDOC_HS_DIR)/*
2076
	for i in $(ALL_APIDOC_HS_DIRS); do \
2077
	  @mkdir_p@ $$i; \
2078
	  $(HSCOLOUR) -print-css > $$i/hscolour.css; \
2079
	done
2080
	set -e ; \
2081
	export LC_ALL=en_US.UTF-8; \
2082
	OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
2083
	if [ "$(HS_PARALLEL3)" ]; \
2084
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
2085
	fi; \
2086
	if [ "$(HS_REGEX_PCRE)" ]; \
2087
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
2088
	fi; \
2089
	for file in $(HS_LIBTESTBUILT_SRCS); do \
2090
	  f_nosrc=$${file##src/}; \
2091
	  f_notst=$${f_nosrc##test/hs/}; \
2092
	  f_html=$${f_notst%%.hs}.html; \
2093
	  $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
2094
	done ; \
2095
	$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
2096
	  -t ganeti -p src/haddock-prologue \
2097
	  --source-module="%{MODULE/.//}.html" \
2098
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
2099
	  $$OPTGHC \
2100
	  $(HS_LIBTESTBUILT_SRCS)
2101

    
2102
.PHONY: TAGS
2103
TAGS: $(GENERATED_FILES)
2104
	rm -f TAGS
2105
	$(GHC) -e ":etags" -v0 \
2106
	  $(filter-out -O -Werror,$(HFLAGS)) \
2107
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
2108
	  $(HS_LIBTEST_SRCS)
2109
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
2110
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
2111
	  -path './qa/*.py' | \
2112
	  etags -l python -a -
2113

    
2114
.PHONY: coverage
2115

    
2116
COVERAGE_TESTS=
2117
if WANT_HTOOLS
2118
COVERAGE_TESTS += hs-coverage
2119
endif
2120
if PY_UNIT
2121
COVERAGE_TESTS += py-coverage
2122
endif
2123

    
2124
coverage: $(COVERAGE_TESTS)
2125

    
2126
.PHONY: py-coverage
2127
py-coverage: $(GENERATED_FILES) $(python_tests)
2128
	@test -n "$(PYCOVERAGE)" || \
2129
	    { echo 'python-coverage' not found during configure; exit 1; }
2130
	set -e; \
2131
	COVERAGE=$(PYCOVERAGE) \
2132
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
2133
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
2134
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
2135
	$(PLAIN_TESTS_ENVIRONMENT) \
2136
	$(abs_top_srcdir)/autotools/gen-py-coverage \
2137
	$(python_tests)
2138

    
2139
.PHONY: hs-coverage
2140
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
2141
	rm -f *.tix
2142
	$(MAKE) $(AM_MAKEFLAGS) hs-check
2143
	@mkdir_p@ $(COVERAGE_HS_DIR)
2144
	hpc sum --union $(HPCEXCL) \
2145
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
2146
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
2147
	hpc report coverage-hs.tix
2148
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
2149

    
2150
# Special "kind-of-QA" target for htools, needs special setup (all
2151
# tools compiled with -fhpc)
2152
.PHONY: live-test
2153
live-test: all
2154
	set -e ; \
2155
	cd src; \
2156
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
2157
	rm -f *.tix *.mix; \
2158
	./live-test.sh; \
2159
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
2160
	  --output=live-test.tix ; \
2161
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
2162
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
2163
	  --srcdir=.. $(HPCEXCL) ; \
2164
	hpc report --srcdir=.. live-test $(HPCEXCL)
2165

    
2166
commit-check: autotools-check distcheck lint apidoc
2167

    
2168
autotools-check:
2169
	TESTDATA_DIR=./test/data shelltest $(SHELLTESTARGS) \
2170
  $(abs_top_srcdir)/test/autotools/*-*.test \
2171
  -- --hide-successes
2172

    
2173
.PHONY: gitignore-check
2174
gitignore-check:
2175
	@if [ -n "`git status --short`" ]; then \
2176
	  echo "Git status is not clean!" 1>&2 ; \
2177
	  git status --short; \
2178
	  exit 1; \
2179
	fi
2180

    
2181
# target to rebuild all man pages (both groff and html output)
2182
.PHONY: man
2183
man: $(man_MANS) $(manhtml)
2184

    
2185
# Target that builds all binaries (including those that are not
2186
# rebuilt except when running the tests)
2187
.PHONY: really-all
2188
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
2189

    
2190
# we don't need the ancient implicit rules:
2191
%: %,v
2192
%: RCS/%,v
2193
%: RCS/%
2194
%: s.%
2195
%: SCCS/s.%
2196

    
2197
-include ./Makefile.local
2198

    
2199
# vim: set noet :