Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ d12b9f66

History | View | Annotate | Download (48.7 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
# Use bash in order to be able to use pipefail
18
SHELL=/bin/bash
19

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

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

    
54
# Delete output file if an error occurred while building it
55
.DELETE_ON_ERROR:
56

    
57
HTOOLS_DIRS = \
58
	htools \
59
	htools/Ganeti \
60
	htools/Ganeti/Confd \
61
	htools/Ganeti/HTools \
62
	htools/Ganeti/HTools/Program \
63
	htools/Ganeti/Query \
64
	htest \
65
	htest/Test \
66
	htest/Test/Ganeti \
67
	htest/Test/Ganeti/Confd \
68
	htest/Test/Ganeti/HTools \
69
	htest/Test/Ganeti/Query
70

    
71
DIRS = \
72
	$(HTOOLS_DIRS) \
73
	autotools \
74
	daemons \
75
	devel \
76
	doc \
77
	doc/examples \
78
	doc/examples/gnt-debug \
79
	doc/examples/hooks \
80
	htest/data \
81
	htest/data/rapi \
82
	htest/shelltests \
83
	lib \
84
	lib/build \
85
	lib/client \
86
	lib/confd \
87
	lib/http \
88
	lib/hypervisor \
89
	lib/impexpd \
90
	lib/masterd \
91
	lib/rapi \
92
	lib/server \
93
	lib/tools \
94
	lib/utils \
95
	lib/watcher \
96
	man \
97
	qa \
98
	test \
99
	test/data \
100
	test/data/ovfdata \
101
	test/data/ovfdata/other \
102
	tools
103

    
104
BUILDTIME_DIR_AUTOCREATE = \
105
	scripts \
106
	$(APIDOC_DIR) \
107
	$(APIDOC_HS_DIR) \
108
	$(APIDOC_HS_DIR)/Ganeti \
109
	$(APIDOC_HS_DIR)/Ganeti/Confd \
110
	$(APIDOC_HS_DIR)/Ganeti/HTools \
111
	$(APIDOC_HS_DIR)/Ganeti/HTools/Program \
112
	$(APIDOC_HS_DIR)/Ganeti/Query \
113
	$(APIDOC_PY_DIR) \
114
	$(COVERAGE_DIR) \
115
	$(COVERAGE_HS_DIR) \
116
	$(COVERAGE_PY_DIR) \
117
	.hpc
118

    
119
BUILDTIME_DIRS = \
120
	$(BUILDTIME_DIR_AUTOCREATE) \
121
	doc/html
122

    
123
DIRCHECK_EXCLUDE = \
124
	$(BUILDTIME_DIRS) \
125
	ganeti-[0-9]*.[0-9]*.[0-9]* \
126
	doc/html/_*
127

    
128
# some helper vars
129
COVERAGE_DIR = doc/coverage
130
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
131
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
132
APIDOC_DIR = doc/api
133
APIDOC_PY_DIR = $(APIDOC_DIR)/py
134
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
135

    
136
MAINTAINERCLEANFILES = \
137
	$(docpng) \
138
	$(maninput) \
139
	doc/install-quick.rst \
140
	doc/news.rst \
141
	doc/upgrade.rst \
142
	vcs-version
143

    
144
maintainer-clean-local:
145
	rm -rf $(BUILDTIME_DIRS)
146

    
147
CLEANFILES = \
148
	$(addsuffix /*.py[co],$(DIRS)) \
149
	$(addsuffix /*.hi,$(HTOOLS_DIRS)) \
150
	$(addsuffix /*.o,$(HTOOLS_DIRS)) \
151
	$(PYTHON_BOOTSTRAP) \
152
	epydoc.conf \
153
	$(REPLACE_VARS_SED) \
154
	$(SHELL_ENV_INIT) \
155
	daemons/daemon-util \
156
	daemons/ganeti-cleaner \
157
	devel/upload \
158
	$(BUILT_EXAMPLES) \
159
	doc/examples/bash_completion \
160
	doc/examples/bash_completion-debug \
161
	lib/_generated_rpc.py \
162
	$(man_MANS) \
163
	$(manhtml) \
164
	tools/kvm-ifup \
165
	tools/vcluster-setup \
166
	stamp-directories \
167
	stamp-srclinks \
168
	$(nodist_pkgpython_PYTHON) \
169
	$(HS_ALL_PROGS) $(HS_BUILT_SRCS) \
170
	$(HS_BUILT_TEST_HELPERS) \
171
	htools/ganeti-confd \
172
	.hpc/*.mix htools/*.tix htest/*.tix \
173
	doc/hs-lint.html
174

    
175
GENERATED_FILES = \
176
	$(built_base_sources) \
177
	$(BUILT_PYTHON_SOURCES) \
178
	$(PYTHON_BOOTSTRAP)
179

    
180
HTOOLS_GENERATED_FILES =
181
if WANT_HTOOLS
182
HTOOLS_GENERATED_FILES += $(HS_PROGS)
183
if ENABLE_CONFD
184
HTOOLS_GENERATED_FILES += htools/hconfd htools/ganeti-confd
185
endif
186
endif
187

    
188
built_base_sources = \
189
	stamp-directories \
190
	stamp-srclinks
191

    
192
built_python_base_sources = \
193
	lib/_autoconf.py \
194
	lib/_vcsversion.py
195

    
196
BUILT_PYTHON_SOURCES = \
197
	$(built_python_base_sources) \
198
	lib/_generated_rpc.py
199

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

    
204
# these are all built from the underlying %.in sources
205
BUILT_EXAMPLES = \
206
	doc/examples/ganeti-kvm-poweroff.initd \
207
	doc/examples/ganeti.cron \
208
	doc/examples/ganeti.initd \
209
	doc/examples/gnt-config-backup \
210
	doc/examples/hooks/ipsec
211

    
212
nodist_pkgpython_PYTHON = \
213
	$(BUILT_PYTHON_SOURCES)
214

    
215
noinst_PYTHON = \
216
	lib/build/__init__.py \
217
	lib/build/shell_example_lexer.py \
218
	lib/build/sphinx_ext.py
219

    
220
pkgpython_PYTHON = \
221
	lib/__init__.py \
222
	lib/asyncnotifier.py \
223
	lib/backend.py \
224
	lib/bdev.py \
225
	lib/bootstrap.py \
226
	lib/cli.py \
227
	lib/cmdlib.py \
228
	lib/compat.py \
229
	lib/config.py \
230
	lib/constants.py \
231
	lib/daemon.py \
232
	lib/errors.py \
233
	lib/ht.py \
234
	lib/jqueue.py \
235
	lib/jstore.py \
236
	lib/locking.py \
237
	lib/luxi.py \
238
	lib/mcpu.py \
239
	lib/netutils.py \
240
	lib/objects.py \
241
	lib/objectutils.py \
242
	lib/opcodes.py \
243
	lib/ovf.py \
244
	lib/pathutils.py \
245
	lib/qlang.py \
246
	lib/query.py \
247
	lib/rpc.py \
248
	lib/rpc_defs.py \
249
	lib/runtime.py \
250
	lib/serializer.py \
251
	lib/ssconf.py \
252
	lib/ssh.py \
253
	lib/storage.py \
254
	lib/uidpool.py \
255
	lib/vcluster.py \
256
	lib/workerpool.py
257

    
258
client_PYTHON = \
259
	lib/client/__init__.py \
260
	lib/client/gnt_backup.py \
261
	lib/client/gnt_cluster.py \
262
	lib/client/gnt_debug.py \
263
	lib/client/gnt_group.py \
264
	lib/client/gnt_instance.py \
265
	lib/client/gnt_job.py \
266
	lib/client/gnt_node.py \
267
	lib/client/gnt_os.py
268

    
269
hypervisor_PYTHON = \
270
	lib/hypervisor/__init__.py \
271
	lib/hypervisor/hv_base.py \
272
	lib/hypervisor/hv_chroot.py \
273
	lib/hypervisor/hv_fake.py \
274
	lib/hypervisor/hv_kvm.py \
275
	lib/hypervisor/hv_lxc.py \
276
	lib/hypervisor/hv_xen.py
277

    
278
rapi_PYTHON = \
279
	lib/rapi/__init__.py \
280
	lib/rapi/baserlib.py \
281
	lib/rapi/client.py \
282
	lib/rapi/client_utils.py \
283
	lib/rapi/connector.py \
284
	lib/rapi/rlib2.py \
285
	lib/rapi/testutils.py
286

    
287
http_PYTHON = \
288
	lib/http/__init__.py \
289
	lib/http/auth.py \
290
	lib/http/client.py \
291
	lib/http/server.py
292

    
293
confd_PYTHON = \
294
	lib/confd/__init__.py \
295
	lib/confd/client.py
296

    
297
masterd_PYTHON = \
298
	lib/masterd/__init__.py \
299
	lib/masterd/iallocator.py \
300
	lib/masterd/instance.py
301

    
302
impexpd_PYTHON = \
303
	lib/impexpd/__init__.py
304

    
305
watcher_PYTHON = \
306
	lib/watcher/__init__.py \
307
	lib/watcher/nodemaint.py \
308
	lib/watcher/state.py
309

    
310
server_PYTHON = \
311
	lib/server/__init__.py \
312
	lib/server/masterd.py \
313
	lib/server/noded.py \
314
	lib/server/rapi.py
315

    
316
pytools_PYTHON = \
317
	lib/tools/__init__.py \
318
	lib/tools/ensure_dirs.py \
319
	lib/tools/prepare_node_join.py
320

    
321
utils_PYTHON = \
322
	lib/utils/__init__.py \
323
	lib/utils/algo.py \
324
	lib/utils/filelock.py \
325
	lib/utils/hash.py \
326
	lib/utils/io.py \
327
	lib/utils/log.py \
328
	lib/utils/mlock.py \
329
	lib/utils/nodesetup.py \
330
	lib/utils/process.py \
331
	lib/utils/retry.py \
332
	lib/utils/text.py \
333
	lib/utils/wrapper.py \
334
	lib/utils/x509.py
335

    
336
docrst = \
337
	doc/admin.rst \
338
	doc/cluster-merge.rst \
339
	doc/design-2.0.rst \
340
	doc/design-2.1.rst \
341
	doc/design-2.2.rst \
342
	doc/design-2.3.rst \
343
	doc/design-2.4.rst \
344
	doc/design-2.5.rst \
345
	doc/design-2.6.rst \
346
	doc/design-2.7.rst \
347
	doc/design-autorepair.rst \
348
	doc/design-bulk-create.rst \
349
	doc/design-chained-jobs.rst \
350
	doc/design-cpu-pinning.rst \
351
	doc/design-draft.rst \
352
	doc/design-htools-2.3.rst \
353
	doc/design-http-server.rst \
354
	doc/design-impexp2.rst \
355
	doc/design-lu-generated-jobs.rst \
356
	doc/design-multi-reloc.rst \
357
	doc/design-network.rst \
358
	doc/design-node-state-cache.rst \
359
	doc/design-oob.rst \
360
	doc/design-ovf-support.rst \
361
	doc/design-partitioned.rst \
362
	doc/design-query-splitting.rst \
363
	doc/design-query2.rst \
364
	doc/design-remote-commands.rst \
365
	doc/design-resource-model.rst \
366
	doc/design-shared-storage.rst \
367
	doc/design-ssh-setup.rst \
368
	doc/design-monitoring-agent.rst \
369
	doc/design-virtual-clusters.rst \
370
	doc/design-x509-ca.rst \
371
	doc/devnotes.rst \
372
	doc/glossary.rst \
373
	doc/hooks.rst \
374
	doc/iallocator.rst \
375
	doc/index.rst \
376
	doc/install-quick.rst \
377
	doc/install.rst \
378
	doc/locking.rst \
379
	doc/move-instance.rst \
380
	doc/news.rst \
381
	doc/ovfconverter.rst \
382
	doc/rapi.rst \
383
	doc/security.rst \
384
	doc/upgrade.rst \
385
	doc/virtual-cluster.rst \
386
	doc/walkthrough.rst
387

    
388
HS_PROGS = htools/htools
389
HS_BIN_ROLES = hbal hscan hspace hinfo hcheck
390
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
391

    
392
HS_ALL_PROGS = \
393
	$(HS_PROGS) \
394
	htest/hpc-htools \
395
	htest/test \
396
	htools/hconfd \
397
	htools/rpc-test
398

    
399
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
400
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=htest/%) htest/hail
401

    
402
HFLAGS = -O -Wall -Werror -fwarn-monomorphism-restriction -fwarn-tabs -ihtools
403
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
404
HEXTRA =
405
# internal extra flags (used for htest/test mainly)
406
HEXTRA_INT =
407
# exclude options for coverage reports
408
HPCEXCL = --exclude Main \
409
	--exclude Ganeti.Constants \
410
	--exclude Ganeti.HTools.QC \
411
	--exclude Ganeti.THH \
412
	--exclude Ganeti.Version \
413
	--exclude Test.Ganeti.TestCommon \
414
	--exclude Test.Ganeti.TestHTools \
415
	--exclude Test.Ganeti.TestHelper \
416
	--exclude Test.Ganeti.TestImports \
417
	$(patsubst htools.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
418

    
419
HS_LIB_SRCS = \
420
	htools/Ganeti/BasicTypes.hs \
421
	htools/Ganeti/Common.hs \
422
	htools/Ganeti/Compat.hs \
423
	htools/Ganeti/Confd.hs \
424
	htools/Ganeti/Confd/Server.hs \
425
	htools/Ganeti/Confd/Utils.hs \
426
	htools/Ganeti/Config.hs \
427
	htools/Ganeti/Daemon.hs \
428
	htools/Ganeti/HTools/CLI.hs \
429
	htools/Ganeti/HTools/Cluster.hs \
430
	htools/Ganeti/HTools/Container.hs \
431
	htools/Ganeti/HTools/ExtLoader.hs \
432
	htools/Ganeti/HTools/Group.hs \
433
	htools/Ganeti/HTools/IAlloc.hs \
434
	htools/Ganeti/HTools/Instance.hs \
435
	htools/Ganeti/HTools/Loader.hs \
436
	htools/Ganeti/HTools/Luxi.hs \
437
	htools/Ganeti/HTools/Node.hs \
438
	htools/Ganeti/HTools/PeerMap.hs \
439
	htools/Ganeti/HTools/Program.hs \
440
	htools/Ganeti/HTools/Program/Hail.hs \
441
	htools/Ganeti/HTools/Program/Hbal.hs \
442
	htools/Ganeti/HTools/Program/Hcheck.hs \
443
	htools/Ganeti/HTools/Program/Hinfo.hs \
444
	htools/Ganeti/HTools/Program/Hscan.hs \
445
	htools/Ganeti/HTools/Program/Hspace.hs \
446
	htools/Ganeti/HTools/Rapi.hs \
447
	htools/Ganeti/HTools/Simu.hs \
448
	htools/Ganeti/HTools/Text.hs \
449
	htools/Ganeti/HTools/Types.hs \
450
	htools/Ganeti/Hash.hs \
451
	htools/Ganeti/JSON.hs \
452
	htools/Ganeti/Jobs.hs \
453
	htools/Ganeti/Logging.hs \
454
	htools/Ganeti/Luxi.hs \
455
	htools/Ganeti/Objects.hs \
456
	htools/Ganeti/OpCodes.hs \
457
	htools/Ganeti/Path.hs \
458
	htools/Ganeti/Query/Common.hs \
459
	htools/Ganeti/Query/Filter.hs \
460
	htools/Ganeti/Query/Group.hs \
461
	htools/Ganeti/Query/Language.hs \
462
	htools/Ganeti/Query/Node.hs \
463
	htools/Ganeti/Query/Query.hs \
464
	htools/Ganeti/Query/Server.hs \
465
	htools/Ganeti/Query/Types.hs \
466
	htools/Ganeti/Rpc.hs \
467
	htools/Ganeti/Runtime.hs \
468
	htools/Ganeti/Ssconf.hs \
469
	htools/Ganeti/THH.hs \
470
	htools/Ganeti/Utils.hs
471

    
472
HS_TEST_SRCS = \
473
	htest/Test/Ganeti/BasicTypes.hs \
474
	htest/Test/Ganeti/Common.hs \
475
	htest/Test/Ganeti/Confd/Utils.hs \
476
	htest/Test/Ganeti/Daemon.hs \
477
	htest/Test/Ganeti/HTools/CLI.hs \
478
	htest/Test/Ganeti/HTools/Cluster.hs \
479
	htest/Test/Ganeti/HTools/Container.hs \
480
	htest/Test/Ganeti/HTools/Instance.hs \
481
	htest/Test/Ganeti/HTools/Loader.hs \
482
	htest/Test/Ganeti/HTools/Node.hs \
483
	htest/Test/Ganeti/HTools/PeerMap.hs \
484
	htest/Test/Ganeti/HTools/Simu.hs \
485
	htest/Test/Ganeti/HTools/Text.hs \
486
	htest/Test/Ganeti/HTools/Types.hs \
487
	htest/Test/Ganeti/JSON.hs \
488
	htest/Test/Ganeti/Jobs.hs \
489
	htest/Test/Ganeti/Luxi.hs \
490
	htest/Test/Ganeti/Objects.hs \
491
	htest/Test/Ganeti/OpCodes.hs \
492
	htest/Test/Ganeti/Query/Filter.hs \
493
	htest/Test/Ganeti/Query/Language.hs \
494
	htest/Test/Ganeti/Query/Query.hs \
495
	htest/Test/Ganeti/Rpc.hs \
496
	htest/Test/Ganeti/Ssconf.hs \
497
	htest/Test/Ganeti/TestCommon.hs \
498
	htest/Test/Ganeti/TestHTools.hs \
499
	htest/Test/Ganeti/TestHelper.hs \
500
	htest/Test/Ganeti/Utils.hs
501

    
502
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
503

    
504
HS_BUILT_SRCS = \
505
	htest/Test/Ganeti/TestImports.hs \
506
	htools/Ganeti/Constants.hs \
507
	htools/Ganeti/Version.hs
508
HS_BUILT_SRCS_IN = $(patsubst %,%.in,$(HS_BUILT_SRCS))
509

    
510
$(RUN_IN_TEMPDIR): | stamp-directories
511

    
512
# Note: we use here an order-only prerequisite, as the contents of
513
# _autoconf.py are not actually influencing the html build output: it
514
# has to exist in order for the sphinx module to be loaded
515
# successfully, but we certainly don't want the docs to be rebuilt if
516
# it changes
517
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
518
	$(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
519
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
520
	| $(BUILT_PYTHON_SOURCES)
521
	@test -n "$(SPHINX)" || \
522
	    { echo 'sphinx-build' not found during configure; exit 1; }
523
	@mkdir_p@ $(dir $@)
524
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
525
	    -d . \
526
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
527
	    -D release="$(PACKAGE_VERSION)" \
528
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
529
	rm -f doc/html/.buildinfo doc/html/objects.inv
530
	touch $@
531

    
532
doc/html: doc/html/index.html
533

    
534
doc/install-quick.rst: INSTALL
535
doc/news.rst: NEWS
536
doc/upgrade.rst: UPGRADE
537

    
538
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
539
	set -e; \
540
	{ echo '.. This file is automatically updated at build time from $<.'; \
541
	  echo '.. Do not edit.'; \
542
	  echo; \
543
	  cat $<; \
544
	} > $@
545

    
546
docdot = \
547
	doc/arch-2.0.dot \
548
	doc/design-2.1-lock-acquire.dot \
549
	doc/design-2.1-lock-release.dot
550

    
551
docpng = $(patsubst %.dot,%.png,$(docdot))
552

    
553
# Things to build but not to install (add it to EXTRA_DIST if it should be
554
# distributed)
555
noinst_DATA = \
556
	devel/upload \
557
	doc/html \
558
	$(BUILT_EXAMPLES) \
559
	doc/examples/bash_completion \
560
	doc/examples/bash_completion-debug \
561
	$(manhtml)
562

    
563
gnt_scripts = \
564
	scripts/gnt-backup \
565
	scripts/gnt-cluster \
566
	scripts/gnt-debug \
567
	scripts/gnt-group \
568
	scripts/gnt-instance \
569
	scripts/gnt-job \
570
	scripts/gnt-node \
571
	scripts/gnt-os
572

    
573
PYTHON_BOOTSTRAP_SBIN = \
574
	daemons/ganeti-masterd \
575
	daemons/ganeti-noded \
576
	daemons/ganeti-rapi \
577
	daemons/ganeti-watcher \
578
	$(gnt_scripts)
579

    
580
PYTHON_BOOTSTRAP = \
581
	$(PYTHON_BOOTSTRAP_SBIN) \
582
	tools/ensure-dirs \
583
	tools/prepare-node-join
584

    
585
qa_scripts = \
586
	qa/__init__.py \
587
	qa/ganeti-qa.py \
588
	qa/qa_cluster.py \
589
	qa/qa_config.py \
590
	qa/qa_daemon.py \
591
	qa/qa_env.py \
592
	qa/qa_error.py \
593
	qa/qa_group.py \
594
	qa/qa_instance.py \
595
	qa/qa_job.py \
596
	qa/qa_node.py \
597
	qa/qa_os.py \
598
	qa/qa_rapi.py \
599
	qa/qa_tags.py \
600
	qa/qa_utils.py
601

    
602
bin_SCRIPTS =
603
if WANT_HTOOLS
604
bin_SCRIPTS += $(filter-out htools/hail,$(HS_PROGS))
605
install-exec-hook:
606
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
607
# FIXME: this is a hardcoded logic, instead of auto-resolving
608
	$(LN_S) -f ../../../bin/htools \
609
		   $(DESTDIR)$(iallocatorsdir)/hail
610
	for role in $(HS_BIN_ROLES); do \
611
		$(LN_S) -f htools \
612
			   $(DESTDIR)$(bindir)/$$role ; \
613
	done
614
endif
615

    
616
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS) Makefile
617
	@if [ "$(notdir $@)" = "test" ] && [ "$(HTOOLS_NODEV)" ]; then \
618
	  echo "Error: cannot run unittests without the development" \
619
	       " libraries (see devnotes.rst)" 1>&2; \
620
	  exit 1; \
621
	fi
622
	@rm -f $(notdir $@).tix
623
	$(GHC) --make \
624
	  $(HFLAGS) \
625
	  $(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) $(HTOOLS_REGEX_PCRE) \
626
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
627
	  $(HEXTRA) $(HEXTRA_INT) $@
628
	@touch "$@"
629

    
630
# for the htest/test binary, we need to enable profiling/coverage
631
htest/test: HEXTRA_INT=-fhpc -ihtest
632

    
633
# we compile the hpc-htools binary with the program coverage
634
htest/hpc-htools: HEXTRA_INT=-fhpc
635

    
636
# test dependency
637
htest/offline-tests.sh: htest/hpc-htools
638

    
639
# rules for building profiling-enabled versions of the haskell
640
# programs: hs-prof does the full two-step build, whereas
641
# hs-prof-quick does only the final rebuild (hs-prof must have been
642
# run before)
643
.PHONY: hs-prof hs-prof-quick
644
hs-prof:
645
	$(MAKE) $(AM_MAKEFLAGS) clean
646
	$(MAKE) $(AM_MAKEFLAGS) $(HS_ALL_PROGS) HEXTRA="-osuf .o"
647
	rm -f $(HS_ALL_PROGS)
648
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
649

    
650
hs-prof-quick:
651
	$(MAKE) $(AM_MAKEFLAGS) $(HS_ALL_PROGS) HEXTRA="-osuf .prof_o -prof -auto-all"
652

    
653
dist_sbin_SCRIPTS = \
654
	tools/ganeti-listrunner
655

    
656
nodist_sbin_SCRIPTS = \
657
	$(PYTHON_BOOTSTRAP_SBIN) \
658
	daemons/ganeti-cleaner
659

    
660
if ENABLE_CONFD
661
htools/ganeti-confd: htools/hconfd
662
	cp -f $< $@
663

    
664
nodist_sbin_SCRIPTS += htools/ganeti-confd
665
endif
666

    
667
python_scripts = \
668
	tools/burnin \
669
	tools/cfgshell \
670
	tools/cfgupgrade \
671
	tools/cfgupgrade12 \
672
	tools/cluster-merge \
673
	tools/confd-client \
674
	tools/fmtjson \
675
	tools/lvmstrap \
676
	tools/move-instance \
677
	tools/ovfconverter \
678
	tools/sanitize-config \
679
	tools/setup-ssh
680

    
681
dist_tools_SCRIPTS = \
682
	$(python_scripts) \
683
	tools/kvm-console-wrapper \
684
	tools/master-ip-setup \
685
	tools/xm-console-wrapper
686

    
687
nodist_tools_SCRIPTS = \
688
	tools/vcluster-setup
689

    
690
pkglib_python_scripts = \
691
	daemons/import-export \
692
	tools/check-cert-expired
693

    
694
nodist_pkglib_python_scripts = \
695
	tools/ensure-dirs \
696
	tools/prepare-node-join
697

    
698
myexeclib_SCRIPTS = \
699
	daemons/daemon-util \
700
	tools/kvm-ifup \
701
	$(pkglib_python_scripts)
702

    
703
nodist_myexeclib_SCRIPTS = \
704
	$(nodist_pkglib_python_scripts)
705

    
706
EXTRA_DIST = \
707
	NEWS \
708
	UPGRADE \
709
	epydoc.conf.in \
710
	pylintrc \
711
	autotools/build-bash-completion \
712
	autotools/build-rpc \
713
	autotools/check-header \
714
	autotools/check-imports \
715
	autotools/check-man-dashes \
716
	autotools/check-man-warnings \
717
	autotools/check-news \
718
	autotools/check-python-code \
719
	autotools/check-tar \
720
	autotools/check-version \
721
	autotools/convert-constants \
722
	autotools/docpp \
723
	autotools/gen-coverage \
724
	autotools/testrunner \
725
	autotools/wrong-hardcoded-paths \
726
	$(RUN_IN_TEMPDIR) \
727
	daemons/daemon-util.in \
728
	daemons/ganeti-cleaner.in \
729
	$(pkglib_python_scripts) \
730
	devel/upload.in \
731
	tools/kvm-ifup.in \
732
	tools/vcluster-setup.in \
733
	$(docdot) \
734
	$(docpng) \
735
	$(docrst) \
736
	doc/conf.py \
737
	doc/html \
738
	$(BUILT_EXAMPLES:%=%.in) \
739
	doc/examples/ganeti.default \
740
	doc/examples/ganeti.default-debug \
741
	doc/examples/hooks/ethers \
742
	doc/examples/gnt-debug/README \
743
	doc/examples/gnt-debug/delay0.json \
744
	doc/examples/gnt-debug/delay50.json \
745
	test/lockperf.py \
746
	test/testutils.py \
747
	test/mocks.py \
748
	$(dist_TESTS) \
749
	$(TEST_FILES) \
750
	man/footer.rst \
751
	$(manrst) \
752
	$(maninput) \
753
	qa/qa-sample.json \
754
	$(qa_scripts) \
755
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
756
	$(HS_PROG_SRCS) \
757
	htools/lint-hints.hs \
758
	htest/cli-tests-defs.sh \
759
	htest/offline-test.sh
760

    
761
man_MANS = \
762
	man/ganeti-cleaner.8 \
763
	man/ganeti-confd.8 \
764
	man/ganeti-listrunner.8 \
765
	man/ganeti-masterd.8 \
766
	man/ganeti-noded.8 \
767
	man/ganeti-os-interface.7 \
768
	man/ganeti-rapi.8 \
769
	man/ganeti-watcher.8 \
770
	man/ganeti.7 \
771
	man/gnt-backup.8 \
772
	man/gnt-cluster.8 \
773
	man/gnt-debug.8 \
774
	man/gnt-group.8 \
775
	man/gnt-instance.8 \
776
	man/gnt-job.8 \
777
	man/gnt-node.8 \
778
	man/gnt-os.8 \
779
	man/hail.1 \
780
	man/hbal.1 \
781
	man/hcheck.1 \
782
	man/hinfo.1 \
783
	man/hscan.1 \
784
	man/hspace.1 \
785
	man/htools.1
786

    
787
manrst = $(patsubst %.1,%.rst,$(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS))))
788
manhtml = $(patsubst %.rst,%.html,$(manrst))
789
mangen = $(patsubst %.rst,%.gen,$(manrst))
790
maninput = \
791
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
792
	$(patsubst %.html,%.html.in,$(manhtml)) \
793
	man/footer.man man/footer.html $(mangen)
794

    
795
TEST_FILES = \
796
	htest/data/common-suffix.data \
797
	htest/data/hail-alloc-drbd.json \
798
	htest/data/hail-change-group.json \
799
	htest/data/hail-invalid-reloc.json \
800
	htest/data/hail-node-evac.json \
801
	htest/data/hail-reloc-drbd.json \
802
	htest/data/hbal-excl-tags.data \
803
	htest/data/hbal-split-insts.data \
804
	htest/data/invalid-node.data \
805
	htest/data/missing-resources.data \
806
	htest/data/rapi/groups.json \
807
	htest/data/rapi/info.json \
808
	htest/data/rapi/instances.json \
809
	htest/data/rapi/nodes.json \
810
	htest/shelltests/htools-balancing.test \
811
	htest/shelltests/htools-basic.test \
812
	htest/shelltests/htools-dynutil.test \
813
	htest/shelltests/htools-excl.test \
814
	htest/shelltests/htools-hail.test \
815
	htest/shelltests/htools-hspace.test \
816
	htest/shelltests/htools-invalid.test \
817
	htest/shelltests/htools-multi-group.test \
818
	htest/shelltests/htools-no-backend.test \
819
	htest/shelltests/htools-rapi.test \
820
	htest/shelltests/htools-single-group.test \
821
	htest/shelltests/htools-text-backend.test \
822
	test/data/bdev-drbd-8.0.txt \
823
	test/data/bdev-drbd-8.3.txt \
824
	test/data/bdev-drbd-disk.txt \
825
	test/data/bdev-drbd-net-ip4.txt \
826
	test/data/bdev-drbd-net-ip6.txt \
827
	test/data/cert1.pem \
828
	test/data/cert2.pem \
829
	test/data/ip-addr-show-dummy0.txt \
830
	test/data/ip-addr-show-lo-ipv4.txt \
831
	test/data/ip-addr-show-lo-ipv6.txt \
832
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
833
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
834
	test/data/ip-addr-show-lo-oneline.txt \
835
	test/data/ip-addr-show-lo.txt \
836
	test/data/kvm_0.12.5_help.txt \
837
	test/data/kvm_0.15.90_help.txt \
838
	test/data/kvm_0.9.1_help.txt \
839
	test/data/kvm_1.0_help.txt \
840
	test/data/ovfdata/compr_disk.vmdk.gz \
841
	test/data/ovfdata/config.ini \
842
	test/data/ovfdata/corrupted_resources.ovf \
843
	test/data/ovfdata/empty.ini \
844
	test/data/ovfdata/empty.ovf \
845
	test/data/ovfdata/ganeti.mf \
846
	test/data/ovfdata/ganeti.ovf \
847
	test/data/ovfdata/gzip_disk.ovf \
848
	test/data/ovfdata/new_disk.vmdk \
849
	test/data/ovfdata/no_disk.ini \
850
	test/data/ovfdata/no_disk_in_ref.ovf \
851
	test/data/ovfdata/no_os.ini \
852
	test/data/ovfdata/no_ovf.ova \
853
	test/data/ovfdata/other/rawdisk.raw \
854
	test/data/ovfdata/ova.ova \
855
	test/data/ovfdata/rawdisk.raw \
856
	test/data/ovfdata/second_disk.vmdk \
857
	test/data/ovfdata/unsafe_path.ini \
858
	test/data/ovfdata/virtualbox.ovf \
859
	test/data/ovfdata/wrong_config.ini \
860
	test/data/ovfdata/wrong_extension.ovd \
861
	test/data/ovfdata/wrong_manifest.mf \
862
	test/data/ovfdata/wrong_manifest.ovf \
863
	test/data/ovfdata/wrong_ova.ova \
864
	test/data/ovfdata/wrong_xml.ovf \
865
	test/data/proc_drbd8.txt \
866
	test/data/proc_drbd80-emptyline.txt \
867
	test/data/proc_drbd83.txt \
868
	test/data/proc_drbd83_sync.txt \
869
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
870
	test/data/sys_drbd_usermode_helper.txt \
871
	test/data/vgreduce-removemissing-2.02.02.txt \
872
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
873
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
874
	test/data/vgs-missing-pvs-2.02.02.txt \
875
	test/data/vgs-missing-pvs-2.02.66.txt \
876
	test/ganeti-cli.test \
877
	test/gnt-cli.test \
878
	test/import-export_unittest-helper
879

    
880
python_tests = \
881
	doc/examples/rapi_testutils.py \
882
	test/cfgupgrade_unittest.py \
883
	test/docs_unittest.py \
884
	test/ganeti.asyncnotifier_unittest.py \
885
	test/ganeti.backend_unittest.py \
886
	test/ganeti.bdev_unittest.py \
887
	test/ganeti.cli_unittest.py \
888
	test/ganeti.client.gnt_cluster_unittest.py \
889
	test/ganeti.client.gnt_instance_unittest.py \
890
	test/ganeti.client.gnt_job_unittest.py \
891
	test/ganeti.cmdlib_unittest.py \
892
	test/ganeti.compat_unittest.py \
893
	test/ganeti.confd.client_unittest.py \
894
	test/ganeti.config_unittest.py \
895
	test/ganeti.constants_unittest.py \
896
	test/ganeti.daemon_unittest.py \
897
	test/ganeti.errors_unittest.py \
898
	test/ganeti.hooks_unittest.py \
899
	test/ganeti.ht_unittest.py \
900
	test/ganeti.http_unittest.py \
901
	test/ganeti.hypervisor.hv_chroot_unittest.py \
902
	test/ganeti.hypervisor.hv_fake_unittest.py \
903
	test/ganeti.hypervisor.hv_kvm_unittest.py \
904
	test/ganeti.hypervisor.hv_lxc_unittest.py \
905
	test/ganeti.hypervisor.hv_xen_unittest.py \
906
	test/ganeti.hypervisor_unittest.py \
907
	test/ganeti.impexpd_unittest.py \
908
	test/ganeti.jqueue_unittest.py \
909
	test/ganeti.jstore_unittest.py \
910
	test/ganeti.locking_unittest.py \
911
	test/ganeti.luxi_unittest.py \
912
	test/ganeti.masterd.iallocator_unittest.py \
913
	test/ganeti.masterd.instance_unittest.py \
914
	test/ganeti.mcpu_unittest.py \
915
	test/ganeti.netutils_unittest.py \
916
	test/ganeti.objects_unittest.py \
917
	test/ganeti.objectutils_unittest.py \
918
	test/ganeti.opcodes_unittest.py \
919
	test/ganeti.ovf_unittest.py \
920
	test/ganeti.qlang_unittest.py \
921
	test/ganeti.query_unittest.py \
922
	test/ganeti.rapi.baserlib_unittest.py \
923
	test/ganeti.rapi.client_unittest.py \
924
	test/ganeti.rapi.resources_unittest.py \
925
	test/ganeti.rapi.rlib2_unittest.py \
926
	test/ganeti.rapi.testutils_unittest.py \
927
	test/ganeti.rpc_unittest.py \
928
	test/ganeti.runtime_unittest.py \
929
	test/ganeti.serializer_unittest.py \
930
	test/ganeti.ssh_unittest.py \
931
	test/ganeti.storage_unittest.py \
932
	test/ganeti.tools.ensure_dirs_unittest.py \
933
	test/ganeti.tools.prepare_node_join_unittest.py \
934
	test/ganeti.uidpool_unittest.py \
935
	test/ganeti.utils.algo_unittest.py \
936
	test/ganeti.utils.filelock_unittest.py \
937
	test/ganeti.utils.hash_unittest.py \
938
	test/ganeti.utils.io_unittest-runasroot.py \
939
	test/ganeti.utils.io_unittest.py \
940
	test/ganeti.utils.log_unittest.py \
941
	test/ganeti.utils.mlock_unittest.py \
942
	test/ganeti.utils.nodesetup_unittest.py \
943
	test/ganeti.utils.process_unittest.py \
944
	test/ganeti.utils.retry_unittest.py \
945
	test/ganeti.utils.text_unittest.py \
946
	test/ganeti.utils.wrapper_unittest.py \
947
	test/ganeti.utils.x509_unittest.py \
948
	test/ganeti.utils_unittest.py \
949
	test/ganeti.vcluster_unittest.py \
950
	test/ganeti.workerpool_unittest.py \
951
	test/pycurl_reset_unittest.py \
952
	test/qa.qa_config_unittest.py \
953
	test/tempfile_fork_unittest.py
954

    
955
haskell_tests = htest/test
956

    
957
dist_TESTS = \
958
	test/check-cert-expired_unittest.bash \
959
	test/daemon-util_unittest.bash \
960
	test/ganeti-cleaner_unittest.bash \
961
	test/import-export_unittest.bash \
962
	test/cli-test.bash \
963
	test/bash_completion.bash \
964
	$(python_tests)
965

    
966
nodist_TESTS =
967
check_SCRIPTS =
968

    
969
if WANT_HTOOLSTESTS
970
nodist_TESTS += $(haskell_tests)
971
dist_TESTS += htest/offline-test.sh
972
check_SCRIPTS += htest/hpc-htools $(HS_BUILT_TEST_HELPERS)
973
endif
974

    
975
TESTS = $(dist_TESTS) $(nodist_TESTS)
976

    
977
# Environment for all tests
978
PLAIN_TESTS_ENVIRONMENT = \
979
	PYTHONPATH=. \
980
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
981
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
982
	$(RUN_IN_TEMPDIR)
983

    
984
# Environment for tests run by automake
985
TESTS_ENVIRONMENT = \
986
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
987

    
988
all_python_code = \
989
	$(dist_sbin_SCRIPTS) \
990
	$(python_scripts) \
991
	$(pkglib_python_scripts) \
992
	$(nodist_pkglib_python_scripts) \
993
	$(python_tests) \
994
	$(pkgpython_PYTHON) \
995
	$(client_PYTHON) \
996
	$(hypervisor_PYTHON) \
997
	$(rapi_PYTHON) \
998
	$(server_PYTHON) \
999
	$(pytools_PYTHON) \
1000
	$(http_PYTHON) \
1001
	$(confd_PYTHON) \
1002
	$(masterd_PYTHON) \
1003
	$(impexpd_PYTHON) \
1004
	$(utils_PYTHON) \
1005
	$(watcher_PYTHON) \
1006
	$(noinst_PYTHON) \
1007
	$(qa_scripts)
1008

    
1009
srclink_files = \
1010
	man/footer.rst \
1011
	test/check-cert-expired_unittest.bash \
1012
	test/daemon-util_unittest.bash \
1013
	test/ganeti-cleaner_unittest.bash \
1014
	test/import-export_unittest.bash \
1015
	test/cli-test.bash \
1016
	test/bash_completion.bash \
1017
	htest/offline-test.sh \
1018
	htest/cli-tests-defs.sh \
1019
	$(all_python_code) \
1020
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS)
1021

    
1022
check_python_code = \
1023
	$(BUILD_BASH_COMPLETION) \
1024
	$(CHECK_IMPORTS) \
1025
	$(CHECK_HEADER) \
1026
	$(DOCPP) \
1027
	$(all_python_code)
1028

    
1029
lint_python_code = \
1030
	ganeti \
1031
	ganeti/http/server.py \
1032
	$(dist_sbin_SCRIPTS) \
1033
	$(python_scripts) \
1034
	$(pkglib_python_scripts) \
1035
	$(BUILD_BASH_COMPLETION) \
1036
	$(CHECK_IMPORTS) \
1037
	$(CHECK_HEADER) \
1038
	$(DOCPP) \
1039
	$(PYTHON_BOOTSTRAP)
1040

    
1041
standalone_python_modules = \
1042
	lib/rapi/client.py \
1043
	tools/ganeti-listrunner
1044

    
1045
pep8_python_code = \
1046
	ganeti \
1047
	ganeti/http/server.py \
1048
	$(dist_sbin_SCRIPTS) \
1049
	$(python_scripts) \
1050
	$(pkglib_python_scripts) \
1051
	$(BUILD_BASH_COMPLETION) \
1052
	$(CHECK_HEADER) \
1053
	$(DOCPP) \
1054
	$(PYTHON_BOOTSTRAP) \
1055
	qa
1056

    
1057
test/daemon-util_unittest.bash: daemons/daemon-util
1058

    
1059
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1060

    
1061
test/bash_completion.bash: doc/examples/bash_completion-debug
1062

    
1063
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1064
	sed -f $(REPLACE_VARS_SED) < $< > $@
1065
	chmod +x $@
1066

    
1067
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
1068
	sed -f $(REPLACE_VARS_SED) < $< > $@
1069
	chmod u+x $@
1070

    
1071
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1072
	sed -f $(REPLACE_VARS_SED) < $< > $@
1073
	chmod +x $@
1074

    
1075
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1076
	sed -f $(REPLACE_VARS_SED) < $< > $@
1077
	chmod +x $@
1078

    
1079
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1080
	sed -f $(REPLACE_VARS_SED) < $< > $@
1081

    
1082
doc/examples/bash_completion: BC_ARGS = --compact
1083
doc/examples/bash_completion-debug: BC_ARGS =
1084

    
1085
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1086
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1087
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1088
	daemons/ganeti-cleaner \
1089
	$(GENERATED_FILES) $(HTOOLS_GENERATED_FILES)
1090
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1091
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1092

    
1093
doc/%.png: doc/%.dot
1094
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
1095
	$(DOT) -Tpng -o $@ $<
1096

    
1097
man/footer.man: man/footer.rst
1098
	@test -n "$(PANDOC)" || \
1099
	  { echo 'pandoc' not found during configure; exit 1; }
1100
	$(PANDOC) -f rst -t man -o $@ $<
1101

    
1102
man/footer.html: man/footer.rst
1103
	@test -n "$(PANDOC)" || \
1104
	  { echo 'pandoc' not found during configure; exit 1; }
1105
	$(PANDOC) -f rst -t html -o $@ $<
1106

    
1107
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1108
	lib/build/shell_example_lexer.py \
1109
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1110
	@echo "Checking $< for hardcoded paths..."
1111
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1112
	  echo "Man page $< has harcoded paths (see above)!" 1>&2 ; \
1113
	  exit 1; \
1114
	fi
1115
	set -e ; \
1116
	trap 'echo auto-removing $@; rm $@' EXIT; \
1117
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1118
	trap - EXIT
1119

    
1120
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.man
1121
	@test -n "$(PANDOC)" || \
1122
	  { echo 'pandoc' not found during configure; exit 1; }
1123
	set -o pipefail ; \
1124
	trap 'echo auto-removing $@; rm $@' EXIT; \
1125
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
1126
	  sed -e 's/\\@/@/g' > $@; \
1127
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1128
	$(CHECK_MAN_DASHES) $@; \
1129
	trap - EXIT
1130

    
1131

    
1132
man/%.html.in: man/%.gen man/footer.html
1133
	@test -n "$(PANDOC)" || \
1134
	  { echo 'pandoc' not found during configure; exit 1; }
1135
	set -o pipefail ; \
1136
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
1137
	  sed -e 's/\\@/@/g' > $@
1138

    
1139
man/%: man/%.in  $(REPLACE_VARS_SED)
1140
	sed -f $(REPLACE_VARS_SED) < $< > $@
1141

    
1142
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1143
	sed -f $(REPLACE_VARS_SED) < $< > $@
1144

    
1145
vcs-version:
1146
	if test -d .git; then \
1147
	  git describe > $@; \
1148
	elif test ! -f $@ ; then \
1149
	  echo "Cannot auto-generate $@ file"; exit 1; \
1150
	fi
1151

    
1152
.PHONY: clean-vcs-version
1153
clean-vcs-version:
1154
	rm -f vcs-version
1155

    
1156
.PHONY: regen-vcs-version
1157
regen-vcs-version:
1158
	set -e; \
1159
	cd $(srcdir); \
1160
	if test -d .git; then \
1161
	  $(MAKE) $(AM_MAKEFLAGS) clean-vcs-version; \
1162
	  $(MAKE) $(AM_MAKEFLAGS) vcs-version; \
1163
	fi
1164

    
1165
htools/Ganeti/Version.hs: htools/Ganeti/Version.hs.in \
1166
	vcs-version $(built_base_sources)
1167
	set -e; \
1168
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1169
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1170

    
1171
htools/Ganeti/Constants.hs: htools/Ganeti/Constants.hs.in \
1172
	lib/constants.py lib/_autoconf.py lib/luxi.py \
1173
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1174
	| lib/_vcsversion.py
1175
	set -e; \
1176
	{ cat $< ; PYTHONPATH=. $(CONVERT_CONSTANTS); } > $@
1177

    
1178
htest/Test/Ganeti/TestImports.hs: htest/Test/Ganeti/TestImports.hs.in \
1179
	$(built_base_sources)
1180
	set -e; \
1181
	{ cat $< ; \
1182
	  echo ; \
1183
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst htools/%,%,$(HS_LIB_SRCS))))) ; do \
1184
	    echo "import $$name ()" ; \
1185
	  done ; \
1186
	} > $@
1187

    
1188
lib/_autoconf.py: Makefile | stamp-directories
1189
	set -e; \
1190
	{ echo '# This file is automatically generated, do not edit!'; \
1191
	  echo '#'; \
1192
	  echo ''; \
1193
	  echo '"""Build-time configuration for Ganeti.'; \
1194
	  echo '';\
1195
	  echo 'This file is autogenerated by the build process.'; \
1196
	  echo 'For any changes you need to re-run ./configure (and'; \
1197
	  echo 'not edit by hand).'; \
1198
	  echo ''; \
1199
	  echo '"""'; \
1200
	  echo ''; \
1201
	  echo '# pylint: disable=C0301,C0324'; \
1202
	  echo '# because this is autogenerated, we do not want'; \
1203
	  echo '# style warnings' ; \
1204
	  echo ''; \
1205
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1206
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1207
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1208
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1209
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1210
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1211
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1212
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1213
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1214
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1215
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1216
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1217
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1218
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1219
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1220
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1221
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1222
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1223
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1224
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1225
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1226
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1227
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1228
	  echo "IP_PATH = '$(IP_PATH)'"; \
1229
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1230
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1231
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1232
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1233
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1234
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1235
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1236
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1237
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1238
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1239
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1240
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1241
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1242
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1243
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1244
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1245
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1246
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1247
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1248
	  echo "NODED_USER = '$(NODED_USER)'"; \
1249
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1250
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1251
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1252
	  echo "HTOOLS = True"; \
1253
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1254
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1255
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1256
	} > $@
1257

    
1258
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1259
	set -e; \
1260
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1261
	{ echo '# This file is automatically generated, do not edit!'; \
1262
	  echo '#'; \
1263
	  echo ''; \
1264
	  echo '"""Build-time VCS version number for Ganeti.'; \
1265
	  echo '';\
1266
	  echo 'This file is autogenerated by the build process.'; \
1267
	  echo 'For any changes you need to re-run ./configure (and'; \
1268
	  echo 'not edit by hand).'; \
1269
	  echo ''; \
1270
	  echo '"""'; \
1271
	  echo ''; \
1272
	  echo '# pylint: disable=C0301,C0324'; \
1273
	  echo '# because this is autogenerated, we do not want'; \
1274
	  echo '# style warnings' ; \
1275
	  echo ''; \
1276
	  echo "VCS_VERSION = '$$VCSVER'"; \
1277
	} > $@
1278

    
1279
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1280
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1281

    
1282
$(SHELL_ENV_INIT): Makefile stamp-directories
1283
	set -e; \
1284
	{ echo '# Allow overriding for tests'; \
1285
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1286
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1287
	  echo; \
1288
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1289
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1290
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1291
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1292
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1293
	} > $@
1294

    
1295
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1296
	set -e; \
1297
	{ echo 's#@PREFIX@#$(prefix)#g'; \
1298
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
1299
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
1300
	  echo 's#@BINDIR@#$(bindir)#g'; \
1301
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
1302
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1303
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1304
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1305
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1306
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1307
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1308
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1309
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1310
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
1311
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1312
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
1313
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
1314
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
1315
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1316
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1317
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1318
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1319
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1320
	  echo 's#@CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1321
	  echo 's#@MODULES@#$(strip $(lint_python_code))#g'; \
1322
	  echo 's#@ENABLE_SPLIT_QUERY@#$(ENABLE_SPLIT_QUERY)#g'; \
1323
	  echo; \
1324
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1325
	  echo '  r $(SHELL_ENV_INIT)'; \
1326
	  echo '  d'; \
1327
	  echo '}'; \
1328
	} > $@
1329

    
1330
# Using deferred evaluation
1331
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1332
daemons/ganeti-watcher: MODULE = ganeti.watcher
1333
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1334
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1335
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1336
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst htest/%,%,$@)
1337

    
1338
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1339
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1340
	set -e; \
1341
	{ echo '#!/usr/bin/python'; \
1342
	  echo '# This file is automatically generated, do not edit!'; \
1343
	  echo "# Edit $(MODULE) instead."; \
1344
	  echo; \
1345
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1346
	  echo; \
1347
	  echo '# pylint: disable=C0103'; \
1348
	  echo '# C0103: Invalid name'; \
1349
	  echo; \
1350
	  echo 'import sys'; \
1351
	  echo 'import $(MODULE) as main'; \
1352
	  echo; \
1353
	  echo '# Temporarily alias commands until bash completion'; \
1354
	  echo '# generator is changed'; \
1355
	  echo 'if hasattr(main, "commands"):'; \
1356
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1357
	  echo 'if hasattr(main, "aliases"):'; \
1358
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1359
	  echo; \
1360
	  echo 'if __name__ == "__main__":'; \
1361
	  echo '  sys.exit(main.Main())'; \
1362
	} > $@
1363
	chmod u+x $@
1364

    
1365
$(HS_BUILT_TEST_HELPERS): Makefile
1366
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1367
	set -e; \
1368
	{ echo '#!/bin/sh'; \
1369
	  echo '# This file is automatically generated, do not edit!'; \
1370
	  echo "# Edit Makefile.am instead."; \
1371
	  echo; \
1372
	  echo "HTOOLS=$(TESTROLE) exec ./htest/hpc-htools \"\$$@\""; \
1373
	} > $@
1374
	chmod u+x $@
1375

    
1376
stamp-directories: Makefile
1377
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1378
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1379
	touch $@
1380

    
1381
# We need to create symlinks because "make distcheck" will not install Python
1382
# files when building.
1383
stamp-srclinks: Makefile | stamp-directories
1384
	set -e; \
1385
	for i in $(srclink_files); do \
1386
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1387
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
1388
		fi; \
1389
	done
1390
	touch $@
1391

    
1392
.PHONY: ganeti
1393
ganeti:
1394
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1395

    
1396
.PHONY: check-dirs
1397
check-dirs: $(GENERATED_FILES)
1398
	@set -e; \
1399
	find . -type d \( \( -name . \) -o \( \
1400
		-name .git -o \
1401
		-name autom4te.cache \
1402
		\) -prune -o -print \) | { \
1403
		error=; \
1404
		while read dir; do \
1405
			case "$$dir" in \
1406
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1407
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1408
			esac; \
1409
		done; \
1410
		for dir in $(DIRS); do \
1411
			if ! test -d "$$dir"; then \
1412
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
1413
				error=1; \
1414
			fi \
1415
		done; \
1416
		if test -n "$$error"; then exit 1; else exit 0; fi; \
1417
	}
1418

    
1419
.PHONY: check-local
1420
check-local: check-dirs $(GENERATED_FILES)
1421
	$(CHECK_PYTHON_CODE) $(check_python_code)
1422
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1423
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1424
	$(CHECK_NEWS) < $(top_srcdir)/NEWS
1425
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1426
	@expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1427
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1428
		echo "Incorrect version in README, expected $$expver"; \
1429
		exit 1; \
1430
	fi; \
1431
	for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1432
			doc/security.rst; do \
1433
		if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1434
			"Documents Ganeti version $$expver"; then \
1435
			echo "Incorrect version in $$file, expected $$expver"; \
1436
			exit 1; \
1437
		fi; \
1438
	done; \
1439
	if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1440
		echo "File $(top_srcdir)/doc/design-$$expver.rst not found"; \
1441
		exit 1; \
1442
	fi
1443

    
1444
.PHONY: hs-check
1445
hs-check: htest/test htest/hpc-htools $(HS_BUILT_TEST_HELPERS)
1446
	@rm -f test.tix
1447
	./htest/test
1448
	HBINARY="./htest/hpc-htools" ./htest/offline-test.sh
1449

    
1450
# E111: indentation is not a multiple of four
1451
# E121: continuation line indentation is not a multiple of four
1452
#       (since our indent level is not 4)
1453
# E125: continuation line does not distinguish itself from next logical line
1454
#       (since our indent level is not 4)
1455
# E127: continuation line over-indented for visual indent
1456
#       (since our indent level is not 4)
1457
# note: do NOT add E128 here; it's a valid style error in most cases!
1458
# I've seen real errors, but also some cases were we indent wrongly
1459
# due to line length; try to rework the cases where it is triggered,
1460
# instead of silencing it
1461
# E261: at least two spaces before inline comment
1462
# E501: line too long (80 characters)
1463
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1464

    
1465
# For excluding pep8 expects filenames only, not whole paths
1466
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1467

    
1468
LINT_TARGETS = pylint pylint-qa
1469
if HAS_PEP8
1470
LINT_TARGETS += pep8
1471
endif
1472
if HAS_HLINT
1473
LINT_TARGETS += hlint
1474
endif
1475

    
1476
.PHONY: lint
1477
lint: $(LINT_TARGETS)
1478

    
1479
.PHONY: pylint
1480
pylint: $(GENERATED_FILES)
1481
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1482
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1483

    
1484
.PHONY: pylint-qa
1485
pylint-qa: $(GENERATED_FILES)
1486
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1487
	cd $(top_srcdir)/qa && \
1488
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1489
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1490

    
1491
.PHONY: pep8
1492
pep8: $(GENERATED_FILES)
1493
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1494
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1495
		--repeat $(pep8_python_code)
1496

    
1497
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1498
.PHONY: hlint
1499
hlint: $(HS_BUILT_SRCS) htools/lint-hints.hs
1500
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1501
	if tty -s; then C="-c"; else C=""; fi; \
1502
	$(HLINT) --report=doc/hs-lint.html --cross $$C \
1503
	  --ignore "Use first" \
1504
	  --ignore "Use comparing" \
1505
	  --ignore "Use on" \
1506
	  --ignore "Reduce duplication" \
1507
	  --ignore "Use &&&" \
1508
	  --ignore "Use void" \
1509
	  --hint htools/lint-hints \
1510
	  $(filter-out htools/Ganeti/THH.hs,$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1511

    
1512
# a dist hook rule for updating the vcs-version file; this is
1513
# hardcoded due to where it needs to build the file...
1514
dist-hook:
1515
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1516
	rm -f $(top_distdir)/vcs-version
1517
	cp -p $(srcdir)/vcs-version $(top_distdir)
1518

    
1519
# a distcheck hook rule for catching revision control directories
1520
distcheck-hook:
1521
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1522
		echo "Found revision control files in final archive." 1>&2; \
1523
		exit 1; \
1524
	fi
1525
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1526
		echo "Found Python byte code in final archive." 1>&2; \
1527
		exit 1; \
1528
	fi
1529
	if find $(top_distdir) -name '*~' | grep .; then \
1530
		echo "Found backup files in final archive." 1>&2; \
1531
		exit 1; \
1532
	fi
1533
# Empty files or directories should not be distributed. They can cause
1534
# unnecessary warnings for packagers. Directories used by automake during
1535
# distcheck must be excluded.
1536
	if find $(top_distdir) -empty -and -not \( \
1537
			-path $(top_distdir)/_build -or \
1538
			-path $(top_distdir)/_inst \) | grep .; then \
1539
		echo "Found empty files or directories in final archive." 1>&2; \
1540
		exit 1; \
1541
	fi
1542
	if test -n "$(BUILD_RELEASE)" && \
1543
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
1544
		echo "Found unreleased version in NEWS." >&2; \
1545
		exit 1; \
1546
	fi
1547

    
1548
# When building a release, stricter checks should be used
1549
distcheck-release dist-release: export BUILD_RELEASE = 1
1550
distcheck-release: distcheck
1551

    
1552
distrebuildcheck: dist
1553
	set -e; \
1554
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1555
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1556
	cd $$builddir; \
1557
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1558
	cd $(distdir); \
1559
	./configure; \
1560
	$(MAKE) maintainer-clean; \
1561
	cp $(abs_srcdir)/vcs-version .; \
1562
	./configure; \
1563
	$(MAKE) $(AM_MAKEFLAGS)
1564

    
1565
dist-release: dist
1566
	set -e; \
1567
	for i in $(DIST_ARCHIVES); do \
1568
		echo -n "Checking $$i ... "; \
1569
		autotools/check-tar < $$i; \
1570
		echo OK; \
1571
	done
1572

    
1573
install-exec-local:
1574
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1575
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1576
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1577

    
1578
.PHONY: apidoc
1579
if WANT_HTOOLSAPIDOC
1580
apidoc: py-apidoc hs-apidoc
1581
else
1582
apidoc: py-apidoc
1583
endif
1584

    
1585
.PHONY: py-apidoc
1586
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1587
	$(RUN_IN_TEMPDIR) epydoc -v \
1588
		--conf $(CURDIR)/epydoc.conf \
1589
		--output $(CURDIR)/$(APIDOC_PY_DIR)
1590

    
1591
.PHONY: hs-apidoc
1592
hs-apidoc: $(HS_BUILT_SRCS)
1593
	@test -n "$(HSCOLOUR)" || \
1594
	    { echo 'HsColour' not found during configure; exit 1; }
1595
	@test -n "$(HADDOCK)" || \
1596
	    { echo 'haddock' not found during configure; exit 1; }
1597
	rm -rf $(APIDOC_HS_DIR)/*
1598
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/HTools/Program
1599
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/Confd
1600
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/Query
1601
	$(HSCOLOUR) -print-css > $(APIDOC_HS_DIR)/Ganeti/hscolour.css
1602
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/HTools/hscolour.css
1603
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/Confd/hscolour.css
1604
	set -e ; \
1605
	cd htools; \
1606
	if [ "$(HTOOLS_NOCURL)" ]; \
1607
	then OPTGHC="--optghc=$(HTOOLS_NOCURL)"; \
1608
	else OPTGHC=""; \
1609
	fi; \
1610
	if [ "$(HTOOLS_PARALLEL3)" ]; \
1611
	then OPTGHC="$$OPTGHC --optghc=$(HTOOLS_PARALLEL3)"; \
1612
	fi; \
1613
	if [ "$(HTOOLS_REGEX_PCRE)" ]; \
1614
	then OPTGHC="$$OPTGHC --optghc=$(HTOOLS_REGEX_PCRE)"; \
1615
	fi; \
1616
	RELSRCS="$(HS_LIB_SRCS:htools/%=%) $(patsubst htools/%,%,$(filter htools/%,$(HS_BUILT_SRCS)))"; \
1617
	for file in $$RELSRCS; do \
1618
		hfile=`echo $$file|sed 's/\\.hs$$//'`.html; \
1619
		$(HSCOLOUR) -css -anchor $$file > ../$(APIDOC_HS_DIR)/$$hfile ; \
1620
	done ; \
1621
	$(HADDOCK) --odir ../$(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1622
		-t ganeti -p haddock-prologue \
1623
		--source-module="%{MODULE/.//}.html" \
1624
		--source-entity="%{MODULE/.//}.html#%{NAME}" \
1625
		$$OPTGHC \
1626
		$(filter-out Ganeti/HTools/ExtLoader.hs,$(HS_LIB_SRCS:htools/%=%))
1627

    
1628
.PHONY: TAGS
1629
TAGS: $(GENERATED_FILES)
1630
	rm -f TAGS
1631
	$(GHC) -e ":etags" -v0 \
1632
	  $(filter-out -O -Werror,$(HFLAGS)) \
1633
	  $(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) $(HTOOLS_REGEX_PCRE) \
1634
	  $(HS_LIBTEST_SRCS)
1635
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1636
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1637
	  -path './qa/*.py' | \
1638
	  etags -l python -a -
1639

    
1640
.PHONY: coverage
1641
if WANT_HTOOLS
1642
coverage: py-coverage hs-coverage
1643
else
1644
coverage: py-coverage
1645
endif
1646

    
1647
.PHONY: py-coverage
1648
py-coverage: $(GENERATED_FILES) $(python_tests)
1649
	@test -n "$(PYCOVERAGE)" || \
1650
	    { echo 'python-coverage' not found during configure; exit 1; }
1651
	set -e; \
1652
	COVERAGE=$(PYCOVERAGE) \
1653
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1654
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1655
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1656
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
1657
	$(python_tests)
1658

    
1659
.PHONY: hs-coverage
1660
hs-coverage: $(haskell_tests) htest/hpc-htools
1661
	rm -f *.tix
1662
	$(MAKE) $(AM_MAKEFLAGS) hs-check
1663
	@mkdir_p@ $(COVERAGE_HS_DIR)
1664
	hpc combine --union $(HPCEXCL) \
1665
	  test.tix hpc-htools.tix > coverage-htools.tix
1666
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-htools.tix
1667
	hpc report coverage-htools.tix
1668
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
1669

    
1670
# Special "kind-of-QA" target for htools, needs special setup (all
1671
# tools compiled with -fhpc)
1672
.PHONY: live-test
1673
live-test: all
1674
	set -e ; \
1675
	cd htools; \
1676
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
1677
	rm -f *.tix *.mix; \
1678
	./live-test.sh; \
1679
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:htools/%=%)) \
1680
	  --output=live-test.tix ; \
1681
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1682
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1683
		--srcdir=.. $(HPCEXCL) ; \
1684
	hpc report --srcdir=.. live-test $(HPCEXCL)
1685

    
1686
commit-check: distcheck lint apidoc
1687

    
1688
.PHONY: gitignore-check
1689
gitignore-check:
1690
	@if [ -n "`git status --short`" ]; then \
1691
	  echo "Git status is not clean!" 1>&2 ; \
1692
	  git status --short; \
1693
	  exit 1; \
1694
	fi
1695

    
1696
# Target that builds all binaries (including those that are not
1697
# rebuilt except when running the tests)
1698
.PHONY: really-all
1699
really-all: all $(check_SCRIPTS) $(haskell_tests)
1700

    
1701
# we don't need the ancient implicit rules:
1702
%: %,v
1703
%: RCS/%,v
1704
%: RCS/%
1705
%: s.%
1706
%: SCCS/s.%
1707

    
1708
-include ./Makefile.local
1709

    
1710
# vim: set noet :