Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ b9bdc10e

History | View | Annotate | Download (45.8 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

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

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

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

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

    
103
BUILDTIME_DIR_AUTOCREATE = \
104
	scripts \
105
	$(APIDOC_DIR) \
106
	$(APIDOC_PY_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
	$(COVERAGE_DIR) \
114
	$(COVERAGE_PY_DIR) \
115
	$(COVERAGE_HS_DIR) \
116
	.hpc
117

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

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

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

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

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

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

    
170
GENERATED_FILES = \
171
	$(built_base_sources) \
172
	$(BUILT_PYTHON_SOURCES) \
173
	$(PYTHON_BOOTSTRAP)
174

    
175
built_base_sources = \
176
	stamp-directories \
177
	stamp-srclinks
178

    
179
built_python_base_sources = \
180
	lib/_autoconf.py \
181
	lib/_vcsversion.py
182

    
183
BUILT_PYTHON_SOURCES = \
184
	$(built_python_base_sources) \
185
	lib/_generated_rpc.py
186

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

    
191
# these are all built from the underlying %.in sources
192
BUILT_EXAMPLES = \
193
	doc/examples/ganeti-kvm-poweroff.initd \
194
	doc/examples/ganeti.cron \
195
	doc/examples/ganeti.initd \
196
	doc/examples/gnt-config-backup \
197
	doc/examples/hooks/ipsec
198

    
199
nodist_pkgpython_PYTHON = \
200
	$(BUILT_PYTHON_SOURCES)
201

    
202
noinst_PYTHON = \
203
	lib/build/__init__.py \
204
	lib/build/sphinx_ext.py \
205
	lib/build/shell_example_lexer.py
206

    
207
pkgpython_PYTHON = \
208
	lib/__init__.py \
209
	lib/asyncnotifier.py \
210
	lib/backend.py \
211
	lib/bdev.py \
212
	lib/bootstrap.py \
213
	lib/cli.py \
214
	lib/cmdlib.py \
215
	lib/compat.py \
216
	lib/config.py \
217
	lib/constants.py \
218
	lib/daemon.py \
219
	lib/errors.py \
220
	lib/ht.py \
221
	lib/jqueue.py \
222
	lib/jstore.py \
223
	lib/locking.py \
224
	lib/luxi.py \
225
	lib/mcpu.py \
226
	lib/netutils.py \
227
	lib/objects.py \
228
	lib/opcodes.py \
229
	lib/ovf.py \
230
	lib/qlang.py \
231
	lib/query.py \
232
	lib/rpc.py \
233
	lib/rpc_defs.py \
234
	lib/runtime.py \
235
	lib/serializer.py \
236
	lib/ssconf.py \
237
	lib/ssh.py \
238
	lib/storage.py \
239
	lib/uidpool.py \
240
	lib/workerpool.py
241

    
242
client_PYTHON = \
243
	lib/client/__init__.py \
244
	lib/client/gnt_backup.py \
245
	lib/client/gnt_cluster.py \
246
	lib/client/gnt_debug.py \
247
	lib/client/gnt_group.py \
248
	lib/client/gnt_instance.py \
249
	lib/client/gnt_job.py \
250
	lib/client/gnt_node.py \
251
	lib/client/gnt_os.py
252

    
253
hypervisor_PYTHON = \
254
	lib/hypervisor/__init__.py \
255
	lib/hypervisor/hv_base.py \
256
	lib/hypervisor/hv_chroot.py \
257
	lib/hypervisor/hv_fake.py \
258
	lib/hypervisor/hv_kvm.py \
259
	lib/hypervisor/hv_lxc.py \
260
	lib/hypervisor/hv_xen.py
261

    
262
rapi_PYTHON = \
263
	lib/rapi/__init__.py \
264
	lib/rapi/baserlib.py \
265
	lib/rapi/client.py \
266
	lib/rapi/client_utils.py \
267
	lib/rapi/connector.py \
268
	lib/rapi/rlib2.py \
269
	lib/rapi/testutils.py
270

    
271
http_PYTHON = \
272
	lib/http/__init__.py \
273
	lib/http/auth.py \
274
	lib/http/client.py \
275
	lib/http/server.py
276

    
277
confd_PYTHON = \
278
	lib/confd/__init__.py \
279
	lib/confd/client.py \
280
	lib/confd/querylib.py \
281
	lib/confd/server.py
282

    
283
masterd_PYTHON = \
284
	lib/masterd/__init__.py \
285
	lib/masterd/instance.py
286

    
287
impexpd_PYTHON = \
288
	lib/impexpd/__init__.py
289

    
290
watcher_PYTHON = \
291
	lib/watcher/__init__.py \
292
	lib/watcher/nodemaint.py \
293
	lib/watcher/state.py
294

    
295
server_PYTHON = \
296
	lib/server/__init__.py \
297
	lib/server/confd.py \
298
	lib/server/masterd.py \
299
	lib/server/noded.py \
300
	lib/server/rapi.py
301

    
302
pytools_PYTHON = \
303
	lib/tools/__init__.py \
304
	lib/tools/ensure_dirs.py
305

    
306
utils_PYTHON = \
307
	lib/utils/__init__.py \
308
	lib/utils/algo.py \
309
	lib/utils/filelock.py \
310
	lib/utils/hash.py \
311
	lib/utils/io.py \
312
	lib/utils/log.py \
313
	lib/utils/mlock.py \
314
	lib/utils/nodesetup.py \
315
	lib/utils/process.py \
316
	lib/utils/retry.py \
317
	lib/utils/text.py \
318
	lib/utils/wrapper.py \
319
	lib/utils/x509.py
320

    
321
docrst = \
322
	doc/admin.rst \
323
	doc/design-2.0.rst \
324
	doc/design-2.1.rst \
325
	doc/design-2.2.rst \
326
	doc/design-2.3.rst \
327
	doc/design-htools-2.3.rst \
328
	doc/design-2.4.rst \
329
	doc/design-2.5.rst \
330
	doc/design-draft.rst \
331
	doc/design-oob.rst \
332
	doc/design-cpu-pinning.rst \
333
	doc/design-query2.rst \
334
	doc/design-x509-ca.rst \
335
	doc/design-http-server.rst \
336
	doc/design-impexp2.rst \
337
	doc/design-lu-generated-jobs.rst \
338
	doc/design-multi-reloc.rst \
339
	doc/design-network.rst \
340
	doc/design-chained-jobs.rst \
341
	doc/design-ovf-support.rst \
342
	doc/design-autorepair.rst \
343
	doc/design-resource-model.rst \
344
	doc/cluster-merge.rst \
345
	doc/design-shared-storage.rst \
346
	doc/design-node-state-cache.rst \
347
	doc/design-virtual-clusters.rst \
348
	doc/design-bulk-create.rst \
349
	doc/design-query-splitting.rst \
350
	doc/devnotes.rst \
351
	doc/glossary.rst \
352
	doc/hooks.rst \
353
	doc/iallocator.rst \
354
	doc/index.rst \
355
	doc/install-quick.rst \
356
	doc/install.rst \
357
	doc/locking.rst \
358
	doc/move-instance.rst \
359
	doc/news.rst \
360
	doc/ovfconverter.rst \
361
	doc/rapi.rst \
362
	doc/security.rst \
363
	doc/upgrade.rst \
364
	doc/walkthrough.rst
365

    
366
HS_PROGS = htools/htools
367
HS_BIN_ROLES = hbal hscan hspace hinfo hcheck
368

    
369
HS_ALL_PROGS = $(HS_PROGS) htest/test htest/hpc-htools htools/hconfd
370
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
371
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=htest/%) htest/hail
372

    
373
HFLAGS = -O -Wall -Werror -fwarn-monomorphism-restriction -fwarn-tabs -ihtools
374
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
375
HEXTRA =
376
# internal extra flags (used for htest/test mainly)
377
HEXTRA_INT =
378
# exclude options for coverage reports
379
HPCEXCL = --exclude Main \
380
	--exclude Ganeti.Constants \
381
	--exclude Ganeti.THH \
382
	--exclude Ganeti.HTools.QC \
383
	--exclude Ganeti.Version \
384
	--exclude Test.Ganeti.TestCommon \
385
	--exclude Test.Ganeti.TestHTools \
386
	--exclude Test.Ganeti.TestHelper \
387
	--exclude Test.Ganeti.TestImports \
388
	$(patsubst htools.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
389

    
390
HS_LIB_SRCS = \
391
	htools/Ganeti/HTools/CLI.hs \
392
	htools/Ganeti/HTools/Cluster.hs \
393
	htools/Ganeti/HTools/Container.hs \
394
	htools/Ganeti/HTools/ExtLoader.hs \
395
	htools/Ganeti/HTools/Group.hs \
396
	htools/Ganeti/HTools/IAlloc.hs \
397
	htools/Ganeti/HTools/Instance.hs \
398
	htools/Ganeti/HTools/Loader.hs \
399
	htools/Ganeti/HTools/Luxi.hs \
400
	htools/Ganeti/HTools/Node.hs \
401
	htools/Ganeti/HTools/PeerMap.hs \
402
	htools/Ganeti/HTools/Rapi.hs \
403
	htools/Ganeti/HTools/Simu.hs \
404
	htools/Ganeti/HTools/Text.hs \
405
	htools/Ganeti/HTools/Types.hs \
406
	htools/Ganeti/HTools/Utils.hs \
407
	htools/Ganeti/HTools/Program.hs \
408
	htools/Ganeti/HTools/Program/Hail.hs \
409
	htools/Ganeti/HTools/Program/Hbal.hs \
410
	htools/Ganeti/HTools/Program/Hcheck.hs \
411
	htools/Ganeti/HTools/Program/Hinfo.hs \
412
	htools/Ganeti/HTools/Program/Hscan.hs \
413
	htools/Ganeti/HTools/Program/Hspace.hs \
414
	htools/Ganeti/BasicTypes.hs \
415
	htools/Ganeti/Compat.hs \
416
	htools/Ganeti/Confd.hs \
417
	htools/Ganeti/Confd/Server.hs \
418
	htools/Ganeti/Confd/Utils.hs \
419
	htools/Ganeti/Config.hs \
420
	htools/Ganeti/Daemon.hs \
421
	htools/Ganeti/Hash.hs \
422
	htools/Ganeti/Jobs.hs \
423
	htools/Ganeti/JSON.hs \
424
	htools/Ganeti/Logging.hs \
425
	htools/Ganeti/Luxi.hs \
426
	htools/Ganeti/Objects.hs \
427
	htools/Ganeti/OpCodes.hs \
428
	htools/Ganeti/Query/Common.hs \
429
	htools/Ganeti/Query/Filter.hs \
430
	htools/Ganeti/Query/Language.hs \
431
	htools/Ganeti/Query/Node.hs \
432
	htools/Ganeti/Query/Query.hs \
433
	htools/Ganeti/Query/Server.hs \
434
	htools/Ganeti/Query/Types.hs \
435
	htools/Ganeti/Rpc.hs \
436
	htools/Ganeti/Runtime.hs \
437
	htools/Ganeti/Ssconf.hs \
438
	htools/Ganeti/THH.hs
439

    
440
HS_TEST_SRCS = \
441
	htest/Test/Ganeti/BasicTypes.hs \
442
	htest/Test/Ganeti/Confd/Utils.hs \
443
	htest/Test/Ganeti/HTools/CLI.hs \
444
	htest/Test/Ganeti/HTools/Cluster.hs \
445
	htest/Test/Ganeti/HTools/Container.hs \
446
	htest/Test/Ganeti/HTools/Instance.hs \
447
	htest/Test/Ganeti/HTools/Loader.hs \
448
	htest/Test/Ganeti/HTools/Node.hs \
449
	htest/Test/Ganeti/HTools/PeerMap.hs \
450
	htest/Test/Ganeti/HTools/Simu.hs \
451
	htest/Test/Ganeti/HTools/Text.hs \
452
	htest/Test/Ganeti/HTools/Types.hs \
453
	htest/Test/Ganeti/HTools/Utils.hs \
454
	htest/Test/Ganeti/JSON.hs \
455
	htest/Test/Ganeti/Jobs.hs \
456
	htest/Test/Ganeti/Luxi.hs \
457
	htest/Test/Ganeti/Objects.hs \
458
	htest/Test/Ganeti/OpCodes.hs \
459
	htest/Test/Ganeti/Query/Language.hs \
460
	htest/Test/Ganeti/Query/Query.hs \
461
	htest/Test/Ganeti/Rpc.hs \
462
	htest/Test/Ganeti/Ssconf.hs \
463
	htest/Test/Ganeti/TestCommon.hs \
464
	htest/Test/Ganeti/TestHTools.hs \
465
	htest/Test/Ganeti/TestHelper.hs
466

    
467
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
468

    
469
HS_BUILT_SRCS = \
470
	htest/Test/Ganeti/TestImports.hs \
471
	htools/Ganeti/Constants.hs \
472
	htools/Ganeti/Version.hs
473
HS_BUILT_SRCS_IN = $(patsubst %,%.in,$(HS_BUILT_SRCS))
474

    
475
$(RUN_IN_TEMPDIR): | stamp-directories
476

    
477
# Note: we use here an order-only prerequisite, as the contents of
478
# _autoconf.py are not actually influencing the html build output: it
479
# has to exist in order for the sphinx module to be loaded
480
# successfully, but we certainly don't want the docs to be rebuilt if
481
# it changes
482
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
483
	$(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
484
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
485
	| $(BUILT_PYTHON_SOURCES)
486
	@test -n "$(SPHINX)" || \
487
	    { echo 'sphinx-build' not found during configure; exit 1; }
488
	@mkdir_p@ $(dir $@)
489
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
490
	    -d . \
491
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
492
	    -D release="$(PACKAGE_VERSION)" \
493
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
494
	rm -f doc/html/.buildinfo doc/html/objects.inv
495
	touch $@
496

    
497
doc/html: doc/html/index.html
498

    
499
doc/install-quick.rst: INSTALL
500
doc/news.rst: NEWS
501
doc/upgrade.rst: UPGRADE
502

    
503
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
504
	set -e; \
505
	{ echo '.. This file is automatically updated at build time from $<.'; \
506
	  echo '.. Do not edit.'; \
507
	  echo; \
508
	  cat $<; \
509
	} > $@
510

    
511
docdot = \
512
	doc/arch-2.0.dot \
513
	doc/design-2.1-lock-acquire.dot \
514
	doc/design-2.1-lock-release.dot
515

    
516
docpng = $(patsubst %.dot,%.png,$(docdot))
517

    
518
# Things to build but not to install (add it to EXTRA_DIST if it should be
519
# distributed)
520
noinst_DATA = \
521
	devel/upload \
522
	doc/html \
523
	$(BUILT_EXAMPLES) \
524
	doc/examples/bash_completion \
525
	$(manhtml)
526

    
527
gnt_scripts = \
528
	scripts/gnt-backup \
529
	scripts/gnt-cluster \
530
	scripts/gnt-debug \
531
	scripts/gnt-group \
532
	scripts/gnt-instance \
533
	scripts/gnt-job \
534
	scripts/gnt-node \
535
	scripts/gnt-os
536

    
537
PYTHON_BOOTSTRAP_SBIN = \
538
	daemons/ganeti-masterd \
539
	daemons/ganeti-noded \
540
	daemons/ganeti-watcher \
541
	daemons/ganeti-rapi \
542
	$(gnt_scripts)
543

    
544
if PY_CONFD
545
PYTHON_BOOTSTRAP_SBIN += daemons/ganeti-confd
546
endif
547

    
548
PYTHON_BOOTSTRAP = \
549
	$(PYTHON_BOOTSTRAP_SBIN) \
550
	tools/ensure-dirs
551

    
552
qa_scripts = \
553
	qa/__init__.py \
554
	qa/ganeti-qa.py \
555
	qa/qa_cluster.py \
556
	qa/qa_config.py \
557
	qa/qa_daemon.py \
558
	qa/qa_env.py \
559
	qa/qa_error.py \
560
	qa/qa_group.py \
561
	qa/qa_instance.py \
562
	qa/qa_job.py \
563
	qa/qa_node.py \
564
	qa/qa_os.py \
565
	qa/qa_rapi.py \
566
	qa/qa_tags.py \
567
	qa/qa_utils.py
568

    
569
bin_SCRIPTS =
570
if WANT_HTOOLS
571
bin_SCRIPTS += $(filter-out htools/hail,$(HS_PROGS))
572
install-exec-hook:
573
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
574
# FIXME: this is a hardcoded logic, instead of auto-resolving
575
	$(LN_S) -f ../../../bin/htools \
576
		   $(DESTDIR)$(iallocatorsdir)/hail
577
	for role in $(HS_BIN_ROLES); do \
578
		$(LN_S) -f htools \
579
			   $(DESTDIR)$(bindir)/$$role ; \
580
	done
581
if HS_CONFD
582
	mv $(DESTDIR)$(sbindir)/hconfd $(DESTDIR)$(sbindir)/ganeti-confd
583
endif
584
endif
585

    
586
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS) Makefile
587
	@if [ -z "$(HTOOLS)" ]; then \
588
	  echo "Error: htools compilation disabled at configure time" 1>&2 ;\
589
	  exit 1; \
590
	fi
591
	@if [ "$(notdir $@)" = "test" ] && [ -z "$(GHC_PKG_QUICKCHECK)" ]; then \
592
	  echo "Error: cannot run unittests without the QuickCheck library (see devnotes.rst)" 1>&2; \
593
	  exit 1; \
594
	fi
595
	@rm -f $(notdir $@).tix
596
	$(GHC) --make \
597
	  $(HFLAGS) \
598
	  $(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) \
599
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
600
	  $(HEXTRA) $(HEXTRA_INT) $@
601
	@touch "$@"
602

    
603
# for the htest/test binary, we need to enable profiling/coverage
604
htest/test: HEXTRA_INT=-fhpc -ihtest
605

    
606
# we compile the hpc-htools binary with the program coverage
607
htest/hpc-htools: HEXTRA_INT=-fhpc
608

    
609
# test dependency
610
htest/offline-tests.sh: htest/hpc-htools
611

    
612
# rules for building profiling-enabled versions of the haskell
613
# programs: hs-prof does the full two-step build, whereas
614
# hs-prof-quick does only the final rebuild (hs-prof must have been
615
# run before)
616
.PHONY: hs-prof hs-prof-quick
617
hs-prof:
618
	$(MAKE) $(AM_MAKEFLAGS) clean
619
	$(MAKE) $(AM_MAKEFLAGS) $(HS_ALL_PROGS) HEXTRA="-osuf .o"
620
	rm -f $(HS_ALL_PROGS)
621
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
622

    
623
hs-prof-quick:
624
	$(MAKE) $(AM_MAKEFLAGS) $(HS_ALL_PROGS) HEXTRA="-osuf .prof_o -prof -auto-all"
625

    
626
dist_sbin_SCRIPTS = \
627
	tools/ganeti-listrunner
628

    
629
nodist_sbin_SCRIPTS = \
630
	$(PYTHON_BOOTSTRAP_SBIN) \
631
	daemons/ganeti-cleaner
632

    
633
if HS_CONFD
634
nodist_sbin_SCRIPTS += htools/hconfd
635
endif
636

    
637
python_scripts = \
638
	tools/burnin \
639
	tools/cfgshell \
640
	tools/cfgupgrade \
641
	tools/cfgupgrade12 \
642
	tools/cluster-merge \
643
	tools/confd-client \
644
	tools/fmtjson \
645
	tools/lvmstrap \
646
	tools/move-instance \
647
	tools/ovfconverter \
648
	tools/setup-ssh \
649
	tools/sanitize-config
650

    
651
dist_tools_SCRIPTS = \
652
	$(python_scripts) \
653
	tools/kvm-console-wrapper \
654
	tools/xm-console-wrapper \
655
	tools/master-ip-setup
656

    
657
pkglib_python_scripts = \
658
	daemons/import-export \
659
	tools/check-cert-expired
660

    
661
nodist_pkglib_python_scripts = \
662
	tools/ensure-dirs
663

    
664
myexeclib_SCRIPTS = \
665
	daemons/daemon-util \
666
	tools/kvm-ifup \
667
	$(pkglib_python_scripts)
668

    
669
nodist_myexeclib_SCRIPTS = \
670
	$(nodist_pkglib_python_scripts)
671

    
672
EXTRA_DIST = \
673
	NEWS \
674
	UPGRADE \
675
	epydoc.conf.in \
676
	pylintrc \
677
	autotools/build-bash-completion \
678
	autotools/build-rpc \
679
	autotools/check-header \
680
	autotools/check-python-code \
681
	autotools/check-imports \
682
	autotools/check-man-dashes \
683
	autotools/check-man-warnings \
684
	autotools/check-news \
685
	autotools/check-tar \
686
	autotools/check-version \
687
	autotools/convert-constants \
688
	autotools/docpp \
689
	autotools/gen-coverage \
690
	autotools/testrunner \
691
	autotools/wrong-hardcoded-paths \
692
	$(RUN_IN_TEMPDIR) \
693
	daemons/daemon-util.in \
694
	daemons/ganeti-cleaner.in \
695
	$(pkglib_python_scripts) \
696
	devel/upload.in \
697
	tools/kvm-ifup.in \
698
	$(docdot) \
699
	$(docpng) \
700
	$(docrst) \
701
	doc/conf.py \
702
	doc/html \
703
	$(BUILT_EXAMPLES:%=%.in) \
704
	doc/examples/ganeti.default \
705
	doc/examples/ganeti.default-debug \
706
	doc/examples/hooks/ethers \
707
	doc/examples/gnt-debug/README \
708
	doc/examples/gnt-debug/delay0.json \
709
	doc/examples/gnt-debug/delay50.json \
710
	test/lockperf.py \
711
	test/testutils.py \
712
	test/mocks.py \
713
	$(dist_TESTS) \
714
	$(TEST_FILES) \
715
	man/footer.rst \
716
	$(manrst) \
717
	$(maninput) \
718
	qa/qa-sample.json \
719
	$(qa_scripts) \
720
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
721
	$(HS_PROG_SRCS) \
722
	htools/lint-hints.hs \
723
	htest/cli-tests-defs.sh \
724
	htest/offline-test.sh
725

    
726
man_MANS = \
727
	man/ganeti.7 \
728
	man/ganeti-cleaner.8 \
729
	man/ganeti-confd.8 \
730
	man/ganeti-listrunner.8 \
731
	man/ganeti-masterd.8 \
732
	man/ganeti-noded.8 \
733
	man/ganeti-os-interface.7 \
734
	man/ganeti-rapi.8 \
735
	man/ganeti-watcher.8 \
736
	man/gnt-backup.8 \
737
	man/gnt-cluster.8 \
738
	man/gnt-debug.8 \
739
	man/gnt-group.8 \
740
	man/gnt-instance.8 \
741
	man/gnt-job.8 \
742
	man/gnt-node.8 \
743
	man/gnt-os.8 \
744
	man/hail.1 \
745
	man/hbal.1 \
746
	man/hcheck.1 \
747
	man/hinfo.1 \
748
	man/hscan.1 \
749
	man/hspace.1 \
750
	man/htools.1
751

    
752
manrst = $(patsubst %.1,%.rst,$(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS))))
753
manhtml = $(patsubst %.rst,%.html,$(manrst))
754
mangen = $(patsubst %.rst,%.gen,$(manrst))
755
maninput = \
756
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
757
	$(patsubst %.html,%.html.in,$(manhtml)) \
758
	man/footer.man man/footer.html $(mangen)
759

    
760
TEST_FILES = \
761
	test/data/bdev-drbd-8.0.txt \
762
	test/data/bdev-drbd-8.3.txt \
763
	test/data/bdev-drbd-disk.txt \
764
	test/data/bdev-drbd-net-ip4.txt \
765
	test/data/bdev-drbd-net-ip6.txt \
766
	test/data/cert1.pem \
767
	test/data/ip-addr-show-dummy0.txt \
768
	test/data/ip-addr-show-lo-ipv4.txt \
769
	test/data/ip-addr-show-lo-ipv6.txt \
770
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
771
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
772
	test/data/ip-addr-show-lo-oneline.txt \
773
	test/data/ip-addr-show-lo.txt \
774
	test/data/proc_drbd8.txt \
775
	test/data/proc_drbd80-emptyline.txt \
776
	test/data/proc_drbd83.txt \
777
	test/data/proc_drbd83_sync.txt \
778
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
779
	test/data/kvm_1.0_help.txt \
780
	test/data/kvm_0.15.90_help.txt \
781
	test/data/kvm_0.12.5_help.txt \
782
	test/data/kvm_0.9.1_help.txt \
783
	test/data/sys_drbd_usermode_helper.txt \
784
	test/data/ovfdata/compr_disk.vmdk.gz \
785
	test/data/ovfdata/config.ini \
786
	test/data/ovfdata/corrupted_resources.ovf \
787
	test/data/ovfdata/empty.ini \
788
	test/data/ovfdata/empty.ovf \
789
	test/data/ovfdata/ganeti.mf \
790
	test/data/ovfdata/ganeti.ovf \
791
	test/data/ovfdata/gzip_disk.ovf \
792
	test/data/ovfdata/new_disk.vmdk \
793
	test/data/ovfdata/no_disk.ini \
794
	test/data/ovfdata/no_disk_in_ref.ovf \
795
	test/data/ovfdata/no_os.ini \
796
	test/data/ovfdata/no_ovf.ova \
797
	test/data/ovfdata/ova.ova \
798
	test/data/ovfdata/second_disk.vmdk \
799
	test/data/ovfdata/rawdisk.raw \
800
	test/data/ovfdata/unsafe_path.ini \
801
	test/data/ovfdata/virtualbox.ovf \
802
	test/data/ovfdata/wrong_extension.ovd \
803
	test/data/ovfdata/wrong_config.ini \
804
	test/data/ovfdata/wrong_manifest.mf \
805
	test/data/ovfdata/wrong_manifest.ovf \
806
	test/data/ovfdata/wrong_ova.ova \
807
	test/data/ovfdata/wrong_xml.ovf \
808
	test/data/ovfdata/other/rawdisk.raw \
809
	test/data/vgreduce-removemissing-2.02.02.txt \
810
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
811
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
812
	test/data/vgs-missing-pvs-2.02.02.txt \
813
	test/data/vgs-missing-pvs-2.02.66.txt \
814
	test/import-export_unittest-helper \
815
	test/gnt-cli.test \
816
	test/ganeti-cli.test \
817
	htest/shelltests/htools-balancing.test \
818
	htest/shelltests/htools-basic.test \
819
	htest/shelltests/htools-dynutil.test \
820
	htest/shelltests/htools-excl.test \
821
	htest/shelltests/htools-hail.test \
822
	htest/shelltests/htools-hspace.test \
823
	htest/shelltests/htools-invalid.test \
824
	htest/shelltests/htools-multi-group.test \
825
	htest/shelltests/htools-no-backend.test \
826
	htest/shelltests/htools-rapi.test \
827
	htest/shelltests/htools-single-group.test \
828
	htest/shelltests/htools-text-backend.test \
829
	htest/data/hail-alloc-drbd.json \
830
	htest/data/hail-change-group.json \
831
	htest/data/hail-invalid-reloc.json \
832
	htest/data/hail-node-evac.json \
833
	htest/data/hail-reloc-drbd.json \
834
	htest/data/hbal-split-insts.data \
835
	htest/data/common-suffix.data \
836
	htest/data/invalid-node.data \
837
	htest/data/missing-resources.data \
838
	htest/data/rapi/groups.json \
839
	htest/data/rapi/info.json \
840
	htest/data/rapi/instances.json \
841
	htest/data/rapi/nodes.json
842

    
843
python_tests = \
844
	doc/examples/rapi_testutils.py \
845
	test/ganeti.asyncnotifier_unittest.py \
846
	test/ganeti.backend_unittest.py \
847
	test/ganeti.bdev_unittest.py \
848
	test/ganeti.cli_unittest.py \
849
	test/ganeti.client.gnt_cluster_unittest.py \
850
	test/ganeti.client.gnt_instance_unittest.py \
851
	test/ganeti.daemon_unittest.py \
852
	test/ganeti.cmdlib_unittest.py \
853
	test/ganeti.compat_unittest.py \
854
	test/ganeti.confd.client_unittest.py \
855
	test/ganeti.config_unittest.py \
856
	test/ganeti.constants_unittest.py \
857
	test/ganeti.errors_unittest.py \
858
	test/ganeti.hooks_unittest.py \
859
	test/ganeti.ht_unittest.py \
860
	test/ganeti.http_unittest.py \
861
	test/ganeti.hypervisor_unittest.py \
862
	test/ganeti.hypervisor.hv_chroot_unittest.py \
863
	test/ganeti.hypervisor.hv_fake_unittest.py \
864
	test/ganeti.hypervisor.hv_kvm_unittest.py \
865
	test/ganeti.hypervisor.hv_lxc_unittest.py \
866
	test/ganeti.hypervisor.hv_xen_unittest.py \
867
	test/ganeti.impexpd_unittest.py \
868
	test/ganeti.jqueue_unittest.py \
869
	test/ganeti.jstore_unittest.py \
870
	test/ganeti.locking_unittest.py \
871
	test/ganeti.luxi_unittest.py \
872
	test/ganeti.masterd.instance_unittest.py \
873
	test/ganeti.mcpu_unittest.py \
874
	test/ganeti.netutils_unittest.py \
875
	test/ganeti.objects_unittest.py \
876
	test/ganeti.opcodes_unittest.py \
877
	test/ganeti.ovf_unittest.py \
878
	test/ganeti.qlang_unittest.py \
879
	test/ganeti.query_unittest.py \
880
	test/ganeti.rapi.baserlib_unittest.py \
881
	test/ganeti.rapi.client_unittest.py \
882
	test/ganeti.rapi.resources_unittest.py \
883
	test/ganeti.rapi.rlib2_unittest.py \
884
	test/ganeti.rapi.testutils_unittest.py \
885
	test/ganeti.rpc_unittest.py \
886
	test/ganeti.runtime_unittest.py \
887
	test/ganeti.serializer_unittest.py \
888
	test/ganeti.ssh_unittest.py \
889
	test/ganeti.storage_unittest.py \
890
	test/ganeti.tools.ensure_dirs_unittest.py \
891
	test/ganeti.uidpool_unittest.py \
892
	test/ganeti.utils.algo_unittest.py \
893
	test/ganeti.utils.filelock_unittest.py \
894
	test/ganeti.utils.hash_unittest.py \
895
	test/ganeti.utils.io_unittest.py \
896
	test/ganeti.utils.log_unittest.py \
897
	test/ganeti.utils.mlock_unittest.py \
898
	test/ganeti.utils.nodesetup_unittest.py \
899
	test/ganeti.utils.process_unittest.py \
900
	test/ganeti.utils.retry_unittest.py \
901
	test/ganeti.utils.text_unittest.py \
902
	test/ganeti.utils.wrapper_unittest.py \
903
	test/ganeti.utils.x509_unittest.py \
904
	test/ganeti.utils_unittest.py \
905
	test/ganeti.workerpool_unittest.py \
906
	test/qa.qa_config_unittest.py \
907
	test/cfgupgrade_unittest.py \
908
	test/docs_unittest.py \
909
	test/pycurl_reset_unittest.py \
910
	test/tempfile_fork_unittest.py
911
if HAS_FAKEROOT
912
python_tests += test/ganeti.utils.io_unittest-runasroot.py
913
endif
914

    
915
haskell_tests = htest/test
916

    
917
dist_TESTS = \
918
	test/check-cert-expired_unittest.bash \
919
	test/daemon-util_unittest.bash \
920
	test/ganeti-cleaner_unittest.bash \
921
	test/import-export_unittest.bash \
922
	test/cli-test.bash \
923
	$(python_tests)
924

    
925
nodist_TESTS =
926
check_SCRIPTS =
927

    
928
if WANT_HTOOLSTESTS
929
nodist_TESTS += $(haskell_tests)
930
dist_TESTS += htest/offline-test.sh
931
check_SCRIPTS += htest/hpc-htools $(HS_BUILT_TEST_HELPERS)
932
endif
933

    
934
TESTS = $(dist_TESTS) $(nodist_TESTS)
935

    
936
# Environment for all tests
937
PLAIN_TESTS_ENVIRONMENT = \
938
	PYTHONPATH=. \
939
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
940
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
941
	$(RUN_IN_TEMPDIR)
942

    
943
# Environment for tests run by automake
944
TESTS_ENVIRONMENT = \
945
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
946

    
947
all_python_code = \
948
	$(dist_sbin_SCRIPTS) \
949
	$(python_scripts) \
950
	$(pkglib_python_scripts) \
951
	$(nodist_pkglib_python_scripts) \
952
	$(python_tests) \
953
	$(pkgpython_PYTHON) \
954
	$(client_PYTHON) \
955
	$(hypervisor_PYTHON) \
956
	$(rapi_PYTHON) \
957
	$(server_PYTHON) \
958
	$(pytools_PYTHON) \
959
	$(http_PYTHON) \
960
	$(confd_PYTHON) \
961
	$(masterd_PYTHON) \
962
	$(impexpd_PYTHON) \
963
	$(utils_PYTHON) \
964
	$(watcher_PYTHON) \
965
	$(noinst_PYTHON) \
966
	$(qa_scripts)
967

    
968
srclink_files = \
969
	man/footer.rst \
970
	test/check-cert-expired_unittest.bash \
971
	test/daemon-util_unittest.bash \
972
	test/ganeti-cleaner_unittest.bash \
973
	test/import-export_unittest.bash \
974
	test/cli-test.bash \
975
	htest/offline-test.sh \
976
	htest/cli-tests-defs.sh \
977
	$(all_python_code) \
978
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS)
979

    
980
check_python_code = \
981
	$(BUILD_BASH_COMPLETION) \
982
	$(CHECK_IMPORTS) \
983
	$(CHECK_HEADER) \
984
	$(DOCPP) \
985
	$(all_python_code)
986

    
987
lint_python_code = \
988
	ganeti \
989
	ganeti/http/server.py \
990
	$(dist_sbin_SCRIPTS) \
991
	$(python_scripts) \
992
	$(pkglib_python_scripts) \
993
	$(BUILD_BASH_COMPLETION) \
994
	$(CHECK_IMPORTS) \
995
	$(CHECK_HEADER) \
996
	$(DOCPP) \
997
	$(PYTHON_BOOTSTRAP)
998

    
999
standalone_python_modules = \
1000
	lib/rapi/client.py \
1001
	tools/ganeti-listrunner
1002

    
1003
pep8_python_code = \
1004
	ganeti \
1005
	ganeti/http/server.py \
1006
	$(dist_sbin_SCRIPTS) \
1007
	$(python_scripts) \
1008
	$(pkglib_python_scripts) \
1009
	$(BUILD_BASH_COMPLETION) \
1010
	$(CHECK_HEADER) \
1011
	$(DOCPP) \
1012
	$(PYTHON_BOOTSTRAP) \
1013
	qa
1014

    
1015
test/daemon-util_unittest.bash: daemons/daemon-util
1016

    
1017
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1018

    
1019
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1020
	sed -f $(REPLACE_VARS_SED) < $< > $@
1021
	chmod +x $@
1022

    
1023
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
1024
	sed -f $(REPLACE_VARS_SED) < $< > $@
1025
	chmod u+x $@
1026

    
1027
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1028
	sed -f $(REPLACE_VARS_SED) < $< > $@
1029
	chmod +x $@
1030

    
1031
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1032
	sed -f $(REPLACE_VARS_SED) < $< > $@
1033

    
1034
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1035
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1036
	$(GENERATED_FILES)
1037
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
1038

    
1039
doc/%.png: doc/%.dot
1040
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
1041
	$(DOT) -Tpng -o $@ $<
1042

    
1043
man/footer.man: man/footer.rst
1044
	@test -n "$(PANDOC)" || \
1045
	  { echo 'pandoc' not found during configure; exit 1; }
1046
	$(PANDOC) -f rst -t man -o $@ $<
1047

    
1048
man/footer.html: man/footer.rst
1049
	@test -n "$(PANDOC)" || \
1050
	  { echo 'pandoc' not found during configure; exit 1; }
1051
	$(PANDOC) -f rst -t html -o $@ $<
1052

    
1053
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1054
	lib/build/shell_example_lexer.py \
1055
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1056
	@echo "Checking $< for hardcoded paths..."
1057
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1058
	  echo "Man page $< has harcoded paths (see above)!" 1>&2 ; \
1059
	  exit 1; \
1060
	fi
1061
	set -e ; \
1062
	trap 'echo auto-removing $@; rm $@' EXIT; \
1063
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1064
	trap - EXIT
1065

    
1066
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.man
1067
	@test -n "$(PANDOC)" || \
1068
	  { echo 'pandoc' not found during configure; exit 1; }
1069
	set -o pipefail ; \
1070
	trap 'echo auto-removing $@; rm $@' EXIT; \
1071
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
1072
	  sed -e 's/\\@/@/g' > $@; \
1073
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1074
	$(CHECK_MAN_DASHES) $@; \
1075
	trap - EXIT
1076

    
1077

    
1078
man/%.html.in: man/%.gen man/footer.html
1079
	@test -n "$(PANDOC)" || \
1080
	  { echo 'pandoc' not found during configure; exit 1; }
1081
	set -o pipefail ; \
1082
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
1083
	  sed -e 's/\\@/@/g' > $@
1084

    
1085
man/%: man/%.in  $(REPLACE_VARS_SED)
1086
	sed -f $(REPLACE_VARS_SED) < $< > $@
1087

    
1088
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1089
	sed -f $(REPLACE_VARS_SED) < $< > $@
1090

    
1091
vcs-version:
1092
	if test -d .git; then \
1093
	  git describe > $@; \
1094
	elif test ! -f $@ ; then \
1095
	  echo "Cannot auto-generate $@ file"; exit 1; \
1096
	fi
1097

    
1098
.PHONY: clean-vcs-version
1099
clean-vcs-version:
1100
	rm -f vcs-version
1101

    
1102
.PHONY: regen-vcs-version
1103
regen-vcs-version:
1104
	set -e; \
1105
	cd $(srcdir); \
1106
	if test -d .git; then \
1107
	  $(MAKE) $(AM_MAKEFLAGS) clean-vcs-version; \
1108
	  $(MAKE) $(AM_MAKEFLAGS) vcs-version; \
1109
	fi
1110

    
1111
htools/Ganeti/Version.hs: htools/Ganeti/Version.hs.in \
1112
	vcs-version $(built_base_sources)
1113
	set -e; \
1114
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1115
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1116

    
1117
htools/Ganeti/Constants.hs: htools/Ganeti/Constants.hs.in \
1118
	lib/constants.py lib/_autoconf.py lib/luxi.py \
1119
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1120
	| lib/_vcsversion.py
1121
	set -e; \
1122
	{ cat $< ; PYTHONPATH=. $(CONVERT_CONSTANTS); } > $@
1123

    
1124
htest/Test/Ganeti/TestImports.hs: htest/Test/Ganeti/TestImports.hs.in \
1125
	$(built_base_sources)
1126
	set -e; \
1127
	{ cat $< ; \
1128
	  echo ; \
1129
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst htools/%,%,$(HS_LIB_SRCS))))) ; do \
1130
	    echo "import $$name ()" ; \
1131
	  done ; \
1132
	} > $@
1133

    
1134
lib/_autoconf.py: Makefile | stamp-directories
1135
	set -e; \
1136
	{ echo '# This file is automatically generated, do not edit!'; \
1137
	  echo '#'; \
1138
	  echo ''; \
1139
	  echo '"""Build-time configuration for Ganeti.'; \
1140
	  echo '';\
1141
	  echo 'This file is autogenerated by the build process.'; \
1142
	  echo 'For any changes you need to re-run ./configure (and'; \
1143
	  echo 'not edit by hand).'; \
1144
	  echo ''; \
1145
	  echo '"""'; \
1146
	  echo ''; \
1147
	  echo '# pylint: disable=C0301,C0324'; \
1148
	  echo '# because this is autogenerated, we do not want'; \
1149
	  echo '# style warnings' ; \
1150
	  echo ''; \
1151
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1152
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1153
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1154
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1155
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1156
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1157
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1158
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1159
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1160
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1161
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1162
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1163
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1164
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1165
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1166
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1167
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1168
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1169
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1170
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1171
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1172
	  echo "IP_PATH = '$(IP_PATH)'"; \
1173
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1174
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1175
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1176
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1177
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1178
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1179
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1180
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1181
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1182
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1183
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1184
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1185
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1186
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1187
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1188
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1189
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1190
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1191
	  echo "NODED_USER = '$(NODED_USER)'"; \
1192
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1193
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1194
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1195
	  if [ "$(HTOOLS)" ]; then \
1196
	    echo "HTOOLS = True"; \
1197
	  else \
1198
	    echo "HTOOLS = False"; \
1199
	  fi; \
1200
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1201
	  echo "PY_CONFD = $(PY_CONFD)"; \
1202
	  echo "HS_CONFD = $(HS_CONFD)"; \
1203
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1204
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1205
	} > $@
1206

    
1207
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1208
	set -e; \
1209
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1210
	{ echo '# This file is automatically generated, do not edit!'; \
1211
	  echo '#'; \
1212
	  echo ''; \
1213
	  echo '"""Build-time VCS version number for Ganeti.'; \
1214
	  echo '';\
1215
	  echo 'This file is autogenerated by the build process.'; \
1216
	  echo 'For any changes you need to re-run ./configure (and'; \
1217
	  echo 'not edit by hand).'; \
1218
	  echo ''; \
1219
	  echo '"""'; \
1220
	  echo ''; \
1221
	  echo '# pylint: disable=C0301,C0324'; \
1222
	  echo '# because this is autogenerated, we do not want'; \
1223
	  echo '# style warnings' ; \
1224
	  echo ''; \
1225
	  echo "VCS_VERSION = '$$VCSVER'"; \
1226
	} > $@
1227

    
1228
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1229
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1230

    
1231
$(REPLACE_VARS_SED): Makefile stamp-directories
1232
	set -e; \
1233
	{ echo 's#@PREFIX@#$(prefix)#g'; \
1234
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
1235
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
1236
	  echo 's#@BINDIR@#$(bindir)#g'; \
1237
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
1238
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1239
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1240
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1241
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1242
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1243
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1244
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1245
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1246
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
1247
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1248
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
1249
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
1250
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
1251
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1252
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1253
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1254
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1255
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1256
	  echo 's#@CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1257
	  echo 's#@MODULES@#$(strip $(lint_python_code))#g'; \
1258
	  echo 's#@ENABLE_SPLIT_QUERY@#$(ENABLE_SPLIT_QUERY)#g'; \
1259
	} > $@
1260

    
1261
# Using deferred evaluation
1262
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1263
daemons/ganeti-watcher: MODULE = ganeti.watcher
1264
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1265
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1266
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst htest/%,%,$@)
1267

    
1268
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1269
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1270
	set -e; \
1271
	{ echo '#!/usr/bin/python'; \
1272
	  echo '# This file is automatically generated, do not edit!'; \
1273
	  echo "# Edit $(MODULE) instead."; \
1274
	  echo; \
1275
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1276
	  echo; \
1277
	  echo '# pylint: disable=C0103'; \
1278
	  echo '# C0103: Invalid name'; \
1279
	  echo; \
1280
	  echo 'import sys'; \
1281
	  echo 'import $(MODULE) as main'; \
1282
	  echo; \
1283
	  echo '# Temporarily alias commands until bash completion'; \
1284
	  echo '# generator is changed'; \
1285
	  echo 'if hasattr(main, "commands"):'; \
1286
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1287
	  echo 'if hasattr(main, "aliases"):'; \
1288
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1289
	  echo; \
1290
	  echo 'if __name__ == "__main__":'; \
1291
	  echo '  sys.exit(main.Main())'; \
1292
	} > $@
1293
	chmod u+x $@
1294

    
1295
$(HS_BUILT_TEST_HELPERS): Makefile
1296
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1297
	set -e; \
1298
	{ echo '#!/bin/sh'; \
1299
	  echo '# This file is automatically generated, do not edit!'; \
1300
	  echo "# Edit Makefile.am instead."; \
1301
	  echo; \
1302
	  echo "HTOOLS=$(TESTROLE) exec ./htest/hpc-htools \"\$$@\""; \
1303
	} > $@
1304
	chmod u+x $@
1305

    
1306
stamp-directories: Makefile
1307
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1308
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1309
	touch $@
1310

    
1311
# We need to create symlinks because "make distcheck" will not install Python
1312
# files when building.
1313
stamp-srclinks: Makefile | stamp-directories
1314
	set -e; \
1315
	for i in $(srclink_files); do \
1316
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1317
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
1318
		fi; \
1319
	done
1320
	touch $@
1321

    
1322
.PHONY: ganeti
1323
ganeti:
1324
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1325

    
1326
.PHONY: check-dirs
1327
check-dirs: $(GENERATED_FILES)
1328
	@set -e; \
1329
	find . -type d \( \( -name . \) -o \( \
1330
		-name .git -o \
1331
		-name autom4te.cache \
1332
		\) -prune -o -print \) | { \
1333
		error=; \
1334
		while read dir; do \
1335
			case "$$dir" in \
1336
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1337
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1338
			esac; \
1339
		done; \
1340
		for dir in $(DIRS); do \
1341
			if ! test -d "$$dir"; then \
1342
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
1343
				error=1; \
1344
			fi \
1345
		done; \
1346
		if test -n "$$error"; then exit 1; else exit 0; fi; \
1347
	}
1348

    
1349
.PHONY: check-local
1350
check-local: check-dirs $(GENERATED_FILES)
1351
	$(CHECK_PYTHON_CODE) $(check_python_code)
1352
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1353
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1354
	$(CHECK_NEWS) < $(top_srcdir)/NEWS
1355
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1356
	expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1357
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1358
		echo "Incorrect version in README, expected $$expver"; \
1359
		exit 1; \
1360
	fi; \
1361
	for file in doc/iallocator.rst doc/hooks.rst; do \
1362
		if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1363
			"Documents Ganeti version $$expver"; then \
1364
			echo "Incorrect version in $$file, expected $$expver"; \
1365
			exit 1; \
1366
		fi; \
1367
	done
1368

    
1369
.PHONY: hs-check
1370
hs-check: htest/test htest/hpc-htools $(HS_BUILT_TEST_HELPERS)
1371
	@rm -f test.tix
1372
	./htest/test
1373
	HBINARY="./htest/hpc-htools" ./htest/offline-test.sh
1374

    
1375
# E111: indentation is not a multiple of four
1376
# E121: continuation line indentation is not a multiple of four
1377
#       (since our indent level is not 4)
1378
# E125: continuation line does not distinguish itself from next logical line
1379
#       (since our indent level is not 4)
1380
# E127: continuation line over-indented for visual indent
1381
#       (since our indent level is not 4)
1382
# note: do NOT add E128 here; it's a valid style error in most cases!
1383
# I've seen real errors, but also some cases were we indent wrongly
1384
# due to line length; try to rework the cases where it is triggered,
1385
# instead of silencing it
1386
# E261: at least two spaces before inline comment
1387
# E501: line too long (80 characters)
1388
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1389

    
1390
# For excluding pep8 expects filenames only, not whole paths
1391
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1392

    
1393
LINT_TARGETS = pylint pylint-qa
1394
if HAS_PEP8
1395
LINT_TARGETS += pep8
1396
endif
1397
if HAS_HLINT
1398
LINT_TARGETS += hlint
1399
endif
1400

    
1401
.PHONY: lint
1402
lint: $(LINT_TARGETS)
1403

    
1404
.PHONY: pylint
1405
pylint: $(GENERATED_FILES)
1406
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1407
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1408

    
1409
.PHONY: pylint-qa
1410
pylint-qa: $(GENERATED_FILES)
1411
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1412
	cd $(top_srcdir)/qa && \
1413
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1414
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1415

    
1416
.PHONY: pep8
1417
pep8: $(GENERATED_FILES)
1418
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1419
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1420
		--repeat $(pep8_python_code)
1421

    
1422
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1423
.PHONY: hlint
1424
hlint: $(HS_BUILT_SRCS) htools/lint-hints.hs
1425
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1426
	if tty -s; then C="-c"; else C=""; fi; \
1427
	$(HLINT) --report=doc/hs-lint.html --cross $$C \
1428
	  --ignore "Use first" \
1429
	  --ignore "Use comparing" \
1430
	  --ignore "Use on" \
1431
	  --ignore "Reduce duplication" \
1432
	  --ignore "Use &&&" \
1433
	  --ignore "Use void" \
1434
	  --hint htools/lint-hints \
1435
	  $(filter-out htools/Ganeti/THH.hs,$(HS_LIBTEST_SRCS))
1436

    
1437
# a dist hook rule for updating the vcs-version file; this is
1438
# hardcoded due to where it needs to build the file...
1439
dist-hook:
1440
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1441
	rm -f $(top_distdir)/vcs-version
1442
	cp -p $(srcdir)/vcs-version $(top_distdir)
1443

    
1444
# a distcheck hook rule for catching revision control directories
1445
distcheck-hook:
1446
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1447
		echo "Found revision control files in final archive." 1>&2; \
1448
		exit 1; \
1449
	fi
1450
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1451
		echo "Found Python byte code in final archive." 1>&2; \
1452
		exit 1; \
1453
	fi
1454
	if find $(top_distdir) -name '*~' | grep .; then \
1455
		echo "Found backup files in final archive." 1>&2; \
1456
		exit 1; \
1457
	fi
1458
# Empty files or directories should not be distributed. They can cause
1459
# unnecessary warnings for packagers. Directories used by automake during
1460
# distcheck must be excluded.
1461
	if find $(top_distdir) -empty -and -not \( \
1462
			-path $(top_distdir)/_build -or \
1463
			-path $(top_distdir)/_inst \) | grep .; then \
1464
		echo "Found empty files or directories in final archive." 1>&2; \
1465
		exit 1; \
1466
	fi
1467
	if test -n "$(BUILD_RELEASE)" && \
1468
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
1469
		echo "Found unreleased version in NEWS." >&2; \
1470
		exit 1; \
1471
	fi
1472

    
1473
# When building a release, stricter checks should be used
1474
distcheck-release dist-release: export BUILD_RELEASE = 1
1475
distcheck-release: distcheck
1476

    
1477
distrebuildcheck: dist
1478
	set -e; \
1479
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1480
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1481
	cd $$builddir; \
1482
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1483
	cd $(distdir); \
1484
	./configure; \
1485
	$(MAKE) maintainer-clean; \
1486
	cp $(abs_srcdir)/vcs-version .; \
1487
	./configure; \
1488
	$(MAKE) $(AM_MAKEFLAGS)
1489

    
1490
dist-release: dist
1491
	set -e; \
1492
	for i in $(DIST_ARCHIVES); do \
1493
		echo -n "Checking $$i ... "; \
1494
		autotools/check-tar < $$i; \
1495
		echo OK; \
1496
	done
1497

    
1498
install-exec-local:
1499
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1500
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1501
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1502

    
1503
.PHONY: apidoc
1504
if WANT_HTOOLSAPIDOC
1505
apidoc: py-apidoc hs-apidoc
1506
else
1507
apidoc: py-apidoc
1508
endif
1509

    
1510
.PHONY: py-apidoc
1511
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1512
	$(RUN_IN_TEMPDIR) epydoc -v \
1513
		--conf $(CURDIR)/epydoc.conf \
1514
		--output $(CURDIR)/$(APIDOC_PY_DIR)
1515

    
1516
.PHONY: hs-apidoc
1517
hs-apidoc: $(HS_BUILT_SRCS)
1518
	@test -n "$(HSCOLOUR)" || \
1519
	    { echo 'HsColour' not found during configure; exit 1; }
1520
	@test -n "$(HADDOCK)" || \
1521
	    { echo 'haddock' not found during configure; exit 1; }
1522
	rm -rf $(APIDOC_HS_DIR)/*
1523
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/HTools/Program
1524
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/Confd
1525
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/Query
1526
	$(HSCOLOUR) -print-css > $(APIDOC_HS_DIR)/Ganeti/hscolour.css
1527
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/HTools/hscolour.css
1528
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/Confd/hscolour.css
1529
	set -e ; \
1530
	cd htools; \
1531
	if [ "$(HTOOLS_NOCURL)" ]; \
1532
	then OPTGHC="--optghc=$(HTOOLS_NOCURL)"; \
1533
	else OPTGHC=""; \
1534
	fi; \
1535
	if [ "$(HTOOLS_PARALLEL3)" ]; \
1536
	then OPTGHC="$$OPTGHC --optghc=$(HTOOLS_PARALLEL3)"; \
1537
	fi; \
1538
	RELSRCS="$(HS_LIB_SRCS:htools/%=%) $(patsubst htools/%,%,$(filter htools/%,$(HS_BUILT_SRCS)))"; \
1539
	for file in $$RELSRCS; do \
1540
		hfile=`echo $$file|sed 's/\\.hs$$//'`.html; \
1541
		$(HSCOLOUR) -css -anchor $$file > ../$(APIDOC_HS_DIR)/$$hfile ; \
1542
	done ; \
1543
	$(HADDOCK) --odir ../$(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1544
		-t ganeti-htools -p haddock-prologue \
1545
		--source-module="%{MODULE/.//}.html" \
1546
		--source-entity="%{MODULE/.//}.html#%{NAME}" \
1547
		$$OPTGHC \
1548
		$(filter-out Ganeti/HTools/ExtLoader.hs,$(HS_LIB_SRCS:htools/%=%))
1549

    
1550
.PHONY: TAGS
1551
TAGS: $(GENERATED_FILES)
1552
	rm -f TAGS
1553
	$(GHC) -e ":etags" -v0 $(HFLAGS) $(HS_LIBTEST_SRCS)
1554
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1555
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1556
	  -path './qa/*.py' | \
1557
	  etags -l python -a -
1558

    
1559
.PHONY: coverage
1560
if WANT_HTOOLS
1561
coverage: py-coverage hs-coverage
1562
else
1563
coverage: py-coverage
1564
endif
1565

    
1566
.PHONY: py-coverage
1567
py-coverage: $(GENERATED_FILES) $(python_tests)
1568
	set -e; \
1569
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1570
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1571
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1572
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
1573
	$(python_tests)
1574

    
1575
.PHONY: hs-coverage
1576
hs-coverage: $(haskell_tests) htest/hpc-htools
1577
	rm -f *.tix
1578
	$(MAKE) $(AM_MAKEFLAGS) hs-check
1579
	@mkdir_p@ $(COVERAGE_HS_DIR)
1580
	hpc combine --union $(HPCEXCL) \
1581
	  test.tix hpc-htools.tix > coverage-htools.tix
1582
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-htools.tix
1583
	hpc report coverage-htools.tix
1584
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
1585

    
1586
# Special "kind-of-QA" target for htools, needs special setup (all
1587
# tools compiled with -fhpc)
1588
.PHONY: live-test
1589
live-test: all
1590
	set -e ; \
1591
	cd htools; \
1592
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
1593
	rm -f *.tix *.mix; \
1594
	./live-test.sh; \
1595
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:htools/%=%)) \
1596
	  --output=live-test.tix ; \
1597
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1598
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1599
		--srcdir=.. $(HPCEXCL) ; \
1600
	hpc report --srcdir=.. live-test $(HPCEXCL)
1601

    
1602
commit-check: distcheck lint apidoc
1603

    
1604
.PHONY: gitignore-check
1605
gitignore-check:
1606
	@if [ -n "`git status --short`" ]; then \
1607
	  echo "Git status is not clean!" 1>&2 ; \
1608
	  git status --short; \
1609
	  exit 1; \
1610
	fi
1611

    
1612
# we don't need the ancient implicit rules:
1613
%: %,v
1614
%: RCS/%,v
1615
%: RCS/%
1616
%: s.%
1617
%: SCCS/s.%
1618

    
1619
-include ./Makefile.local
1620

    
1621
# vim: set noet :