Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 9de303af

History | View | Annotate | Download (50.1 kB)

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

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

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

    
17
# 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/Block \
61
	htools/Ganeti/Block/Drbd \
62
	htools/Ganeti/Confd \
63
	htools/Ganeti/HTools \
64
	htools/Ganeti/HTools/Backend \
65
	htools/Ganeti/HTools/Program \
66
	htools/Ganeti/Query \
67
	htest \
68
	htest/Test \
69
	htest/Test/Ganeti \
70
	htest/Test/Ganeti/Block \
71
	htest/Test/Ganeti/Block/Drbd \
72
	htest/Test/Ganeti/Confd \
73
	htest/Test/Ganeti/HTools \
74
	htest/Test/Ganeti/HTools/Backend \
75
	htest/Test/Ganeti/Query
76

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

    
110
BUILDTIME_DIR_AUTOCREATE = \
111
	scripts \
112
	$(APIDOC_DIR) \
113
	$(APIDOC_HS_DIR) \
114
	$(APIDOC_HS_DIR)/Ganeti \
115
	$(APIDOC_HS_DIR)/Ganeti/Block \
116
	$(APIDOC_HS_DIR)/Ganeti/Block/Drbd \
117
	$(APIDOC_HS_DIR)/Ganeti/Confd \
118
	$(APIDOC_HS_DIR)/Ganeti/HTools \
119
	$(APIDOC_HS_DIR)/Ganeti/HTools/Backend \
120
	$(APIDOC_HS_DIR)/Ganeti/HTools/Program \
121
	$(APIDOC_HS_DIR)/Ganeti/Query \
122
	$(APIDOC_PY_DIR) \
123
	$(COVERAGE_DIR) \
124
	$(COVERAGE_HS_DIR) \
125
	$(COVERAGE_PY_DIR) \
126
	.hpc
127

    
128
BUILDTIME_DIRS = \
129
	$(BUILDTIME_DIR_AUTOCREATE) \
130
	doc/html
131

    
132
DIRCHECK_EXCLUDE = \
133
	$(BUILDTIME_DIRS) \
134
	ganeti-[0-9]*.[0-9]*.[0-9]* \
135
	doc/html/_*
136

    
137
# some helper vars
138
COVERAGE_DIR = doc/coverage
139
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
140
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
141
APIDOC_DIR = doc/api
142
APIDOC_PY_DIR = $(APIDOC_DIR)/py
143
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
144

    
145
MAINTAINERCLEANFILES = \
146
	$(docpng) \
147
	$(maninput) \
148
	doc/install-quick.rst \
149
	doc/news.rst \
150
	doc/upgrade.rst \
151
	vcs-version
152

    
153
maintainer-clean-local:
154
	rm -rf $(BUILDTIME_DIRS)
155

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

    
183
GENERATED_FILES = \
184
	$(built_base_sources) \
185
	$(BUILT_PYTHON_SOURCES) \
186
	$(PYTHON_BOOTSTRAP)
187

    
188
HTOOLS_GENERATED_FILES =
189
if WANT_HTOOLS
190
HTOOLS_GENERATED_FILES += $(HS_PROGS)
191
if ENABLE_CONFD
192
HTOOLS_GENERATED_FILES += htools/hconfd htools/ganeti-confd
193
endif
194
endif
195

    
196
built_base_sources = \
197
	stamp-directories \
198
	stamp-srclinks
199

    
200
built_python_base_sources = \
201
	lib/_autoconf.py \
202
	lib/_vcsversion.py
203

    
204
BUILT_PYTHON_SOURCES = \
205
	$(built_python_base_sources) \
206
	lib/_generated_rpc.py
207

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

    
212
# these are all built from the underlying %.in sources
213
BUILT_EXAMPLES = \
214
	doc/examples/ganeti-kvm-poweroff.initd \
215
	doc/examples/ganeti.cron \
216
	doc/examples/ganeti.initd \
217
	doc/examples/ganeti-master-role.ocf \
218
	doc/examples/ganeti-node-role.ocf \
219
	doc/examples/gnt-config-backup \
220
	doc/examples/hooks/ipsec
221

    
222
nodist_pkgpython_PYTHON = \
223
	$(BUILT_PYTHON_SOURCES)
224

    
225
noinst_PYTHON = \
226
	lib/build/__init__.py \
227
	lib/build/shell_example_lexer.py \
228
	lib/build/sphinx_ext.py
229

    
230
pkgpython_PYTHON = \
231
	lib/__init__.py \
232
	lib/asyncnotifier.py \
233
	lib/backend.py \
234
	lib/bdev.py \
235
	lib/bootstrap.py \
236
	lib/cli.py \
237
	lib/cmdlib.py \
238
	lib/compat.py \
239
	lib/config.py \
240
	lib/constants.py \
241
	lib/daemon.py \
242
	lib/errors.py \
243
	lib/ht.py \
244
	lib/jqueue.py \
245
	lib/jstore.py \
246
	lib/locking.py \
247
	lib/luxi.py \
248
	lib/mcpu.py \
249
	lib/netutils.py \
250
	lib/objects.py \
251
	lib/objectutils.py \
252
	lib/opcodes.py \
253
	lib/ovf.py \
254
	lib/pathutils.py \
255
	lib/qlang.py \
256
	lib/query.py \
257
	lib/rpc.py \
258
	lib/rpc_defs.py \
259
	lib/runtime.py \
260
	lib/serializer.py \
261
	lib/ssconf.py \
262
	lib/ssh.py \
263
	lib/storage.py \
264
	lib/uidpool.py \
265
	lib/vcluster.py \
266
	lib/network.py \
267
	lib/workerpool.py
268

    
269
client_PYTHON = \
270
	lib/client/__init__.py \
271
	lib/client/gnt_backup.py \
272
	lib/client/gnt_cluster.py \
273
	lib/client/gnt_debug.py \
274
	lib/client/gnt_group.py \
275
	lib/client/gnt_instance.py \
276
	lib/client/gnt_job.py \
277
	lib/client/gnt_node.py \
278
	lib/client/gnt_network.py \
279
	lib/client/gnt_os.py
280

    
281
hypervisor_PYTHON = \
282
	lib/hypervisor/__init__.py \
283
	lib/hypervisor/hv_base.py \
284
	lib/hypervisor/hv_chroot.py \
285
	lib/hypervisor/hv_fake.py \
286
	lib/hypervisor/hv_kvm.py \
287
	lib/hypervisor/hv_lxc.py \
288
	lib/hypervisor/hv_xen.py
289

    
290
rapi_PYTHON = \
291
	lib/rapi/__init__.py \
292
	lib/rapi/baserlib.py \
293
	lib/rapi/client.py \
294
	lib/rapi/client_utils.py \
295
	lib/rapi/connector.py \
296
	lib/rapi/rlib2.py \
297
	lib/rapi/testutils.py
298

    
299
http_PYTHON = \
300
	lib/http/__init__.py \
301
	lib/http/auth.py \
302
	lib/http/client.py \
303
	lib/http/server.py
304

    
305
confd_PYTHON = \
306
	lib/confd/__init__.py \
307
	lib/confd/client.py
308

    
309
masterd_PYTHON = \
310
	lib/masterd/__init__.py \
311
	lib/masterd/iallocator.py \
312
	lib/masterd/instance.py
313

    
314
impexpd_PYTHON = \
315
	lib/impexpd/__init__.py
316

    
317
watcher_PYTHON = \
318
	lib/watcher/__init__.py \
319
	lib/watcher/nodemaint.py \
320
	lib/watcher/state.py
321

    
322
server_PYTHON = \
323
	lib/server/__init__.py \
324
	lib/server/masterd.py \
325
	lib/server/noded.py \
326
	lib/server/rapi.py
327

    
328
pytools_PYTHON = \
329
	lib/tools/__init__.py \
330
	lib/tools/ensure_dirs.py \
331
	lib/tools/prepare_node_join.py
332

    
333
utils_PYTHON = \
334
	lib/utils/__init__.py \
335
	lib/utils/algo.py \
336
	lib/utils/filelock.py \
337
	lib/utils/hash.py \
338
	lib/utils/io.py \
339
	lib/utils/log.py \
340
	lib/utils/mlock.py \
341
	lib/utils/nodesetup.py \
342
	lib/utils/process.py \
343
	lib/utils/retry.py \
344
	lib/utils/text.py \
345
	lib/utils/wrapper.py \
346
	lib/utils/x509.py
347

    
348
docrst = \
349
	doc/admin.rst \
350
	doc/cluster-merge.rst \
351
	doc/design-2.0.rst \
352
	doc/design-2.1.rst \
353
	doc/design-2.2.rst \
354
	doc/design-2.3.rst \
355
	doc/design-2.4.rst \
356
	doc/design-2.5.rst \
357
	doc/design-2.6.rst \
358
	doc/design-2.7.rst \
359
	doc/design-autorepair.rst \
360
	doc/design-bulk-create.rst \
361
	doc/design-chained-jobs.rst \
362
	doc/design-cpu-pinning.rst \
363
	doc/design-draft.rst \
364
	doc/design-htools-2.3.rst \
365
	doc/design-http-server.rst \
366
	doc/design-impexp2.rst \
367
	doc/design-lu-generated-jobs.rst \
368
	doc/design-linuxha.rst \
369
	doc/design-multi-reloc.rst \
370
	doc/design-network.rst \
371
	doc/design-node-add.rst \
372
	doc/design-oob.rst \
373
	doc/design-ovf-support.rst \
374
	doc/design-partitioned.rst \
375
	doc/design-query-splitting.rst \
376
	doc/design-query2.rst \
377
	doc/design-remote-commands.rst \
378
	doc/design-resource-model.rst \
379
	doc/design-shared-storage.rst \
380
	doc/design-monitoring-agent.rst \
381
	doc/design-virtual-clusters.rst \
382
	doc/design-x509-ca.rst \
383
	doc/devnotes.rst \
384
	doc/glossary.rst \
385
	doc/hooks.rst \
386
	doc/iallocator.rst \
387
	doc/index.rst \
388
	doc/install-quick.rst \
389
	doc/install.rst \
390
	doc/locking.rst \
391
	doc/move-instance.rst \
392
	doc/news.rst \
393
	doc/ovfconverter.rst \
394
	doc/rapi.rst \
395
	doc/security.rst \
396
	doc/upgrade.rst \
397
	doc/virtual-cluster.rst \
398
	doc/walkthrough.rst
399

    
400
HS_PROGS = htools/htools
401
HS_BIN_ROLES = hbal hscan hspace hinfo hcheck
402
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
403

    
404
HS_ALL_PROGS = \
405
	$(HS_PROGS) \
406
	htest/hpc-htools \
407
	htest/test \
408
	htools/hconfd \
409
	htools/rpc-test
410

    
411
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
412
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=htest/%) htest/hail
413

    
414
HFLAGS = \
415
	-O -Wall -Werror -ihtools \
416
	-fwarn-monomorphism-restriction \
417
	-fwarn-tabs \
418
	$(GHC_BYVERSION_FLAGS)
419

    
420
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
421
HEXTRA =
422
# internal extra flags (used for htest/test mainly)
423
HEXTRA_INT =
424
# exclude options for coverage reports
425
HPCEXCL = --exclude Main \
426
	--exclude Ganeti.Constants \
427
	--exclude Ganeti.HTools.QC \
428
	--exclude Ganeti.THH \
429
	--exclude Ganeti.Version \
430
	--exclude Test.Ganeti.Attoparsec \
431
	--exclude Test.Ganeti.TestCommon \
432
	--exclude Test.Ganeti.TestHTools \
433
	--exclude Test.Ganeti.TestHelper \
434
	--exclude Test.Ganeti.TestImports \
435
	$(patsubst htools.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
436

    
437
HS_LIB_SRCS = \
438
	htools/Ganeti/Block/Drbd/Types.hs \
439
	htools/Ganeti/Block/Drbd/Parser.hs \
440
	htools/Ganeti/BasicTypes.hs \
441
	htools/Ganeti/Common.hs \
442
	htools/Ganeti/Compat.hs \
443
	htools/Ganeti/Confd/Server.hs \
444
	htools/Ganeti/Confd/Types.hs \
445
	htools/Ganeti/Confd/Utils.hs \
446
	htools/Ganeti/Config.hs \
447
	htools/Ganeti/Daemon.hs \
448
	htools/Ganeti/Errors.hs \
449
	htools/Ganeti/HTools/Backend/IAlloc.hs \
450
	htools/Ganeti/HTools/Backend/Luxi.hs \
451
	htools/Ganeti/HTools/Backend/Rapi.hs \
452
	htools/Ganeti/HTools/Backend/Simu.hs \
453
	htools/Ganeti/HTools/Backend/Text.hs \
454
	htools/Ganeti/HTools/CLI.hs \
455
	htools/Ganeti/HTools/Cluster.hs \
456
	htools/Ganeti/HTools/Container.hs \
457
	htools/Ganeti/HTools/ExtLoader.hs \
458
	htools/Ganeti/HTools/Group.hs \
459
	htools/Ganeti/HTools/Instance.hs \
460
	htools/Ganeti/HTools/Loader.hs \
461
	htools/Ganeti/HTools/Node.hs \
462
	htools/Ganeti/HTools/PeerMap.hs \
463
	htools/Ganeti/HTools/Program.hs \
464
	htools/Ganeti/HTools/Program/Hail.hs \
465
	htools/Ganeti/HTools/Program/Hbal.hs \
466
	htools/Ganeti/HTools/Program/Hcheck.hs \
467
	htools/Ganeti/HTools/Program/Hinfo.hs \
468
	htools/Ganeti/HTools/Program/Hscan.hs \
469
	htools/Ganeti/HTools/Program/Hspace.hs \
470
	htools/Ganeti/HTools/Types.hs \
471
	htools/Ganeti/Hash.hs \
472
	htools/Ganeti/JSON.hs \
473
	htools/Ganeti/Jobs.hs \
474
	htools/Ganeti/Logging.hs \
475
	htools/Ganeti/Luxi.hs \
476
	htools/Ganeti/Objects.hs \
477
	htools/Ganeti/OpCodes.hs \
478
	htools/Ganeti/OpParams.hs \
479
	htools/Ganeti/Path.hs \
480
	htools/Ganeti/Query/Common.hs \
481
	htools/Ganeti/Query/Filter.hs \
482
	htools/Ganeti/Query/Group.hs \
483
	htools/Ganeti/Query/Language.hs \
484
	htools/Ganeti/Query/Node.hs \
485
	htools/Ganeti/Query/Query.hs \
486
	htools/Ganeti/Query/Server.hs \
487
	htools/Ganeti/Query/Types.hs \
488
	htools/Ganeti/Rpc.hs \
489
	htools/Ganeti/Runtime.hs \
490
	htools/Ganeti/Ssconf.hs \
491
	htools/Ganeti/THH.hs \
492
	htools/Ganeti/Types.hs \
493
	htools/Ganeti/Utils.hs
494

    
495
HS_TEST_SRCS = \
496
	htest/Test/Ganeti/Attoparsec.hs \
497
	htest/Test/Ganeti/BasicTypes.hs \
498
	htest/Test/Ganeti/Block/Drbd/Parser.hs \
499
	htest/Test/Ganeti/Block/Drbd/Types.hs \
500
	htest/Test/Ganeti/Common.hs \
501
	htest/Test/Ganeti/Confd/Utils.hs \
502
	htest/Test/Ganeti/Daemon.hs \
503
	htest/Test/Ganeti/Errors.hs \
504
	htest/Test/Ganeti/HTools/Backend/Simu.hs \
505
	htest/Test/Ganeti/HTools/Backend/Text.hs \
506
	htest/Test/Ganeti/HTools/CLI.hs \
507
	htest/Test/Ganeti/HTools/Cluster.hs \
508
	htest/Test/Ganeti/HTools/Container.hs \
509
	htest/Test/Ganeti/HTools/Instance.hs \
510
	htest/Test/Ganeti/HTools/Loader.hs \
511
	htest/Test/Ganeti/HTools/Node.hs \
512
	htest/Test/Ganeti/HTools/PeerMap.hs \
513
	htest/Test/Ganeti/HTools/Types.hs \
514
	htest/Test/Ganeti/JSON.hs \
515
	htest/Test/Ganeti/Jobs.hs \
516
	htest/Test/Ganeti/Luxi.hs \
517
	htest/Test/Ganeti/Objects.hs \
518
	htest/Test/Ganeti/OpCodes.hs \
519
	htest/Test/Ganeti/Query/Filter.hs \
520
	htest/Test/Ganeti/Query/Language.hs \
521
	htest/Test/Ganeti/Query/Query.hs \
522
	htest/Test/Ganeti/Rpc.hs \
523
	htest/Test/Ganeti/Ssconf.hs \
524
	htest/Test/Ganeti/THH.hs \
525
	htest/Test/Ganeti/TestCommon.hs \
526
	htest/Test/Ganeti/TestHTools.hs \
527
	htest/Test/Ganeti/TestHelper.hs \
528
	htest/Test/Ganeti/Types.hs \
529
	htest/Test/Ganeti/Utils.hs
530

    
531
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
532

    
533
HS_BUILT_SRCS = \
534
	htest/Test/Ganeti/TestImports.hs \
535
	htools/Ganeti/Constants.hs \
536
	htools/Ganeti/Version.hs
537
HS_BUILT_SRCS_IN = $(patsubst %,%.in,$(HS_BUILT_SRCS))
538

    
539
$(RUN_IN_TEMPDIR): | stamp-directories
540

    
541
# Note: we use here an order-only prerequisite, as the contents of
542
# _autoconf.py are not actually influencing the html build output: it
543
# has to exist in order for the sphinx module to be loaded
544
# successfully, but we certainly don't want the docs to be rebuilt if
545
# it changes
546
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
547
	$(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
548
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
549
	| $(BUILT_PYTHON_SOURCES)
550
	@test -n "$(SPHINX)" || \
551
	    { echo 'sphinx-build' not found during configure; exit 1; }
552
	@mkdir_p@ $(dir $@)
553
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
554
	    -d . \
555
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
556
	    -D release="$(PACKAGE_VERSION)" \
557
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
558
	rm -f doc/html/.buildinfo doc/html/objects.inv
559
	touch $@
560

    
561
doc/html: doc/html/index.html
562

    
563
doc/install-quick.rst: INSTALL
564
doc/news.rst: NEWS
565
doc/upgrade.rst: UPGRADE
566

    
567
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
568
	set -e; \
569
	{ echo '.. This file is automatically updated at build time from $<.'; \
570
	  echo '.. Do not edit.'; \
571
	  echo; \
572
	  cat $<; \
573
	} > $@
574

    
575
docdot = \
576
	doc/arch-2.0.dot \
577
	doc/design-2.1-lock-acquire.dot \
578
	doc/design-2.1-lock-release.dot
579

    
580
docpng = $(patsubst %.dot,%.png,$(docdot))
581

    
582
# Things to build but not to install (add it to EXTRA_DIST if it should be
583
# distributed)
584
noinst_DATA = \
585
	doc/html \
586
	$(BUILT_EXAMPLES) \
587
	doc/examples/bash_completion \
588
	doc/examples/bash_completion-debug \
589
	$(manhtml)
590

    
591
gnt_scripts = \
592
	scripts/gnt-backup \
593
	scripts/gnt-cluster \
594
	scripts/gnt-debug \
595
	scripts/gnt-group \
596
	scripts/gnt-instance \
597
	scripts/gnt-job \
598
	scripts/gnt-network \
599
	scripts/gnt-node \
600
	scripts/gnt-os
601

    
602
PYTHON_BOOTSTRAP_SBIN = \
603
	daemons/ganeti-masterd \
604
	daemons/ganeti-noded \
605
	daemons/ganeti-rapi \
606
	daemons/ganeti-watcher \
607
	$(gnt_scripts)
608

    
609
PYTHON_BOOTSTRAP = \
610
	$(PYTHON_BOOTSTRAP_SBIN) \
611
	tools/ensure-dirs \
612
	tools/prepare-node-join
613

    
614
qa_scripts = \
615
	qa/__init__.py \
616
	qa/ganeti-qa.py \
617
	qa/qa_cluster.py \
618
	qa/qa_config.py \
619
	qa/qa_daemon.py \
620
	qa/qa_env.py \
621
	qa/qa_error.py \
622
	qa/qa_group.py \
623
	qa/qa_instance.py \
624
	qa/qa_job.py \
625
	qa/qa_node.py \
626
	qa/qa_os.py \
627
	qa/qa_rapi.py \
628
	qa/qa_tags.py \
629
	qa/qa_utils.py
630

    
631
bin_SCRIPTS =
632
if WANT_HTOOLS
633
bin_SCRIPTS += $(filter-out htools/hail,$(HS_PROGS))
634
install-exec-hook:
635
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
636
# FIXME: this is a hardcoded logic, instead of auto-resolving
637
	$(LN_S) -f ../../../bin/htools \
638
		   $(DESTDIR)$(iallocatorsdir)/hail
639
	for role in $(HS_BIN_ROLES); do \
640
		$(LN_S) -f htools \
641
			   $(DESTDIR)$(bindir)/$$role ; \
642
	done
643
endif
644

    
645
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS) Makefile
646
	@if [ "$(notdir $@)" = "test" ] && [ "$(HTOOLS_NODEV)" ]; then \
647
	  echo "Error: cannot run unittests without the development" \
648
	       " libraries (see devnotes.rst)" 1>&2; \
649
	  exit 1; \
650
	fi
651
	@rm -f $(notdir $@).tix
652
	$(GHC) --make \
653
	  $(HFLAGS) \
654
	  $(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) $(HTOOLS_REGEX_PCRE) \
655
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
656
	  $(HEXTRA) $(HEXTRA_INT) $@
657
	@touch "$@"
658

    
659
# for the htest/test binary, we need to enable profiling/coverage
660
htest/test: HEXTRA_INT=-fhpc -ihtest
661

    
662
# we compile the hpc-htools binary with the program coverage
663
htest/hpc-htools: HEXTRA_INT=-fhpc
664

    
665
# test dependency
666
htest/offline-tests.sh: htest/hpc-htools
667

    
668
# rules for building profiling-enabled versions of the haskell
669
# programs: hs-prof does the full two-step build, whereas
670
# hs-prof-quick does only the final rebuild (hs-prof must have been
671
# run before)
672
.PHONY: hs-prof hs-prof-quick
673
hs-prof:
674
	$(MAKE) $(AM_MAKEFLAGS) clean
675
	$(MAKE) $(AM_MAKEFLAGS) $(HS_ALL_PROGS) HEXTRA="-osuf o"
676
	rm -f $(HS_ALL_PROGS)
677
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
678

    
679
hs-prof-quick:
680
	$(MAKE) $(AM_MAKEFLAGS) $(HS_ALL_PROGS) HEXTRA="-osuf prof_o -prof -auto-all"
681

    
682
dist_sbin_SCRIPTS = \
683
	tools/ganeti-listrunner
684

    
685
nodist_sbin_SCRIPTS = \
686
	$(PYTHON_BOOTSTRAP_SBIN) \
687
	daemons/ganeti-cleaner
688

    
689
if ENABLE_CONFD
690
htools/ganeti-confd: htools/hconfd
691
	cp -f $< $@
692

    
693
nodist_sbin_SCRIPTS += htools/ganeti-confd
694
endif
695

    
696
python_scripts = \
697
	tools/burnin \
698
	tools/cfgshell \
699
	tools/cfgupgrade \
700
	tools/cfgupgrade12 \
701
	tools/cluster-merge \
702
	tools/confd-client \
703
	tools/fmtjson \
704
	tools/lvmstrap \
705
	tools/move-instance \
706
	tools/ovfconverter \
707
	tools/sanitize-config
708

    
709
dist_tools_SCRIPTS = \
710
	$(python_scripts) \
711
	tools/kvm-console-wrapper \
712
	tools/master-ip-setup \
713
	tools/xen-console-wrapper
714

    
715
nodist_tools_SCRIPTS = \
716
	tools/vcluster-setup
717

    
718
pkglib_python_scripts = \
719
	daemons/import-export \
720
	tools/check-cert-expired
721

    
722
nodist_pkglib_python_scripts = \
723
	tools/ensure-dirs \
724
	tools/prepare-node-join
725

    
726
myexeclib_SCRIPTS = \
727
	daemons/daemon-util \
728
	tools/kvm-ifup \
729
	$(pkglib_python_scripts)
730

    
731
nodist_myexeclib_SCRIPTS = \
732
	$(nodist_pkglib_python_scripts)
733

    
734
EXTRA_DIST = \
735
	NEWS \
736
	UPGRADE \
737
	epydoc.conf.in \
738
	pylintrc \
739
	autotools/build-bash-completion \
740
	autotools/build-rpc \
741
	autotools/check-header \
742
	autotools/check-imports \
743
	autotools/check-man-dashes \
744
	autotools/check-man-warnings \
745
	autotools/check-news \
746
	autotools/check-python-code \
747
	autotools/check-tar \
748
	autotools/check-version \
749
	autotools/convert-constants \
750
	autotools/docpp \
751
	autotools/gen-coverage \
752
	autotools/testrunner \
753
	autotools/wrong-hardcoded-paths \
754
	$(RUN_IN_TEMPDIR) \
755
	daemons/daemon-util.in \
756
	daemons/ganeti-cleaner.in \
757
	$(pkglib_python_scripts) \
758
	devel/upload \
759
	tools/kvm-ifup.in \
760
	tools/vcluster-setup.in \
761
	$(docdot) \
762
	$(docpng) \
763
	$(docrst) \
764
	doc/conf.py \
765
	doc/html \
766
	$(BUILT_EXAMPLES:%=%.in) \
767
	doc/examples/ganeti.default \
768
	doc/examples/ganeti.default-debug \
769
	doc/examples/hooks/ethers \
770
	doc/examples/gnt-debug/README \
771
	doc/examples/gnt-debug/delay0.json \
772
	doc/examples/gnt-debug/delay50.json \
773
	test/lockperf.py \
774
	test/testutils.py \
775
	test/mocks.py \
776
	$(dist_TESTS) \
777
	$(TEST_FILES) \
778
	man/footer.rst \
779
	$(manrst) \
780
	$(maninput) \
781
	qa/qa-sample.json \
782
	$(qa_scripts) \
783
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
784
	$(HS_PROG_SRCS) \
785
	htools/lint-hints.hs \
786
	htest/cli-tests-defs.sh \
787
	htest/offline-test.sh \
788
	.ghci
789

    
790
man_MANS = \
791
	man/ganeti-cleaner.8 \
792
	man/ganeti-confd.8 \
793
	man/ganeti-listrunner.8 \
794
	man/ganeti-masterd.8 \
795
	man/ganeti-noded.8 \
796
	man/ganeti-os-interface.7 \
797
	man/ganeti-rapi.8 \
798
	man/ganeti-watcher.8 \
799
	man/ganeti.7 \
800
	man/gnt-backup.8 \
801
	man/gnt-cluster.8 \
802
	man/gnt-debug.8 \
803
	man/gnt-group.8 \
804
	man/gnt-network.8 \
805
	man/gnt-instance.8 \
806
	man/gnt-job.8 \
807
	man/gnt-node.8 \
808
	man/gnt-os.8 \
809
	man/hail.1 \
810
	man/hbal.1 \
811
	man/hcheck.1 \
812
	man/hinfo.1 \
813
	man/hscan.1 \
814
	man/hspace.1 \
815
	man/htools.1
816

    
817
manrst = $(patsubst %.1,%.rst,$(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS))))
818
manhtml = $(patsubst %.rst,%.html,$(manrst))
819
mangen = $(patsubst %.rst,%.gen,$(manrst))
820
maninput = \
821
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
822
	$(patsubst %.html,%.html.in,$(manhtml)) \
823
	man/footer.man man/footer.html $(mangen)
824

    
825
TEST_FILES = \
826
	htest/data/common-suffix.data \
827
	htest/data/hail-alloc-drbd.json \
828
	htest/data/hail-change-group.json \
829
	htest/data/hail-invalid-reloc.json \
830
	htest/data/hail-node-evac.json \
831
	htest/data/hail-reloc-drbd.json \
832
	htest/data/hbal-excl-tags.data \
833
	htest/data/hbal-split-insts.data \
834
	htest/data/invalid-node.data \
835
	htest/data/missing-resources.data \
836
	htest/data/rapi/groups.json \
837
	htest/data/rapi/info.json \
838
	htest/data/rapi/instances.json \
839
	htest/data/rapi/nodes.json \
840
	htest/shelltests/htools-balancing.test \
841
	htest/shelltests/htools-basic.test \
842
	htest/shelltests/htools-dynutil.test \
843
	htest/shelltests/htools-excl.test \
844
	htest/shelltests/htools-hail.test \
845
	htest/shelltests/htools-hspace.test \
846
	htest/shelltests/htools-invalid.test \
847
	htest/shelltests/htools-multi-group.test \
848
	htest/shelltests/htools-no-backend.test \
849
	htest/shelltests/htools-rapi.test \
850
	htest/shelltests/htools-single-group.test \
851
	htest/shelltests/htools-text-backend.test \
852
	test/data/bdev-drbd-8.0.txt \
853
	test/data/bdev-drbd-8.3.txt \
854
	test/data/bdev-drbd-disk.txt \
855
	test/data/bdev-drbd-net-ip4.txt \
856
	test/data/bdev-drbd-net-ip6.txt \
857
	test/data/cert1.pem \
858
	test/data/cert2.pem \
859
	test/data/ip-addr-show-dummy0.txt \
860
	test/data/ip-addr-show-lo-ipv4.txt \
861
	test/data/ip-addr-show-lo-ipv6.txt \
862
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
863
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
864
	test/data/ip-addr-show-lo-oneline.txt \
865
	test/data/ip-addr-show-lo.txt \
866
	test/data/kvm_0.12.5_help.txt \
867
	test/data/kvm_0.15.90_help.txt \
868
	test/data/kvm_0.9.1_help.txt \
869
	test/data/kvm_1.0_help.txt \
870
	test/data/ovfdata/compr_disk.vmdk.gz \
871
	test/data/ovfdata/config.ini \
872
	test/data/ovfdata/corrupted_resources.ovf \
873
	test/data/ovfdata/empty.ini \
874
	test/data/ovfdata/empty.ovf \
875
	test/data/ovfdata/ganeti.mf \
876
	test/data/ovfdata/ganeti.ovf \
877
	test/data/ovfdata/gzip_disk.ovf \
878
	test/data/ovfdata/new_disk.vmdk \
879
	test/data/ovfdata/no_disk.ini \
880
	test/data/ovfdata/no_disk_in_ref.ovf \
881
	test/data/ovfdata/no_os.ini \
882
	test/data/ovfdata/no_ovf.ova \
883
	test/data/ovfdata/other/rawdisk.raw \
884
	test/data/ovfdata/ova.ova \
885
	test/data/ovfdata/rawdisk.raw \
886
	test/data/ovfdata/second_disk.vmdk \
887
	test/data/ovfdata/unsafe_path.ini \
888
	test/data/ovfdata/virtualbox.ovf \
889
	test/data/ovfdata/wrong_config.ini \
890
	test/data/ovfdata/wrong_extension.ovd \
891
	test/data/ovfdata/wrong_manifest.mf \
892
	test/data/ovfdata/wrong_manifest.ovf \
893
	test/data/ovfdata/wrong_ova.ova \
894
	test/data/ovfdata/wrong_xml.ovf \
895
	test/data/proc_drbd8.txt \
896
	test/data/proc_drbd80-emptyline.txt \
897
	test/data/proc_drbd83.txt \
898
	test/data/proc_drbd83_sync.txt \
899
	test/data/proc_drbd83_sync_want.txt \
900
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
901
	test/data/sys_drbd_usermode_helper.txt \
902
	test/data/vgreduce-removemissing-2.02.02.txt \
903
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
904
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
905
	test/data/vgs-missing-pvs-2.02.02.txt \
906
	test/data/vgs-missing-pvs-2.02.66.txt \
907
	test/ganeti-cli.test \
908
	test/gnt-cli.test \
909
	test/import-export_unittest-helper
910

    
911
python_tests = \
912
	doc/examples/rapi_testutils.py \
913
	test/cfgupgrade_unittest.py \
914
	test/docs_unittest.py \
915
	test/ganeti.asyncnotifier_unittest.py \
916
	test/ganeti.backend_unittest-runasroot.py \
917
	test/ganeti.backend_unittest.py \
918
	test/ganeti.bdev_unittest.py \
919
	test/ganeti.cli_unittest.py \
920
	test/ganeti.client.gnt_cluster_unittest.py \
921
	test/ganeti.client.gnt_instance_unittest.py \
922
	test/ganeti.client.gnt_job_unittest.py \
923
	test/ganeti.cmdlib_unittest.py \
924
	test/ganeti.compat_unittest.py \
925
	test/ganeti.confd.client_unittest.py \
926
	test/ganeti.config_unittest.py \
927
	test/ganeti.constants_unittest.py \
928
	test/ganeti.daemon_unittest.py \
929
	test/ganeti.errors_unittest.py \
930
	test/ganeti.hooks_unittest.py \
931
	test/ganeti.ht_unittest.py \
932
	test/ganeti.http_unittest.py \
933
	test/ganeti.hypervisor.hv_chroot_unittest.py \
934
	test/ganeti.hypervisor.hv_fake_unittest.py \
935
	test/ganeti.hypervisor.hv_kvm_unittest.py \
936
	test/ganeti.hypervisor.hv_lxc_unittest.py \
937
	test/ganeti.hypervisor.hv_xen_unittest.py \
938
	test/ganeti.hypervisor_unittest.py \
939
	test/ganeti.impexpd_unittest.py \
940
	test/ganeti.jqueue_unittest.py \
941
	test/ganeti.jstore_unittest.py \
942
	test/ganeti.locking_unittest.py \
943
	test/ganeti.luxi_unittest.py \
944
	test/ganeti.masterd.iallocator_unittest.py \
945
	test/ganeti.masterd.instance_unittest.py \
946
	test/ganeti.mcpu_unittest.py \
947
	test/ganeti.netutils_unittest.py \
948
	test/ganeti.objects_unittest.py \
949
	test/ganeti.objectutils_unittest.py \
950
	test/ganeti.opcodes_unittest.py \
951
	test/ganeti.ovf_unittest.py \
952
	test/ganeti.qlang_unittest.py \
953
	test/ganeti.query_unittest.py \
954
	test/ganeti.rapi.baserlib_unittest.py \
955
	test/ganeti.rapi.client_unittest.py \
956
	test/ganeti.rapi.resources_unittest.py \
957
	test/ganeti.rapi.rlib2_unittest.py \
958
	test/ganeti.rapi.testutils_unittest.py \
959
	test/ganeti.rpc_unittest.py \
960
	test/ganeti.runtime_unittest.py \
961
	test/ganeti.serializer_unittest.py \
962
	test/ganeti.server.rapi_unittest.py \
963
	test/ganeti.ssconf_unittest.py \
964
	test/ganeti.ssh_unittest.py \
965
	test/ganeti.storage_unittest.py \
966
	test/ganeti.tools.ensure_dirs_unittest.py \
967
	test/ganeti.tools.prepare_node_join_unittest.py \
968
	test/ganeti.uidpool_unittest.py \
969
	test/ganeti.utils.algo_unittest.py \
970
	test/ganeti.utils.filelock_unittest.py \
971
	test/ganeti.utils.hash_unittest.py \
972
	test/ganeti.utils.io_unittest-runasroot.py \
973
	test/ganeti.utils.io_unittest.py \
974
	test/ganeti.utils.log_unittest.py \
975
	test/ganeti.utils.mlock_unittest.py \
976
	test/ganeti.utils.nodesetup_unittest.py \
977
	test/ganeti.utils.process_unittest.py \
978
	test/ganeti.utils.retry_unittest.py \
979
	test/ganeti.utils.text_unittest.py \
980
	test/ganeti.utils.wrapper_unittest.py \
981
	test/ganeti.utils.x509_unittest.py \
982
	test/ganeti.utils_unittest.py \
983
	test/ganeti.vcluster_unittest.py \
984
	test/ganeti.workerpool_unittest.py \
985
	test/pycurl_reset_unittest.py \
986
	test/qa.qa_config_unittest.py \
987
	test/tempfile_fork_unittest.py
988

    
989
haskell_tests = htest/test
990

    
991
dist_TESTS = \
992
	test/check-cert-expired_unittest.bash \
993
	test/daemon-util_unittest.bash \
994
	test/ganeti-cleaner_unittest.bash \
995
	test/import-export_unittest.bash \
996
	test/cli-test.bash \
997
	test/bash_completion.bash \
998
	$(python_tests)
999

    
1000
nodist_TESTS =
1001
check_SCRIPTS =
1002

    
1003
if WANT_HTOOLSTESTS
1004
nodist_TESTS += $(haskell_tests)
1005
dist_TESTS += htest/offline-test.sh
1006
check_SCRIPTS += htest/hpc-htools $(HS_BUILT_TEST_HELPERS)
1007
endif
1008

    
1009
TESTS = $(dist_TESTS) $(nodist_TESTS)
1010

    
1011
# Environment for all tests
1012
PLAIN_TESTS_ENVIRONMENT = \
1013
	PYTHONPATH=. \
1014
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1015
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1016
	$(RUN_IN_TEMPDIR)
1017

    
1018
# Environment for tests run by automake
1019
TESTS_ENVIRONMENT = \
1020
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1021

    
1022
all_python_code = \
1023
	$(dist_sbin_SCRIPTS) \
1024
	$(python_scripts) \
1025
	$(pkglib_python_scripts) \
1026
	$(nodist_pkglib_python_scripts) \
1027
	$(python_tests) \
1028
	$(pkgpython_PYTHON) \
1029
	$(client_PYTHON) \
1030
	$(hypervisor_PYTHON) \
1031
	$(rapi_PYTHON) \
1032
	$(server_PYTHON) \
1033
	$(pytools_PYTHON) \
1034
	$(http_PYTHON) \
1035
	$(confd_PYTHON) \
1036
	$(masterd_PYTHON) \
1037
	$(impexpd_PYTHON) \
1038
	$(utils_PYTHON) \
1039
	$(watcher_PYTHON) \
1040
	$(noinst_PYTHON) \
1041
	$(qa_scripts)
1042

    
1043
srclink_files = \
1044
	man/footer.rst \
1045
	test/check-cert-expired_unittest.bash \
1046
	test/daemon-util_unittest.bash \
1047
	test/ganeti-cleaner_unittest.bash \
1048
	test/import-export_unittest.bash \
1049
	test/cli-test.bash \
1050
	test/bash_completion.bash \
1051
	htest/offline-test.sh \
1052
	htest/cli-tests-defs.sh \
1053
	$(all_python_code) \
1054
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS)
1055

    
1056
check_python_code = \
1057
	$(BUILD_BASH_COMPLETION) \
1058
	$(CHECK_IMPORTS) \
1059
	$(CHECK_HEADER) \
1060
	$(DOCPP) \
1061
	$(all_python_code)
1062

    
1063
lint_python_code = \
1064
	ganeti \
1065
	ganeti/http/server.py \
1066
	$(dist_sbin_SCRIPTS) \
1067
	$(python_scripts) \
1068
	$(pkglib_python_scripts) \
1069
	$(BUILD_BASH_COMPLETION) \
1070
	$(CHECK_IMPORTS) \
1071
	$(CHECK_HEADER) \
1072
	$(DOCPP) \
1073
	$(PYTHON_BOOTSTRAP)
1074

    
1075
standalone_python_modules = \
1076
	lib/rapi/client.py \
1077
	tools/ganeti-listrunner
1078

    
1079
pep8_python_code = \
1080
	ganeti \
1081
	ganeti/http/server.py \
1082
	$(dist_sbin_SCRIPTS) \
1083
	$(python_scripts) \
1084
	$(pkglib_python_scripts) \
1085
	$(BUILD_BASH_COMPLETION) \
1086
	$(CHECK_HEADER) \
1087
	$(DOCPP) \
1088
	$(PYTHON_BOOTSTRAP) \
1089
	qa
1090

    
1091
test/daemon-util_unittest.bash: daemons/daemon-util
1092

    
1093
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1094

    
1095
test/bash_completion.bash: doc/examples/bash_completion-debug
1096

    
1097
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1098
	sed -f $(REPLACE_VARS_SED) < $< > $@
1099
	chmod +x $@
1100

    
1101
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1102
	sed -f $(REPLACE_VARS_SED) < $< > $@
1103
	chmod +x $@
1104

    
1105
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1106
	sed -f $(REPLACE_VARS_SED) < $< > $@
1107
	chmod +x $@
1108

    
1109
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1110
	sed -f $(REPLACE_VARS_SED) < $< > $@
1111

    
1112
doc/examples/bash_completion: BC_ARGS = --compact
1113
doc/examples/bash_completion-debug: BC_ARGS =
1114

    
1115
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1116
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1117
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1118
	daemons/ganeti-cleaner \
1119
	$(GENERATED_FILES) $(HTOOLS_GENERATED_FILES)
1120
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1121
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1122

    
1123
doc/%.png: doc/%.dot
1124
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
1125
	$(DOT) -Tpng -o $@ $<
1126

    
1127
man/footer.man: man/footer.rst
1128
	@test -n "$(PANDOC)" || \
1129
	  { echo 'pandoc' not found during configure; exit 1; }
1130
	$(PANDOC) -f rst -t man -o $@ $<
1131

    
1132
man/footer.html: man/footer.rst
1133
	@test -n "$(PANDOC)" || \
1134
	  { echo 'pandoc' not found during configure; exit 1; }
1135
	$(PANDOC) -f rst -t html -o $@ $<
1136

    
1137
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1138
	lib/build/shell_example_lexer.py \
1139
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1140
	@echo "Checking $< for hardcoded paths..."
1141
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1142
	  echo "Man page $< has harcoded paths (see above)!" 1>&2 ; \
1143
	  exit 1; \
1144
	fi
1145
	set -e ; \
1146
	trap 'echo auto-removing $@; rm $@' EXIT; \
1147
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1148
	trap - EXIT
1149

    
1150
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.man
1151
	@test -n "$(PANDOC)" || \
1152
	  { echo 'pandoc' not found during configure; exit 1; }
1153
	set -o pipefail ; \
1154
	trap 'echo auto-removing $@; rm $@' EXIT; \
1155
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
1156
	  sed -e 's/\\@/@/g' > $@; \
1157
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1158
	$(CHECK_MAN_DASHES) $@; \
1159
	trap - EXIT
1160

    
1161

    
1162
man/%.html.in: man/%.gen man/footer.html
1163
	@test -n "$(PANDOC)" || \
1164
	  { echo 'pandoc' not found during configure; exit 1; }
1165
	set -o pipefail ; \
1166
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
1167
	  sed -e 's/\\@/@/g' > $@
1168

    
1169
man/%: man/%.in  $(REPLACE_VARS_SED)
1170
	sed -f $(REPLACE_VARS_SED) < $< > $@
1171

    
1172
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1173
	sed -f $(REPLACE_VARS_SED) < $< > $@
1174

    
1175
vcs-version:
1176
	if test -d .git; then \
1177
	  git describe > $@; \
1178
	elif test ! -f $@ ; then \
1179
	  echo "Cannot auto-generate $@ file"; exit 1; \
1180
	fi
1181

    
1182
.PHONY: clean-vcs-version
1183
clean-vcs-version:
1184
	rm -f vcs-version
1185

    
1186
.PHONY: regen-vcs-version
1187
regen-vcs-version:
1188
	@set -e; \
1189
	cd $(srcdir); \
1190
	if test -d .git; then \
1191
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1192
	  git describe > $$T; \
1193
	  if ! cmp --quiet $$T vcs-version; then \
1194
	    mv $$T vcs-version; \
1195
	  fi; \
1196
	fi
1197

    
1198
htools/Ganeti/Version.hs: htools/Ganeti/Version.hs.in \
1199
	vcs-version $(built_base_sources)
1200
	set -e; \
1201
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1202
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1203

    
1204
htools/Ganeti/Constants.hs: htools/Ganeti/Constants.hs.in \
1205
	lib/constants.py lib/_autoconf.py lib/luxi.py \
1206
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1207
	| lib/_vcsversion.py
1208
	set -e; \
1209
	{ cat $< ; PYTHONPATH=. $(CONVERT_CONSTANTS); } > $@
1210

    
1211
htest/Test/Ganeti/TestImports.hs: htest/Test/Ganeti/TestImports.hs.in \
1212
	$(built_base_sources)
1213
	set -e; \
1214
	{ cat $< ; \
1215
	  echo ; \
1216
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst htools/%,%,$(HS_LIB_SRCS))))) ; do \
1217
	    echo "import $$name ()" ; \
1218
	  done ; \
1219
	} > $@
1220

    
1221
lib/_autoconf.py: Makefile | stamp-directories
1222
	set -e; \
1223
	{ echo '# This file is automatically generated, do not edit!'; \
1224
	  echo '#'; \
1225
	  echo ''; \
1226
	  echo '"""Build-time configuration for Ganeti.'; \
1227
	  echo '';\
1228
	  echo 'This file is autogenerated by the build process.'; \
1229
	  echo 'For any changes you need to re-run ./configure (and'; \
1230
	  echo 'not edit by hand).'; \
1231
	  echo ''; \
1232
	  echo '"""'; \
1233
	  echo ''; \
1234
	  echo '# pylint: disable=C0301,C0324'; \
1235
	  echo '# because this is autogenerated, we do not want'; \
1236
	  echo '# style warnings' ; \
1237
	  echo ''; \
1238
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1239
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1240
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1241
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1242
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1243
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1244
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1245
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1246
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1247
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1248
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1249
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1250
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1251
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1252
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1253
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1254
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1255
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1256
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1257
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1258
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1259
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1260
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1261
	  echo "IP_PATH = '$(IP_PATH)'"; \
1262
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1263
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1264
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1265
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1266
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1267
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1268
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1269
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1270
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1271
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1272
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1273
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1274
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1275
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1276
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1277
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1278
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1279
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1280
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1281
	  echo "NODED_USER = '$(NODED_USER)'"; \
1282
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1283
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1284
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1285
	  echo "HTOOLS = True"; \
1286
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1287
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1288
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1289
	  echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1290
	} > $@
1291

    
1292
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1293
	set -e; \
1294
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1295
	{ echo '# This file is automatically generated, do not edit!'; \
1296
	  echo '#'; \
1297
	  echo ''; \
1298
	  echo '"""Build-time VCS version number for Ganeti.'; \
1299
	  echo '';\
1300
	  echo 'This file is autogenerated by the build process.'; \
1301
	  echo 'For any changes you need to re-run ./configure (and'; \
1302
	  echo 'not edit by hand).'; \
1303
	  echo ''; \
1304
	  echo '"""'; \
1305
	  echo ''; \
1306
	  echo '# pylint: disable=C0301,C0324'; \
1307
	  echo '# because this is autogenerated, we do not want'; \
1308
	  echo '# style warnings' ; \
1309
	  echo ''; \
1310
	  echo "VCS_VERSION = '$$VCSVER'"; \
1311
	} > $@
1312

    
1313
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1314
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1315

    
1316
$(SHELL_ENV_INIT): Makefile stamp-directories
1317
	set -e; \
1318
	{ echo '# Allow overriding for tests'; \
1319
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1320
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1321
	  echo; \
1322
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1323
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1324
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1325
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1326
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1327
	} > $@
1328

    
1329
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1330
	set -e; \
1331
	{ echo 's#@PREFIX@#$(prefix)#g'; \
1332
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
1333
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
1334
	  echo 's#@BINDIR@#$(bindir)#g'; \
1335
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
1336
	  echo 's#@LIBDIR@#$(libdir)#g'; \
1337
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1338
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1339
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1340
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1341
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1342
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1343
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1344
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1345
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
1346
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1347
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
1348
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
1349
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
1350
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1351
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1352
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1353
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1354
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1355
	  echo 's#@CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1356
	  echo 's#@MODULES@#$(strip $(lint_python_code))#g'; \
1357
	  echo 's#@ENABLE_SPLIT_QUERY@#$(ENABLE_SPLIT_QUERY)#g'; \
1358
	  echo; \
1359
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1360
	  echo '  r $(SHELL_ENV_INIT)'; \
1361
	  echo '  d'; \
1362
	  echo '}'; \
1363
	} > $@
1364

    
1365
# Using deferred evaluation
1366
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1367
daemons/ganeti-watcher: MODULE = ganeti.watcher
1368
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1369
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1370
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1371
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst htest/%,%,$@)
1372

    
1373
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1374
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1375
	set -e; \
1376
	{ echo '#!/usr/bin/python'; \
1377
	  echo '# This file is automatically generated, do not edit!'; \
1378
	  echo "# Edit $(MODULE) instead."; \
1379
	  echo; \
1380
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1381
	  echo; \
1382
	  echo '# pylint: disable=C0103'; \
1383
	  echo '# C0103: Invalid name'; \
1384
	  echo; \
1385
	  echo 'import sys'; \
1386
	  echo 'import $(MODULE) as main'; \
1387
	  echo; \
1388
	  echo '# Temporarily alias commands until bash completion'; \
1389
	  echo '# generator is changed'; \
1390
	  echo 'if hasattr(main, "commands"):'; \
1391
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1392
	  echo 'if hasattr(main, "aliases"):'; \
1393
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1394
	  echo; \
1395
	  echo 'if __name__ == "__main__":'; \
1396
	  echo '  sys.exit(main.Main())'; \
1397
	} > $@
1398
	chmod u+x $@
1399

    
1400
$(HS_BUILT_TEST_HELPERS): Makefile
1401
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1402
	set -e; \
1403
	{ echo '#!/bin/sh'; \
1404
	  echo '# This file is automatically generated, do not edit!'; \
1405
	  echo "# Edit Makefile.am instead."; \
1406
	  echo; \
1407
	  echo "HTOOLS=$(TESTROLE) exec ./htest/hpc-htools \"\$$@\""; \
1408
	} > $@
1409
	chmod u+x $@
1410

    
1411
stamp-directories: Makefile
1412
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1413
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1414
	touch $@
1415

    
1416
# We need to create symlinks because "make distcheck" will not install Python
1417
# files when building.
1418
stamp-srclinks: Makefile | stamp-directories
1419
	set -e; \
1420
	for i in $(srclink_files); do \
1421
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1422
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
1423
		fi; \
1424
	done
1425
	touch $@
1426

    
1427
.PHONY: ganeti
1428
ganeti:
1429
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1430

    
1431
.PHONY: check-dirs
1432
check-dirs: $(GENERATED_FILES)
1433
	@set -e; \
1434
	find . -type d \( \( -name . \) -o \( \
1435
		-name .git -o \
1436
		-name autom4te.cache \
1437
		\) -prune -o -print \) | { \
1438
		error=; \
1439
		while read dir; do \
1440
			case "$$dir" in \
1441
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1442
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1443
			esac; \
1444
		done; \
1445
		for dir in $(DIRS); do \
1446
			if ! test -d "$$dir"; then \
1447
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
1448
				error=1; \
1449
			fi \
1450
		done; \
1451
		if test -n "$$error"; then exit 1; else exit 0; fi; \
1452
	}
1453

    
1454
.PHONY: check-local
1455
check-local: check-dirs $(GENERATED_FILES)
1456
	$(CHECK_PYTHON_CODE) $(check_python_code)
1457
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1458
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1459
	$(CHECK_NEWS) < $(top_srcdir)/NEWS
1460
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1461
	@expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1462
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1463
		echo "Incorrect version in README, expected $$expver"; \
1464
		exit 1; \
1465
	fi; \
1466
	for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1467
			doc/security.rst; do \
1468
		if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1469
			"Documents Ganeti version $$expver"; then \
1470
			echo "Incorrect version in $$file, expected $$expver"; \
1471
			exit 1; \
1472
		fi; \
1473
	done; \
1474
	if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1475
		echo "File $(top_srcdir)/doc/design-$$expver.rst not found"; \
1476
		exit 1; \
1477
	fi; \
1478
	if test $$(wc --max-line-length < $(top_srcdir)/configure.ac) -gt 80; then \
1479
		echo 'Longest line in configure.ac is longer than 80 characters' >&2; \
1480
	fi
1481

    
1482
.PHONY: hs-check
1483
hs-check: htest/test htest/hpc-htools $(HS_BUILT_TEST_HELPERS)
1484
	@rm -f test.tix
1485
	./htest/test
1486
	HBINARY="./htest/hpc-htools" ./htest/offline-test.sh
1487

    
1488
# E111: indentation is not a multiple of four
1489
# E121: continuation line indentation is not a multiple of four
1490
#       (since our indent level is not 4)
1491
# E125: continuation line does not distinguish itself from next logical line
1492
#       (since our indent level is not 4)
1493
# E127: continuation line over-indented for visual indent
1494
#       (since our indent level is not 4)
1495
# note: do NOT add E128 here; it's a valid style error in most cases!
1496
# I've seen real errors, but also some cases were we indent wrongly
1497
# due to line length; try to rework the cases where it is triggered,
1498
# instead of silencing it
1499
# E261: at least two spaces before inline comment
1500
# E501: line too long (80 characters)
1501
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1502

    
1503
# For excluding pep8 expects filenames only, not whole paths
1504
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1505

    
1506
LINT_TARGETS = pylint pylint-qa
1507
if HAS_PEP8
1508
LINT_TARGETS += pep8
1509
endif
1510
if HAS_HLINT
1511
LINT_TARGETS += hlint
1512
endif
1513

    
1514
.PHONY: lint
1515
lint: $(LINT_TARGETS)
1516

    
1517
.PHONY: pylint
1518
pylint: $(GENERATED_FILES)
1519
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1520
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1521

    
1522
.PHONY: pylint-qa
1523
pylint-qa: $(GENERATED_FILES)
1524
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1525
	cd $(top_srcdir)/qa && \
1526
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1527
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1528

    
1529
.PHONY: pep8
1530
pep8: $(GENERATED_FILES)
1531
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1532
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1533
		--repeat $(pep8_python_code)
1534

    
1535
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1536
.PHONY: hlint
1537
hlint: $(HS_BUILT_SRCS) htools/lint-hints.hs
1538
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1539
	if tty -s; then C="-c"; else C=""; fi; \
1540
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1541
	  --ignore "Use first" \
1542
	  --ignore "Use comparing" \
1543
	  --ignore "Use on" \
1544
	  --ignore "Reduce duplication" \
1545
	  --ignore "Use &&&" \
1546
	  --ignore "Use void" \
1547
	  --hint htools/lint-hints \
1548
	  $(filter-out htools/Ganeti/THH.hs,$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1549

    
1550
# a dist hook rule for updating the vcs-version file; this is
1551
# hardcoded due to where it needs to build the file...
1552
dist-hook:
1553
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1554
	rm -f $(top_distdir)/vcs-version
1555
	cp -p $(srcdir)/vcs-version $(top_distdir)
1556

    
1557
# a distcheck hook rule for catching revision control directories
1558
distcheck-hook:
1559
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1560
		echo "Found revision control files in final archive." 1>&2; \
1561
		exit 1; \
1562
	fi
1563
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1564
		echo "Found Python byte code in final archive." 1>&2; \
1565
		exit 1; \
1566
	fi
1567
	if find $(top_distdir) -name '*~' | grep .; then \
1568
		echo "Found backup files in final archive." 1>&2; \
1569
		exit 1; \
1570
	fi
1571
# Empty files or directories should not be distributed. They can cause
1572
# unnecessary warnings for packagers. Directories used by automake during
1573
# distcheck must be excluded.
1574
	if find $(top_distdir) -empty -and -not \( \
1575
			-path $(top_distdir)/_build -or \
1576
			-path $(top_distdir)/_inst \) | grep .; then \
1577
		echo "Found empty files or directories in final archive." 1>&2; \
1578
		exit 1; \
1579
	fi
1580
	if test -n "$(BUILD_RELEASE)" && \
1581
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
1582
		echo "Found unreleased version in NEWS." >&2; \
1583
		exit 1; \
1584
	fi
1585

    
1586
# When building a release, stricter checks should be used
1587
distcheck-release dist-release: export BUILD_RELEASE = 1
1588
distcheck-release: distcheck
1589

    
1590
distrebuildcheck: dist
1591
	set -e; \
1592
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1593
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1594
	cd $$builddir; \
1595
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1596
	cd $(distdir); \
1597
	./configure; \
1598
	$(MAKE) maintainer-clean; \
1599
	cp $(abs_srcdir)/vcs-version .; \
1600
	./configure; \
1601
	$(MAKE) $(AM_MAKEFLAGS)
1602

    
1603
dist-release: dist
1604
	set -e; \
1605
	for i in $(DIST_ARCHIVES); do \
1606
		echo -n "Checking $$i ... "; \
1607
		autotools/check-tar < $$i; \
1608
		echo OK; \
1609
	done
1610

    
1611
install-exec-local:
1612
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1613
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1614
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1615

    
1616
.PHONY: apidoc
1617
if WANT_HTOOLSAPIDOC
1618
apidoc: py-apidoc hs-apidoc
1619
else
1620
apidoc: py-apidoc
1621
endif
1622

    
1623
.PHONY: py-apidoc
1624
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1625
	$(RUN_IN_TEMPDIR) epydoc -v \
1626
		--conf $(CURDIR)/epydoc.conf \
1627
		--output $(CURDIR)/$(APIDOC_PY_DIR)
1628

    
1629
.PHONY: hs-apidoc
1630
hs-apidoc: $(HS_BUILT_SRCS)
1631
	@test -n "$(HSCOLOUR)" || \
1632
	    { echo 'HsColour' not found during configure; exit 1; }
1633
	@test -n "$(HADDOCK)" || \
1634
	    { echo 'haddock' not found during configure; exit 1; }
1635
	rm -rf $(APIDOC_HS_DIR)/*
1636
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/HTools/Backend
1637
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/HTools/Program
1638
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/Block
1639
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/Block/Drbd
1640
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/Confd
1641
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/Query
1642
	$(HSCOLOUR) -print-css > $(APIDOC_HS_DIR)/Ganeti/hscolour.css
1643
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/HTools/hscolour.css
1644
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/Confd/hscolour.css
1645
	set -e ; \
1646
	cd htools; \
1647
	if [ "$(HTOOLS_NOCURL)" ]; \
1648
	then OPTGHC="--optghc=$(HTOOLS_NOCURL)"; \
1649
	else OPTGHC=""; \
1650
	fi; \
1651
	if [ "$(HTOOLS_PARALLEL3)" ]; \
1652
	then OPTGHC="$$OPTGHC --optghc=$(HTOOLS_PARALLEL3)"; \
1653
	fi; \
1654
	if [ "$(HTOOLS_REGEX_PCRE)" ]; \
1655
	then OPTGHC="$$OPTGHC --optghc=$(HTOOLS_REGEX_PCRE)"; \
1656
	fi; \
1657
	RELSRCS="$(HS_LIB_SRCS:htools/%=%) $(patsubst htools/%,%,$(filter htools/%,$(HS_BUILT_SRCS)))"; \
1658
	for file in $$RELSRCS; do \
1659
		hfile=`echo $$file|sed 's/\\.hs$$//'`.html; \
1660
		$(HSCOLOUR) -css -anchor $$file > ../$(APIDOC_HS_DIR)/$$hfile ; \
1661
	done ; \
1662
	$(HADDOCK) --odir ../$(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1663
		-t ganeti -p haddock-prologue \
1664
		--source-module="%{MODULE/.//}.html" \
1665
		--source-entity="%{MODULE/.//}.html#%{NAME}" \
1666
		$$OPTGHC \
1667
		$(filter-out Ganeti/HTools/ExtLoader.hs,$(HS_LIB_SRCS:htools/%=%))
1668

    
1669
.PHONY: TAGS
1670
TAGS: $(GENERATED_FILES)
1671
	rm -f TAGS
1672
	$(GHC) -e ":etags" -v0 \
1673
	  $(filter-out -O -Werror,$(HFLAGS)) \
1674
	  $(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) $(HTOOLS_REGEX_PCRE) \
1675
	  $(HS_LIBTEST_SRCS)
1676
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1677
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1678
	  -path './qa/*.py' | \
1679
	  etags -l python -a -
1680

    
1681
.PHONY: coverage
1682
if WANT_HTOOLS
1683
coverage: py-coverage hs-coverage
1684
else
1685
coverage: py-coverage
1686
endif
1687

    
1688
.PHONY: py-coverage
1689
py-coverage: $(GENERATED_FILES) $(python_tests)
1690
	@test -n "$(PYCOVERAGE)" || \
1691
	    { echo 'python-coverage' not found during configure; exit 1; }
1692
	set -e; \
1693
	COVERAGE=$(PYCOVERAGE) \
1694
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1695
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1696
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1697
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
1698
	$(python_tests)
1699

    
1700
.PHONY: hs-coverage
1701
hs-coverage: $(haskell_tests) htest/hpc-htools
1702
	rm -f *.tix
1703
	$(MAKE) $(AM_MAKEFLAGS) hs-check
1704
	@mkdir_p@ $(COVERAGE_HS_DIR)
1705
	hpc combine --union $(HPCEXCL) \
1706
	  test.tix hpc-htools.tix > coverage-htools.tix
1707
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-htools.tix
1708
	hpc report coverage-htools.tix
1709
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
1710

    
1711
# Special "kind-of-QA" target for htools, needs special setup (all
1712
# tools compiled with -fhpc)
1713
.PHONY: live-test
1714
live-test: all
1715
	set -e ; \
1716
	cd htools; \
1717
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
1718
	rm -f *.tix *.mix; \
1719
	./live-test.sh; \
1720
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:htools/%=%)) \
1721
	  --output=live-test.tix ; \
1722
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1723
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1724
		--srcdir=.. $(HPCEXCL) ; \
1725
	hpc report --srcdir=.. live-test $(HPCEXCL)
1726

    
1727
commit-check: distcheck lint apidoc
1728

    
1729
.PHONY: gitignore-check
1730
gitignore-check:
1731
	@if [ -n "`git status --short`" ]; then \
1732
	  echo "Git status is not clean!" 1>&2 ; \
1733
	  git status --short; \
1734
	  exit 1; \
1735
	fi
1736

    
1737
# Target that builds all binaries (including those that are not
1738
# rebuilt except when running the tests)
1739
.PHONY: really-all
1740
really-all: all $(check_SCRIPTS) $(haskell_tests)
1741

    
1742
# we don't need the ancient implicit rules:
1743
%: %,v
1744
%: RCS/%,v
1745
%: RCS/%
1746
%: s.%
1747
%: SCCS/s.%
1748

    
1749
-include ./Makefile.local
1750

    
1751
# vim: set noet :