Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ f8e233a3

History | View | Annotate | Download (52.7 kB)

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

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

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

    
17
# Use bash in order to be able to use pipefail
18
SHELL=/bin/bash
19

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

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

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

    
57
HS_DIRS = \
58
	src \
59
	src/Ganeti \
60
	src/Ganeti/Block \
61
	src/Ganeti/Block/Drbd \
62
	src/Ganeti/Confd \
63
	src/Ganeti/DataCollectors \
64
	src/Ganeti/HTools \
65
	src/Ganeti/HTools/Backend \
66
	src/Ganeti/HTools/Program \
67
	src/Ganeti/Query \
68
	test/hs \
69
	test/hs/Test \
70
	test/hs/Test/Ganeti \
71
	test/hs/Test/Ganeti/Block \
72
	test/hs/Test/Ganeti/Block/Drbd \
73
	test/hs/Test/Ganeti/Confd \
74
	test/hs/Test/Ganeti/HTools \
75
	test/hs/Test/Ganeti/HTools/Backend \
76
	test/hs/Test/Ganeti/Query
77

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

    
112
ALL_APIDOC_HS_DIRS = \
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/DataCollectors \
119
	$(APIDOC_HS_DIR)/Ganeti/HTools \
120
	$(APIDOC_HS_DIR)/Ganeti/HTools/Backend \
121
	$(APIDOC_HS_DIR)/Ganeti/HTools/Program \
122
	$(APIDOC_HS_DIR)/Ganeti/Query
123

    
124
BUILDTIME_DIR_AUTOCREATE = \
125
	scripts \
126
	$(APIDOC_DIR) \
127
	$(ALL_APIDOC_HS_DIRS) \
128
	$(APIDOC_PY_DIR) \
129
	$(COVERAGE_DIR) \
130
	$(COVERAGE_HS_DIR) \
131
	$(COVERAGE_PY_DIR) \
132
	.hpc
133

    
134
BUILDTIME_DIRS = \
135
	$(BUILDTIME_DIR_AUTOCREATE) \
136
	doc/html
137

    
138
DIRCHECK_EXCLUDE = \
139
	$(BUILDTIME_DIRS) \
140
	ganeti-[0-9]*.[0-9]*.[0-9]* \
141
	doc/html/_* \
142
	autom4te.cache
143

    
144
# some helper vars
145
COVERAGE_DIR = doc/coverage
146
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
147
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
148
APIDOC_DIR = doc/api
149
APIDOC_PY_DIR = $(APIDOC_DIR)/py
150
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
151

    
152
MAINTAINERCLEANFILES = \
153
	$(maninput) \
154
	doc/install-quick.rst \
155
	doc/news.rst \
156
	doc/upgrade.rst \
157
	vcs-version
158

    
159
maintainer-clean-local:
160
	rm -rf $(BUILDTIME_DIRS)
161

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

    
189
GENERATED_FILES = \
190
	$(built_base_sources) \
191
	$(BUILT_PYTHON_SOURCES) \
192
	$(PYTHON_BOOTSTRAP)
193

    
194
HS_GENERATED_FILES =
195
if WANT_HTOOLS
196
HS_GENERATED_FILES += $(HS_PROGS)
197
if ENABLE_CONFD
198
HS_GENERATED_FILES += src/hconfd src/ganeti-confd
199
endif
200
endif
201

    
202
built_base_sources = \
203
	stamp-directories \
204
	stamp-srclinks
205

    
206
built_python_base_sources = \
207
	lib/_autoconf.py \
208
	lib/_vcsversion.py
209

    
210
BUILT_PYTHON_SOURCES = \
211
	$(built_python_base_sources) \
212
	lib/_generated_rpc.py
213

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

    
218
# these are all built from the underlying %.in sources
219
BUILT_EXAMPLES = \
220
	doc/examples/ganeti-kvm-poweroff.initd \
221
	doc/examples/ganeti.cron \
222
	doc/examples/ganeti.initd \
223
	doc/examples/ganeti-master-role.ocf \
224
	doc/examples/ganeti-node-role.ocf \
225
	doc/examples/gnt-config-backup \
226
	doc/examples/hooks/ipsec
227

    
228
nodist_pkgpython_PYTHON = \
229
	$(BUILT_PYTHON_SOURCES)
230

    
231
noinst_PYTHON = \
232
	lib/build/__init__.py \
233
	lib/build/shell_example_lexer.py \
234
	lib/build/sphinx_ext.py
235

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

    
275
client_PYTHON = \
276
	lib/client/__init__.py \
277
	lib/client/gnt_backup.py \
278
	lib/client/gnt_cluster.py \
279
	lib/client/gnt_debug.py \
280
	lib/client/gnt_group.py \
281
	lib/client/gnt_instance.py \
282
	lib/client/gnt_job.py \
283
	lib/client/gnt_node.py \
284
	lib/client/gnt_network.py \
285
	lib/client/gnt_os.py \
286
	lib/client/gnt_storage.py
287

    
288
hypervisor_PYTHON = \
289
	lib/hypervisor/__init__.py \
290
	lib/hypervisor/hv_base.py \
291
	lib/hypervisor/hv_chroot.py \
292
	lib/hypervisor/hv_fake.py \
293
	lib/hypervisor/hv_kvm.py \
294
	lib/hypervisor/hv_lxc.py \
295
	lib/hypervisor/hv_xen.py
296

    
297
rapi_PYTHON = \
298
	lib/rapi/__init__.py \
299
	lib/rapi/baserlib.py \
300
	lib/rapi/client.py \
301
	lib/rapi/client_utils.py \
302
	lib/rapi/connector.py \
303
	lib/rapi/rlib2.py \
304
	lib/rapi/testutils.py
305

    
306
http_PYTHON = \
307
	lib/http/__init__.py \
308
	lib/http/auth.py \
309
	lib/http/client.py \
310
	lib/http/server.py
311

    
312
confd_PYTHON = \
313
	lib/confd/__init__.py \
314
	lib/confd/client.py
315

    
316
masterd_PYTHON = \
317
	lib/masterd/__init__.py \
318
	lib/masterd/iallocator.py \
319
	lib/masterd/instance.py
320

    
321
impexpd_PYTHON = \
322
	lib/impexpd/__init__.py
323

    
324
watcher_PYTHON = \
325
	lib/watcher/__init__.py \
326
	lib/watcher/nodemaint.py \
327
	lib/watcher/state.py
328

    
329
server_PYTHON = \
330
	lib/server/__init__.py \
331
	lib/server/masterd.py \
332
	lib/server/noded.py \
333
	lib/server/rapi.py
334

    
335
pytools_PYTHON = \
336
	lib/tools/__init__.py \
337
	lib/tools/ensure_dirs.py \
338
	lib/tools/node_cleanup.py \
339
	lib/tools/node_daemon_setup.py \
340
	lib/tools/prepare_node_join.py
341

    
342
utils_PYTHON = \
343
	lib/utils/__init__.py \
344
	lib/utils/algo.py \
345
	lib/utils/filelock.py \
346
	lib/utils/hash.py \
347
	lib/utils/io.py \
348
	lib/utils/log.py \
349
	lib/utils/lvm.py \
350
	lib/utils/mlock.py \
351
	lib/utils/nodesetup.py \
352
	lib/utils/process.py \
353
	lib/utils/retry.py \
354
	lib/utils/text.py \
355
	lib/utils/wrapper.py \
356
	lib/utils/x509.py
357

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

    
411
# Haskell programs to be installed in $PREFIX/bin
412
HS_BIN_PROGS=src/htools
413

    
414
# Haskell programs to be installed in the MYEXECLIB dir
415
HS_MYEXECLIB_PROGS=src/mon-collector
416

    
417
# Haskell programs to compiled but not installed automatically
418
# Usually they have their own specific installation rules
419
HS_COMPILE_PROGS= \
420
	src/hconfd \
421
	src/rpc-test
422

    
423
# All Haskell non-test programs to be compiled but not automatically installed
424
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
425

    
426
HS_BIN_ROLES = hbal hscan hspace hinfo hcheck hroller
427
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
428

    
429
HS_ALL_PROGS = \
430
	$(HS_PROGS) \
431
	test/hs/hpc-htools \
432
	test/hs/hpc-mon-collector \
433
	test/hs/htest \
434
	$(HS_COMPILE_PROGS)
435

    
436
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
437
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
438

    
439
HFLAGS = \
440
	-O -Wall -Werror -isrc \
441
	-fwarn-monomorphism-restriction \
442
	-fwarn-tabs \
443
	$(GHC_BYVERSION_FLAGS)
444

    
445
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
446
HEXTRA =
447
# internal extra flags (used for test/hs/htest mainly)
448
HEXTRA_INT =
449
# exclude options for coverage reports
450
HPCEXCL = --exclude Main \
451
	--exclude Ganeti.Constants \
452
	--exclude Ganeti.HTools.QC \
453
	--exclude Ganeti.THH \
454
	--exclude Ganeti.Version \
455
	--exclude Test.Ganeti.Attoparsec \
456
	--exclude Test.Ganeti.TestCommon \
457
	--exclude Test.Ganeti.TestHTools \
458
	--exclude Test.Ganeti.TestHelper \
459
	--exclude Test.Ganeti.TestImports \
460
	$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
461

    
462
HS_LIB_SRCS = \
463
	src/Ganeti/Block/Drbd/Types.hs \
464
	src/Ganeti/Block/Drbd/Parser.hs \
465
	src/Ganeti/BasicTypes.hs \
466
	src/Ganeti/Common.hs \
467
	src/Ganeti/Compat.hs \
468
	src/Ganeti/Confd/Client.hs \
469
	src/Ganeti/Confd/Server.hs \
470
	src/Ganeti/Confd/Types.hs \
471
	src/Ganeti/Confd/Utils.hs \
472
	src/Ganeti/Config.hs \
473
	src/Ganeti/Daemon.hs \
474
	src/Ganeti/DataCollectors/CLI.hs \
475
	src/Ganeti/DataCollectors/Drbd.hs \
476
	src/Ganeti/DataCollectors/Program.hs \
477
	src/Ganeti/Errors.hs \
478
	src/Ganeti/HTools/Backend/IAlloc.hs \
479
	src/Ganeti/HTools/Backend/Luxi.hs \
480
	src/Ganeti/HTools/Backend/Rapi.hs \
481
	src/Ganeti/HTools/Backend/Simu.hs \
482
	src/Ganeti/HTools/Backend/Text.hs \
483
	src/Ganeti/HTools/CLI.hs \
484
	src/Ganeti/HTools/Cluster.hs \
485
	src/Ganeti/HTools/Container.hs \
486
	src/Ganeti/HTools/ExtLoader.hs \
487
	src/Ganeti/HTools/Graph.hs \
488
	src/Ganeti/HTools/Group.hs \
489
	src/Ganeti/HTools/Instance.hs \
490
	src/Ganeti/HTools/Loader.hs \
491
	src/Ganeti/HTools/Node.hs \
492
	src/Ganeti/HTools/PeerMap.hs \
493
	src/Ganeti/HTools/Program/Hail.hs \
494
	src/Ganeti/HTools/Program/Hbal.hs \
495
	src/Ganeti/HTools/Program/Hcheck.hs \
496
	src/Ganeti/HTools/Program/Hinfo.hs \
497
	src/Ganeti/HTools/Program/Hscan.hs \
498
	src/Ganeti/HTools/Program/Hspace.hs \
499
	src/Ganeti/HTools/Program/Hroller.hs \
500
	src/Ganeti/HTools/Program/Main.hs \
501
	src/Ganeti/HTools/Types.hs \
502
	src/Ganeti/Hash.hs \
503
	src/Ganeti/JQueue.hs \
504
	src/Ganeti/JSON.hs \
505
	src/Ganeti/Jobs.hs \
506
	src/Ganeti/Logging.hs \
507
	src/Ganeti/Luxi.hs \
508
	src/Ganeti/Network.hs \
509
	src/Ganeti/Objects.hs \
510
	src/Ganeti/OpCodes.hs \
511
	src/Ganeti/OpParams.hs \
512
	src/Ganeti/Path.hs \
513
	src/Ganeti/Query/Common.hs \
514
	src/Ganeti/Query/Filter.hs \
515
	src/Ganeti/Query/Group.hs \
516
	src/Ganeti/Query/Job.hs \
517
	src/Ganeti/Query/Language.hs \
518
	src/Ganeti/Query/Node.hs \
519
	src/Ganeti/Query/Query.hs \
520
	src/Ganeti/Query/Server.hs \
521
	src/Ganeti/Query/Types.hs \
522
	src/Ganeti/Rpc.hs \
523
	src/Ganeti/Runtime.hs \
524
	src/Ganeti/Ssconf.hs \
525
	src/Ganeti/THH.hs \
526
	src/Ganeti/Types.hs \
527
	src/Ganeti/Utils.hs
528

    
529
HS_TEST_SRCS = \
530
	test/hs/Test/Ganeti/Attoparsec.hs \
531
	test/hs/Test/Ganeti/BasicTypes.hs \
532
	test/hs/Test/Ganeti/Block/Drbd/Parser.hs \
533
	test/hs/Test/Ganeti/Block/Drbd/Types.hs \
534
	test/hs/Test/Ganeti/Common.hs \
535
	test/hs/Test/Ganeti/Confd/Types.hs \
536
	test/hs/Test/Ganeti/Confd/Utils.hs \
537
	test/hs/Test/Ganeti/Daemon.hs \
538
	test/hs/Test/Ganeti/Errors.hs \
539
	test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
540
	test/hs/Test/Ganeti/HTools/Backend/Text.hs \
541
	test/hs/Test/Ganeti/HTools/CLI.hs \
542
	test/hs/Test/Ganeti/HTools/Cluster.hs \
543
	test/hs/Test/Ganeti/HTools/Container.hs \
544
	test/hs/Test/Ganeti/HTools/Graph.hs \
545
	test/hs/Test/Ganeti/HTools/Instance.hs \
546
	test/hs/Test/Ganeti/HTools/Loader.hs \
547
	test/hs/Test/Ganeti/HTools/Node.hs \
548
	test/hs/Test/Ganeti/HTools/PeerMap.hs \
549
	test/hs/Test/Ganeti/HTools/Types.hs \
550
	test/hs/Test/Ganeti/JSON.hs \
551
	test/hs/Test/Ganeti/Jobs.hs \
552
	test/hs/Test/Ganeti/JQueue.hs \
553
	test/hs/Test/Ganeti/Luxi.hs \
554
	test/hs/Test/Ganeti/Network.hs \
555
	test/hs/Test/Ganeti/Objects.hs \
556
	test/hs/Test/Ganeti/OpCodes.hs \
557
	test/hs/Test/Ganeti/Query/Filter.hs \
558
	test/hs/Test/Ganeti/Query/Language.hs \
559
	test/hs/Test/Ganeti/Query/Query.hs \
560
	test/hs/Test/Ganeti/Rpc.hs \
561
	test/hs/Test/Ganeti/Ssconf.hs \
562
	test/hs/Test/Ganeti/THH.hs \
563
	test/hs/Test/Ganeti/TestCommon.hs \
564
	test/hs/Test/Ganeti/TestHTools.hs \
565
	test/hs/Test/Ganeti/TestHelper.hs \
566
	test/hs/Test/Ganeti/Types.hs \
567
	test/hs/Test/Ganeti/Utils.hs
568

    
569
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
570

    
571
HS_BUILT_SRCS = \
572
	test/hs/Test/Ganeti/TestImports.hs \
573
	src/Ganeti/Constants.hs \
574
	src/Ganeti/Version.hs
575
HS_BUILT_SRCS_IN = $(patsubst %,%.in,$(HS_BUILT_SRCS))
576

    
577
$(RUN_IN_TEMPDIR): | stamp-directories
578

    
579
# Note: we use here an order-only prerequisite, as the contents of
580
# _autoconf.py are not actually influencing the html build output: it
581
# has to exist in order for the sphinx module to be loaded
582
# successfully, but we certainly don't want the docs to be rebuilt if
583
# it changes
584
doc/html/index.html: $(docrst) $(docdot) doc/conf.py configure.ac \
585
	$(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
586
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
587
	| $(BUILT_PYTHON_SOURCES)
588
	@test -n "$(SPHINX)" || \
589
	    { echo 'sphinx-build' not found during configure; exit 1; }
590
	@mkdir_p@ $(dir $@)
591
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
592
	    -d . \
593
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
594
	    -D release="$(PACKAGE_VERSION)" \
595
	    -D graphviz_dot="$(DOT)" \
596
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
597
	rm -f doc/html/.buildinfo doc/html/objects.inv
598
	touch $@
599

    
600
doc/html: doc/html/index.html
601

    
602
doc/install-quick.rst: INSTALL
603
doc/news.rst: NEWS
604
doc/upgrade.rst: UPGRADE
605

    
606
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
607
	set -e; \
608
	{ echo '.. This file is automatically updated at build time from $<.'; \
609
	  echo '.. Do not edit.'; \
610
	  echo; \
611
	  cat $<; \
612
	} > $@
613

    
614
docdot = \
615
	doc/arch-2.0.dot \
616
	doc/design-2.1-lock-acquire.dot \
617
	doc/design-2.1-lock-release.dot
618

    
619
# Things to build but not to install (add it to EXTRA_DIST if it should be
620
# distributed)
621
noinst_DATA = \
622
	doc/html \
623
	$(BUILT_EXAMPLES) \
624
	doc/examples/bash_completion \
625
	doc/examples/bash_completion-debug \
626
	$(manhtml)
627

    
628
gnt_scripts = \
629
	scripts/gnt-backup \
630
	scripts/gnt-cluster \
631
	scripts/gnt-debug \
632
	scripts/gnt-group \
633
	scripts/gnt-instance \
634
	scripts/gnt-job \
635
	scripts/gnt-network \
636
	scripts/gnt-node \
637
	scripts/gnt-os \
638
	scripts/gnt-storage
639

    
640
PYTHON_BOOTSTRAP_SBIN = \
641
	daemons/ganeti-masterd \
642
	daemons/ganeti-noded \
643
	daemons/ganeti-rapi \
644
	daemons/ganeti-watcher \
645
	$(gnt_scripts)
646

    
647
PYTHON_BOOTSTRAP = \
648
	$(PYTHON_BOOTSTRAP_SBIN) \
649
	tools/ensure-dirs \
650
	tools/node-cleanup \
651
	tools/node-daemon-setup \
652
	tools/prepare-node-join
653

    
654
qa_scripts = \
655
	qa/__init__.py \
656
	qa/ganeti-qa.py \
657
	qa/qa_cluster.py \
658
	qa/qa_config.py \
659
	qa/qa_daemon.py \
660
	qa/qa_env.py \
661
	qa/qa_error.py \
662
	qa/qa_group.py \
663
	qa/qa_instance.py \
664
	qa/qa_job.py \
665
	qa/qa_node.py \
666
	qa/qa_os.py \
667
	qa/qa_rapi.py \
668
	qa/qa_tags.py \
669
	qa/qa_utils.py
670

    
671
bin_SCRIPTS =
672
if WANT_HTOOLS
673
bin_SCRIPTS += $(HS_BIN_PROGS)
674
install-exec-hook:
675
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
676
# FIXME: this is a hardcoded logic, instead of auto-resolving
677
	$(LN_S) -f ../../../bin/htools \
678
	  $(DESTDIR)$(iallocatorsdir)/hail
679
	for role in $(HS_BIN_ROLES); do \
680
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
681
	done
682
endif
683

    
684
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS) Makefile
685
	@if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \
686
	  echo "Error: cannot run unittests without the development" \
687
	       " libraries (see devnotes.rst)" 1>&2; \
688
	  exit 1; \
689
	fi
690
	@rm -f $(notdir $@).tix
691
	$(GHC) --make \
692
	  $(HFLAGS) \
693
	  $(HS_NOCURL) $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
694
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
695
	  $(HEXTRA) $(HEXTRA_INT) $@
696
	@touch "$@"
697

    
698
# for the test/hs/htest binary, we need to enable profiling/coverage
699
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
700

    
701
# we compile the hpc-htools binary with the program coverage
702
test/hs/hpc-htools: HEXTRA_INT=-fhpc
703

    
704
# we compile the hpc-mon-collector binary with the program coverage
705
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
706

    
707
# test dependency
708
test/hs/offline-tests.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
709

    
710
# rules for building profiling-enabled versions of the haskell
711
# programs: hs-prof does the full two-step build, whereas
712
# hs-prof-quick does only the final rebuild (hs-prof must have been
713
# run before)
714
.PHONY: hs-prof hs-prof-quick
715
hs-prof:
716
	@if [ -z "$(TARGET)" ]; then \
717
	  echo "You need to define TARGET when running this rule" 1>&2; \
718
	  exit 1; \
719
	fi
720
	$(MAKE) $(AM_MAKEFLAGS) clean
721
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o"
722
	rm -f $(HS_ALL_PROGS)
723
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
724

    
725
hs-prof-quick:
726
	@if [ -z "$(TARGET)" ]; then \
727
	  echo "You need to define TARGET when running this rule" 1>&2; \
728
	  exit 1; \
729
	fi
730
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
731

    
732
dist_sbin_SCRIPTS = \
733
	tools/ganeti-listrunner
734

    
735
nodist_sbin_SCRIPTS = \
736
	$(PYTHON_BOOTSTRAP_SBIN) \
737
	daemons/ganeti-cleaner
738

    
739
if ENABLE_CONFD
740
src/ganeti-confd: src/hconfd
741
	cp -f $< $@
742

    
743
nodist_sbin_SCRIPTS += src/ganeti-confd
744
endif
745

    
746
python_scripts = \
747
	tools/burnin \
748
	tools/cfgshell \
749
	tools/cfgupgrade \
750
	tools/cfgupgrade12 \
751
	tools/cluster-merge \
752
	tools/confd-client \
753
	tools/fmtjson \
754
	tools/lvmstrap \
755
	tools/move-instance \
756
	tools/ovfconverter \
757
	tools/sanitize-config
758

    
759
dist_tools_SCRIPTS = \
760
	$(python_scripts) \
761
	tools/kvm-console-wrapper \
762
	tools/master-ip-setup \
763
	tools/xen-console-wrapper
764

    
765
nodist_tools_python_scripts = \
766
	tools/node-cleanup
767

    
768
nodist_tools_SCRIPTS = \
769
	$(nodist_tools_python_scripts) \
770
	tools/vcluster-setup
771

    
772
pkglib_python_scripts = \
773
	daemons/import-export \
774
	tools/check-cert-expired
775

    
776
nodist_pkglib_python_scripts = \
777
	tools/ensure-dirs \
778
	tools/node-daemon-setup \
779
	tools/prepare-node-join
780

    
781
myexeclib_SCRIPTS = \
782
	daemons/daemon-util \
783
	tools/kvm-ifup \
784
	$(pkglib_python_scripts) \
785
	$(HS_MYEXECLIB_PROGS)
786

    
787
nodist_myexeclib_SCRIPTS = \
788
	$(nodist_pkglib_python_scripts)
789

    
790
EXTRA_DIST = \
791
	NEWS \
792
	UPGRADE \
793
	epydoc.conf.in \
794
	pylintrc \
795
	autotools/build-bash-completion \
796
	autotools/build-rpc \
797
	autotools/check-header \
798
	autotools/check-imports \
799
	autotools/check-man-dashes \
800
	autotools/check-man-warnings \
801
	autotools/check-news \
802
	autotools/check-python-code \
803
	autotools/check-tar \
804
	autotools/check-version \
805
	autotools/convert-constants \
806
	autotools/docpp \
807
	autotools/gen-py-coverage \
808
	autotools/testrunner \
809
	autotools/wrong-hardcoded-paths \
810
	$(RUN_IN_TEMPDIR) \
811
	daemons/daemon-util.in \
812
	daemons/ganeti-cleaner.in \
813
	$(pkglib_python_scripts) \
814
	devel/upload \
815
	devel/webserver \
816
	tools/kvm-ifup.in \
817
	tools/vcluster-setup.in \
818
	$(docdot) \
819
	$(docrst) \
820
	doc/conf.py \
821
	doc/html \
822
	$(BUILT_EXAMPLES:%=%.in) \
823
	doc/examples/ganeti.default \
824
	doc/examples/ganeti.default-debug \
825
	doc/examples/hooks/ethers \
826
	doc/examples/gnt-debug/README \
827
	doc/examples/gnt-debug/delay0.json \
828
	doc/examples/gnt-debug/delay50.json \
829
	test/py/lockperf.py \
830
	test/py/testutils.py \
831
	test/py/mocks.py \
832
	$(dist_TESTS) \
833
	$(TEST_FILES) \
834
	man/footer.rst \
835
	$(manrst) \
836
	$(maninput) \
837
	qa/qa-sample.json \
838
	$(qa_scripts) \
839
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
840
	$(HS_PROG_SRCS) \
841
	src/lint-hints.hs \
842
	test/hs/cli-tests-defs.sh \
843
	test/hs/offline-test.sh \
844
	.ghci
845

    
846
man_MANS = \
847
	man/ganeti-cleaner.8 \
848
	man/ganeti-confd.8 \
849
	man/ganeti-listrunner.8 \
850
	man/ganeti-masterd.8 \
851
	man/ganeti-noded.8 \
852
	man/ganeti-os-interface.7 \
853
	man/ganeti-extstorage-interface.7 \
854
	man/ganeti-rapi.8 \
855
	man/ganeti-watcher.8 \
856
	man/ganeti.7 \
857
	man/gnt-backup.8 \
858
	man/gnt-cluster.8 \
859
	man/gnt-debug.8 \
860
	man/gnt-group.8 \
861
	man/gnt-network.8 \
862
	man/gnt-instance.8 \
863
	man/gnt-job.8 \
864
	man/gnt-node.8 \
865
	man/gnt-os.8 \
866
	man/gnt-storage.8 \
867
	man/hail.1 \
868
	man/hbal.1 \
869
	man/hcheck.1 \
870
	man/hinfo.1 \
871
	man/hscan.1 \
872
	man/hspace.1 \
873
	man/hroller.1 \
874
	man/htools.1 \
875
	man/mon-collector.7
876

    
877
manrst = $(patsubst %.1,%.rst,$(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS))))
878
manhtml = $(patsubst %.rst,%.html,$(manrst))
879
mangen = $(patsubst %.rst,%.gen,$(manrst))
880
maninput = \
881
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
882
	$(patsubst %.html,%.html.in,$(manhtml)) \
883
	$(mangen)
884

    
885
TEST_FILES = \
886
	test/data/htools/clean-nonzero-score.data \
887
	test/data/htools/common-suffix.data \
888
	test/data/htools/empty-cluster.data \
889
	test/data/htools/hail-alloc-drbd.json \
890
	test/data/htools/hail-change-group.json \
891
	test/data/htools/hail-invalid-reloc.json \
892
	test/data/htools/hail-node-evac.json \
893
	test/data/htools/hail-reloc-drbd.json \
894
	test/data/htools/hbal-excl-tags.data \
895
	test/data/htools/hbal-split-insts.data \
896
	test/data/htools/invalid-node.data \
897
	test/data/htools/missing-resources.data \
898
	test/data/htools/n1-failure.data \
899
	test/data/htools/rapi/groups.json \
900
	test/data/htools/rapi/info.json \
901
	test/data/htools/rapi/instances.json \
902
	test/data/htools/rapi/nodes.json \
903
	test/hs/shelltests/htools-balancing.test \
904
	test/hs/shelltests/htools-basic.test \
905
	test/hs/shelltests/htools-dynutil.test \
906
	test/hs/shelltests/htools-excl.test \
907
	test/hs/shelltests/htools-hail.test \
908
	test/hs/shelltests/htools-hspace.test \
909
	test/hs/shelltests/htools-invalid.test \
910
	test/hs/shelltests/htools-multi-group.test \
911
	test/hs/shelltests/htools-no-backend.test \
912
	test/hs/shelltests/htools-rapi.test \
913
	test/hs/shelltests/htools-single-group.test \
914
	test/hs/shelltests/htools-text-backend.test \
915
	test/hs/shelltests/htools-mon-collector.test \
916
	test/data/bdev-drbd-8.0.txt \
917
	test/data/bdev-drbd-8.3.txt \
918
	test/data/bdev-drbd-disk.txt \
919
	test/data/bdev-drbd-net-ip4.txt \
920
	test/data/bdev-drbd-net-ip6.txt \
921
	test/data/cert1.pem \
922
	test/data/cert2.pem \
923
	test/data/ip-addr-show-dummy0.txt \
924
	test/data/ip-addr-show-lo-ipv4.txt \
925
	test/data/ip-addr-show-lo-ipv6.txt \
926
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
927
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
928
	test/data/ip-addr-show-lo-oneline.txt \
929
	test/data/ip-addr-show-lo.txt \
930
	test/data/kvm_0.12.5_help.txt \
931
	test/data/kvm_0.15.90_help.txt \
932
	test/data/kvm_0.9.1_help.txt \
933
	test/data/kvm_1.0_help.txt \
934
	test/data/ovfdata/compr_disk.vmdk.gz \
935
	test/data/ovfdata/config.ini \
936
	test/data/ovfdata/corrupted_resources.ovf \
937
	test/data/ovfdata/empty.ini \
938
	test/data/ovfdata/empty.ovf \
939
	test/data/ovfdata/ganeti.mf \
940
	test/data/ovfdata/ganeti.ovf \
941
	test/data/ovfdata/gzip_disk.ovf \
942
	test/data/ovfdata/new_disk.vmdk \
943
	test/data/ovfdata/no_disk.ini \
944
	test/data/ovfdata/no_disk_in_ref.ovf \
945
	test/data/ovfdata/no_os.ini \
946
	test/data/ovfdata/no_ovf.ova \
947
	test/data/ovfdata/other/rawdisk.raw \
948
	test/data/ovfdata/ova.ova \
949
	test/data/ovfdata/rawdisk.raw \
950
	test/data/ovfdata/second_disk.vmdk \
951
	test/data/ovfdata/unsafe_path.ini \
952
	test/data/ovfdata/virtualbox.ovf \
953
	test/data/ovfdata/wrong_config.ini \
954
	test/data/ovfdata/wrong_extension.ovd \
955
	test/data/ovfdata/wrong_manifest.mf \
956
	test/data/ovfdata/wrong_manifest.ovf \
957
	test/data/ovfdata/wrong_ova.ova \
958
	test/data/ovfdata/wrong_xml.ovf \
959
	test/data/proc_drbd8.txt \
960
	test/data/proc_drbd80-emptyline.txt \
961
	test/data/proc_drbd83.txt \
962
	test/data/proc_drbd83_sync.txt \
963
	test/data/proc_drbd83_sync_want.txt \
964
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
965
	test/data/sys_drbd_usermode_helper.txt \
966
	test/data/vgreduce-removemissing-2.02.02.txt \
967
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
968
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
969
	test/data/vgs-missing-pvs-2.02.02.txt \
970
	test/data/vgs-missing-pvs-2.02.66.txt \
971
	test/py/ganeti-cli.test \
972
	test/py/gnt-cli.test \
973
	test/py/import-export_unittest-helper
974

    
975
python_tests = \
976
	doc/examples/rapi_testutils.py \
977
	test/py/cfgupgrade_unittest.py \
978
	test/py/docs_unittest.py \
979
	test/py/ganeti.asyncnotifier_unittest.py \
980
	test/py/ganeti.backend_unittest-runasroot.py \
981
	test/py/ganeti.backend_unittest.py \
982
	test/py/ganeti.bdev_unittest.py \
983
	test/py/ganeti.cli_unittest.py \
984
	test/py/ganeti.client.gnt_cluster_unittest.py \
985
	test/py/ganeti.client.gnt_instance_unittest.py \
986
	test/py/ganeti.client.gnt_job_unittest.py \
987
	test/py/ganeti.cmdlib_unittest.py \
988
	test/py/ganeti.compat_unittest.py \
989
	test/py/ganeti.confd.client_unittest.py \
990
	test/py/ganeti.config_unittest.py \
991
	test/py/ganeti.constants_unittest.py \
992
	test/py/ganeti.daemon_unittest.py \
993
	test/py/ganeti.errors_unittest.py \
994
	test/py/ganeti.hooks_unittest.py \
995
	test/py/ganeti.ht_unittest.py \
996
	test/py/ganeti.http_unittest.py \
997
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
998
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
999
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1000
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1001
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
1002
	test/py/ganeti.hypervisor_unittest.py \
1003
	test/py/ganeti.impexpd_unittest.py \
1004
	test/py/ganeti.jqueue_unittest.py \
1005
	test/py/ganeti.jstore_unittest.py \
1006
	test/py/ganeti.locking_unittest.py \
1007
	test/py/ganeti.luxi_unittest.py \
1008
	test/py/ganeti.masterd.iallocator_unittest.py \
1009
	test/py/ganeti.masterd.instance_unittest.py \
1010
	test/py/ganeti.mcpu_unittest.py \
1011
	test/py/ganeti.netutils_unittest.py \
1012
	test/py/ganeti.objects_unittest.py \
1013
	test/py/ganeti.objectutils_unittest.py \
1014
	test/py/ganeti.opcodes_unittest.py \
1015
	test/py/ganeti.ovf_unittest.py \
1016
	test/py/ganeti.qlang_unittest.py \
1017
	test/py/ganeti.query_unittest.py \
1018
	test/py/ganeti.rapi.baserlib_unittest.py \
1019
	test/py/ganeti.rapi.client_unittest.py \
1020
	test/py/ganeti.rapi.resources_unittest.py \
1021
	test/py/ganeti.rapi.rlib2_unittest.py \
1022
	test/py/ganeti.rapi.testutils_unittest.py \
1023
	test/py/ganeti.rpc_unittest.py \
1024
	test/py/ganeti.runtime_unittest.py \
1025
	test/py/ganeti.serializer_unittest.py \
1026
	test/py/ganeti.server.rapi_unittest.py \
1027
	test/py/ganeti.ssconf_unittest.py \
1028
	test/py/ganeti.ssh_unittest.py \
1029
	test/py/ganeti.storage_unittest.py \
1030
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1031
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1032
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1033
	test/py/ganeti.uidpool_unittest.py \
1034
	test/py/ganeti.utils.algo_unittest.py \
1035
	test/py/ganeti.utils.filelock_unittest.py \
1036
	test/py/ganeti.utils.hash_unittest.py \
1037
	test/py/ganeti.utils.io_unittest-runasroot.py \
1038
	test/py/ganeti.utils.io_unittest.py \
1039
	test/py/ganeti.utils.log_unittest.py \
1040
	test/py/ganeti.utils.mlock_unittest.py \
1041
	test/py/ganeti.utils.nodesetup_unittest.py \
1042
	test/py/ganeti.utils.process_unittest.py \
1043
	test/py/ganeti.utils.retry_unittest.py \
1044
	test/py/ganeti.utils.text_unittest.py \
1045
	test/py/ganeti.utils.wrapper_unittest.py \
1046
	test/py/ganeti.utils.x509_unittest.py \
1047
	test/py/ganeti.utils_unittest.py \
1048
	test/py/ganeti.vcluster_unittest.py \
1049
	test/py/ganeti.workerpool_unittest.py \
1050
	test/py/pycurl_reset_unittest.py \
1051
	test/py/qa.qa_config_unittest.py \
1052
	test/py/tempfile_fork_unittest.py
1053

    
1054
haskell_tests = test/hs/htest
1055

    
1056
dist_TESTS = \
1057
	test/py/check-cert-expired_unittest.bash \
1058
	test/py/daemon-util_unittest.bash \
1059
	test/py/ganeti-cleaner_unittest.bash \
1060
	test/py/import-export_unittest.bash \
1061
	test/py/cli-test.bash \
1062
	test/py/bash_completion.bash \
1063
	$(python_tests)
1064

    
1065
nodist_TESTS =
1066
check_SCRIPTS =
1067

    
1068
if WANT_HSTESTS
1069
nodist_TESTS += $(haskell_tests)
1070
dist_TESTS += test/hs/offline-test.sh
1071
check_SCRIPTS += \
1072
	test/hs/hpc-htools \
1073
	test/hs/hpc-mon-collector \
1074
	$(HS_BUILT_TEST_HELPERS)
1075
endif
1076

    
1077
TESTS = $(dist_TESTS) $(nodist_TESTS)
1078

    
1079
# Environment for all tests
1080
PLAIN_TESTS_ENVIRONMENT = \
1081
	PYTHONPATH=. \
1082
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1083
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1084
	$(RUN_IN_TEMPDIR)
1085

    
1086
# Environment for tests run by automake
1087
TESTS_ENVIRONMENT = \
1088
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1089

    
1090
all_python_code = \
1091
	$(dist_sbin_SCRIPTS) \
1092
	$(python_scripts) \
1093
	$(pkglib_python_scripts) \
1094
	$(nodist_pkglib_python_scripts) \
1095
	$(nodist_tools_python_scripts) \
1096
	$(python_tests) \
1097
	$(pkgpython_PYTHON) \
1098
	$(client_PYTHON) \
1099
	$(hypervisor_PYTHON) \
1100
	$(rapi_PYTHON) \
1101
	$(server_PYTHON) \
1102
	$(pytools_PYTHON) \
1103
	$(http_PYTHON) \
1104
	$(confd_PYTHON) \
1105
	$(masterd_PYTHON) \
1106
	$(impexpd_PYTHON) \
1107
	$(utils_PYTHON) \
1108
	$(watcher_PYTHON) \
1109
	$(noinst_PYTHON) \
1110
	$(qa_scripts)
1111

    
1112
srclink_files = \
1113
	man/footer.rst \
1114
	test/py/check-cert-expired_unittest.bash \
1115
	test/py/daemon-util_unittest.bash \
1116
	test/py/ganeti-cleaner_unittest.bash \
1117
	test/py/import-export_unittest.bash \
1118
	test/py/cli-test.bash \
1119
	test/py/bash_completion.bash \
1120
	test/hs/offline-test.sh \
1121
	test/hs/cli-tests-defs.sh \
1122
	$(all_python_code) \
1123
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS)
1124

    
1125
check_python_code = \
1126
	$(BUILD_BASH_COMPLETION) \
1127
	$(CHECK_IMPORTS) \
1128
	$(CHECK_HEADER) \
1129
	$(DOCPP) \
1130
	$(all_python_code)
1131

    
1132
lint_python_code = \
1133
	ganeti \
1134
	ganeti/http/server.py \
1135
	$(dist_sbin_SCRIPTS) \
1136
	$(python_scripts) \
1137
	$(pkglib_python_scripts) \
1138
	$(BUILD_BASH_COMPLETION) \
1139
	$(CHECK_IMPORTS) \
1140
	$(CHECK_HEADER) \
1141
	$(DOCPP) \
1142
	$(PYTHON_BOOTSTRAP)
1143

    
1144
standalone_python_modules = \
1145
	lib/rapi/client.py \
1146
	tools/ganeti-listrunner
1147

    
1148
pep8_python_code = \
1149
	ganeti \
1150
	ganeti/http/server.py \
1151
	$(dist_sbin_SCRIPTS) \
1152
	$(python_scripts) \
1153
	$(pkglib_python_scripts) \
1154
	$(BUILD_BASH_COMPLETION) \
1155
	$(CHECK_HEADER) \
1156
	$(DOCPP) \
1157
	$(PYTHON_BOOTSTRAP) \
1158
	qa
1159

    
1160
test/py/daemon-util_unittest.bash: daemons/daemon-util
1161

    
1162
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1163

    
1164
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1165

    
1166
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1167
	sed -f $(REPLACE_VARS_SED) < $< > $@
1168
	chmod +x $@
1169

    
1170
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1171
	sed -f $(REPLACE_VARS_SED) < $< > $@
1172
	chmod +x $@
1173

    
1174
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1175
	sed -f $(REPLACE_VARS_SED) < $< > $@
1176
	chmod +x $@
1177

    
1178
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1179
	sed -f $(REPLACE_VARS_SED) < $< > $@
1180

    
1181
doc/examples/bash_completion: BC_ARGS = --compact
1182
doc/examples/bash_completion-debug: BC_ARGS =
1183

    
1184
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1185
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1186
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1187
	daemons/ganeti-cleaner \
1188
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1189
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1190
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1191

    
1192
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1193
	lib/build/shell_example_lexer.py \
1194
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1195
	@echo "Checking $< for hardcoded paths..."
1196
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1197
	  echo "Man page $< has harcoded paths (see above)!" 1>&2 ; \
1198
	  exit 1; \
1199
	fi
1200
	set -e ; \
1201
	trap 'echo auto-removing $@; rm $@' EXIT; \
1202
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1203
	trap - EXIT
1204

    
1205
man/%.7.in man/%.8.in man/%.1.in: man/%.gen
1206
	@test -n "$(PANDOC)" || \
1207
	  { echo 'pandoc' not found during configure; exit 1; }
1208
	set -o pipefail ; \
1209
	trap 'echo auto-removing $@; rm $@' EXIT; \
1210
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1211
	  sed -e 's/\\@/@/g' > $@; \
1212
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1213
	$(CHECK_MAN_DASHES) $@; \
1214
	trap - EXIT
1215

    
1216
man/%.html.in: man/%.gen
1217
	@test -n "$(PANDOC)" || \
1218
	  { echo 'pandoc' not found during configure; exit 1; }
1219
	set -o pipefail ; \
1220
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1221
	  sed -e 's/\\@/@/g' > $@
1222

    
1223
man/%: man/%.in  $(REPLACE_VARS_SED)
1224
	sed -f $(REPLACE_VARS_SED) < $< > $@
1225

    
1226
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1227
	sed -f $(REPLACE_VARS_SED) < $< > $@
1228

    
1229
vcs-version:
1230
	if test -d .git; then \
1231
	  git describe > $@; \
1232
	elif test ! -f $@ ; then \
1233
	  echo "Cannot auto-generate $@ file"; exit 1; \
1234
	fi
1235

    
1236
.PHONY: clean-vcs-version
1237
clean-vcs-version:
1238
	rm -f vcs-version
1239

    
1240
.PHONY: regen-vcs-version
1241
regen-vcs-version:
1242
	@set -e; \
1243
	cd $(srcdir); \
1244
	if test -d .git; then \
1245
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1246
	  git describe > $$T; \
1247
	  if ! cmp --quiet $$T vcs-version; then \
1248
	    mv $$T vcs-version; \
1249
	  fi; \
1250
	fi
1251

    
1252
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1253
	vcs-version $(built_base_sources)
1254
	set -e; \
1255
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1256
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1257

    
1258
src/Ganeti/Constants.hs: src/Ganeti/Constants.hs.in \
1259
	lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1260
	lib/jstore.py $(RUN_IN_TEMPDIR) \
1261
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1262
	| lib/_vcsversion.py
1263
	set -e; \
1264
	{ cat $< ; \
1265
	  PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
1266
	} > $@
1267

    
1268
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1269
	$(built_base_sources)
1270
	set -e; \
1271
	{ cat $< ; \
1272
	  echo ; \
1273
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1274
	    echo "import $$name ()" ; \
1275
	  done ; \
1276
	} > $@
1277

    
1278
lib/_autoconf.py: Makefile | stamp-directories
1279
	set -e; \
1280
	{ echo '# This file is automatically generated, do not edit!'; \
1281
	  echo '#'; \
1282
	  echo ''; \
1283
	  echo '"""Build-time configuration for Ganeti.'; \
1284
	  echo '';\
1285
	  echo 'This file is autogenerated by the build process.'; \
1286
	  echo 'For any changes you need to re-run ./configure (and'; \
1287
	  echo 'not edit by hand).'; \
1288
	  echo ''; \
1289
	  echo '"""'; \
1290
	  echo ''; \
1291
	  echo '# pylint: disable=C0301,C0324'; \
1292
	  echo '# because this is autogenerated, we do not want'; \
1293
	  echo '# style warnings' ; \
1294
	  echo ''; \
1295
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1296
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1297
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1298
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1299
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1300
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1301
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1302
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1303
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1304
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1305
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1306
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1307
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1308
	  echo "ES_SEARCH_PATH = [$(ES_SEARCH_PATH)]"; \
1309
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1310
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1311
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1312
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1313
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1314
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1315
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1316
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1317
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1318
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1319
	  echo "IP_PATH = '$(IP_PATH)'"; \
1320
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1321
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1322
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1323
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1324
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1325
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1326
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1327
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1328
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1329
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1330
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1331
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1332
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1333
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1334
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1335
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1336
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1337
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1338
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1339
	  echo "NODED_USER = '$(NODED_USER)'"; \
1340
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1341
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1342
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1343
	  echo "HTOOLS = True"; \
1344
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1345
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1346
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1347
	  echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1348
	  echo "ENABLE_MONITORING = $(ENABLE_MONITORING)"; \
1349
	} > $@
1350

    
1351
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1352
	set -e; \
1353
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1354
	{ echo '# This file is automatically generated, do not edit!'; \
1355
	  echo '#'; \
1356
	  echo ''; \
1357
	  echo '"""Build-time VCS version number for Ganeti.'; \
1358
	  echo '';\
1359
	  echo 'This file is autogenerated by the build process.'; \
1360
	  echo 'For any changes you need to re-run ./configure (and'; \
1361
	  echo 'not edit by hand).'; \
1362
	  echo ''; \
1363
	  echo '"""'; \
1364
	  echo ''; \
1365
	  echo '# pylint: disable=C0301,C0324'; \
1366
	  echo '# because this is autogenerated, we do not want'; \
1367
	  echo '# style warnings' ; \
1368
	  echo ''; \
1369
	  echo "VCS_VERSION = '$$VCSVER'"; \
1370
	} > $@
1371

    
1372
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1373
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1374

    
1375
$(SHELL_ENV_INIT): Makefile stamp-directories
1376
	set -e; \
1377
	{ echo '# Allow overriding for tests'; \
1378
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1379
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1380
	  echo; \
1381
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1382
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1383
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1384
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1385
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1386
	} > $@
1387

    
1388
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1389
	set -e; \
1390
	{ echo 's#@PREFIX@#$(prefix)#g'; \
1391
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
1392
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
1393
	  echo 's#@BINDIR@#$(bindir)#g'; \
1394
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
1395
	  echo 's#@LIBDIR@#$(libdir)#g'; \
1396
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1397
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1398
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1399
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1400
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1401
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1402
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1403
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1404
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
1405
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1406
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
1407
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
1408
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
1409
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1410
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1411
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1412
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1413
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1414
	  echo 's#@CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1415
	  echo 's#@MODULES@#$(strip $(lint_python_code))#g'; \
1416
	  echo 's#@ENABLE_SPLIT_QUERY@#$(ENABLE_SPLIT_QUERY)#g'; \
1417
	  echo; \
1418
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1419
	  echo '  r $(SHELL_ENV_INIT)'; \
1420
	  echo '  d'; \
1421
	  echo '}'; \
1422
	} > $@
1423

    
1424
# Using deferred evaluation
1425
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1426
daemons/ganeti-watcher: MODULE = ganeti.watcher
1427
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1428
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1429
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1430
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1431
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1432
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1433

    
1434
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1435
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1436
	set -e; \
1437
	{ echo '#!/usr/bin/python'; \
1438
	  echo '# This file is automatically generated, do not edit!'; \
1439
	  echo "# Edit $(MODULE) instead."; \
1440
	  echo; \
1441
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1442
	  echo; \
1443
	  echo '# pylint: disable=C0103'; \
1444
	  echo '# C0103: Invalid name'; \
1445
	  echo; \
1446
	  echo 'import sys'; \
1447
	  echo 'import $(MODULE) as main'; \
1448
	  echo; \
1449
	  echo '# Temporarily alias commands until bash completion'; \
1450
	  echo '# generator is changed'; \
1451
	  echo 'if hasattr(main, "commands"):'; \
1452
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1453
	  echo 'if hasattr(main, "aliases"):'; \
1454
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1455
	  echo; \
1456
	  echo 'if __name__ == "__main__":'; \
1457
	  echo '  sys.exit(main.Main())'; \
1458
	} > $@
1459
	chmod u+x $@
1460

    
1461
$(HS_BUILT_TEST_HELPERS): Makefile
1462
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1463
	set -e; \
1464
	{ echo '#!/bin/sh'; \
1465
	  echo '# This file is automatically generated, do not edit!'; \
1466
	  echo "# Edit Makefile.am instead."; \
1467
	  echo; \
1468
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
1469
	} > $@
1470
	chmod u+x $@
1471

    
1472
stamp-directories: Makefile
1473
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1474
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1475
	touch $@
1476

    
1477
# We need to create symlinks because "make distcheck" will not install Python
1478
# files when building.
1479
stamp-srclinks: Makefile | stamp-directories
1480
	set -e; \
1481
	for i in $(srclink_files); do \
1482
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1483
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1484
	  fi; \
1485
	done
1486
	touch $@
1487

    
1488
.PHONY: ganeti
1489
ganeti:
1490
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1491

    
1492
.PHONY: check-dirs
1493
check-dirs: $(GENERATED_FILES)
1494
	@set -e; \
1495
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1496
	  error=; \
1497
	  while read dir; do \
1498
	    case "$$dir" in \
1499
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1500
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1501
	    esac; \
1502
	  done; \
1503
	  for dir in $(DIRS); do \
1504
	    if ! test -d "$$dir"; then \
1505
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1506
	      error=1; \
1507
	    fi \
1508
	  done; \
1509
	  test -z "$$error"; \
1510
	}
1511

    
1512
.PHONY: check-local
1513
check-local: check-dirs $(GENERATED_FILES)
1514
	$(CHECK_PYTHON_CODE) $(check_python_code)
1515
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1516
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1517
	$(CHECK_NEWS) < $(top_srcdir)/NEWS
1518
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1519
	@expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1520
	error= ; \
1521
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1522
	  echo "Incorrect version in README, expected $$expver" >&2; \
1523
	  error=1; \
1524
	fi; \
1525
	for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1526
	    doc/security.rst; do \
1527
	  if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1528
	    "Documents Ganeti version $$expver"; then \
1529
	    echo "Incorrect version in $$file, expected $$expver" >&2; \
1530
	    error=1; \
1531
	  fi; \
1532
	done; \
1533
	if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1534
	  echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
1535
	  error=1; \
1536
	fi; \
1537
	if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
1538
	  ".. Last updated for Ganeti $$expver"; then \
1539
	  echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
1540
	  error=1; \
1541
	fi; \
1542
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
1543
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
1544
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
1545
	    error=1; \
1546
	  fi; \
1547
	done; \
1548
	test -z "$$error"
1549

    
1550
.PHONY: hs-tests
1551
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1552
	@rm -f htest.tix
1553
	./test/hs/htest
1554

    
1555
.PHONY: hs-shell
1556
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
1557
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1558
	HBINARY="./test/hs/hpc-htools" ./test/hs/offline-test.sh
1559

    
1560
.PHONY: hs-check
1561
hs-check: hs-tests hs-shell
1562

    
1563
# E111: indentation is not a multiple of four
1564
# E121: continuation line indentation is not a multiple of four
1565
#       (since our indent level is not 4)
1566
# E125: continuation line does not distinguish itself from next logical line
1567
#       (since our indent level is not 4)
1568
# E127: continuation line over-indented for visual indent
1569
#       (since our indent level is not 4)
1570
# note: do NOT add E128 here; it's a valid style error in most cases!
1571
# I've seen real errors, but also some cases were we indent wrongly
1572
# due to line length; try to rework the cases where it is triggered,
1573
# instead of silencing it
1574
# E261: at least two spaces before inline comment
1575
# E501: line too long (80 characters)
1576
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1577

    
1578
# For excluding pep8 expects filenames only, not whole paths
1579
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1580

    
1581
LINT_TARGETS = pylint pylint-qa
1582
if HAS_PEP8
1583
LINT_TARGETS += pep8
1584
endif
1585
if HAS_HLINT
1586
LINT_TARGETS += hlint
1587
endif
1588

    
1589
.PHONY: lint
1590
lint: $(LINT_TARGETS)
1591

    
1592
.PHONY: pylint
1593
pylint: $(GENERATED_FILES)
1594
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1595
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1596

    
1597
.PHONY: pylint-qa
1598
pylint-qa: $(GENERATED_FILES)
1599
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1600
	cd $(top_srcdir)/qa && \
1601
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1602
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1603

    
1604
.PHONY: pep8
1605
pep8: $(GENERATED_FILES)
1606
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1607
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1608
	  --repeat $(pep8_python_code)
1609

    
1610
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1611
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
1612
.PHONY: hlint
1613
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
1614
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1615
	if tty -s; then C="-c"; else C=""; fi; \
1616
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1617
	  --ignore "Use first" \
1618
	  --ignore "Use &&&" \
1619
	  --ignore "Use void" \
1620
	  --ignore "Reduce duplication" \
1621
	  --hint src/lint-hints \
1622
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1623

    
1624
# a dist hook rule for updating the vcs-version file; this is
1625
# hardcoded due to where it needs to build the file...
1626
dist-hook:
1627
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1628
	rm -f $(top_distdir)/vcs-version
1629
	cp -p $(srcdir)/vcs-version $(top_distdir)
1630

    
1631
# a distcheck hook rule for catching revision control directories
1632
distcheck-hook:
1633
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1634
	  echo "Found revision control files in final archive." 1>&2; \
1635
	  exit 1; \
1636
	fi
1637
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1638
	  echo "Found Python byte code in final archive." 1>&2; \
1639
	  exit 1; \
1640
	fi
1641
	if find $(top_distdir) -name '*~' | grep .; then \
1642
	  echo "Found backup files in final archive." 1>&2; \
1643
	  exit 1; \
1644
	fi
1645
# Empty files or directories should not be distributed. They can cause
1646
# unnecessary warnings for packagers. Directories used by automake during
1647
# distcheck must be excluded.
1648
	if find $(top_distdir) -empty -and -not \( \
1649
	    -path $(top_distdir)/_build -or \
1650
	    -path $(top_distdir)/_inst \) | grep .; then \
1651
	  echo "Found empty files or directories in final archive." 1>&2; \
1652
	  exit 1; \
1653
	fi
1654
	if test -n "$(BUILD_RELEASE)" && \
1655
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
1656
	   echo "Found unreleased version in NEWS." >&2; \
1657
	   exit 1; \
1658
	fi
1659

    
1660
# When building a release, stricter checks should be used
1661
distcheck-release dist-release: export BUILD_RELEASE = 1
1662
distcheck-release: distcheck
1663

    
1664
distrebuildcheck: dist
1665
	set -e; \
1666
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1667
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1668
	cd $$builddir; \
1669
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1670
	cd $(distdir); \
1671
	./configure; \
1672
	$(MAKE) maintainer-clean; \
1673
	cp $(abs_srcdir)/vcs-version .; \
1674
	./configure; \
1675
	$(MAKE) $(AM_MAKEFLAGS)
1676

    
1677
dist-release: dist
1678
	set -e; \
1679
	for i in $(DIST_ARCHIVES); do \
1680
	  echo -n "Checking $$i ... "; \
1681
	  autotools/check-tar < $$i; \
1682
	  echo OK; \
1683
	done
1684

    
1685
install-exec-local:
1686
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1687
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1688
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1689

    
1690
.PHONY: apidoc
1691
if WANT_HSAPIDOC
1692
apidoc: py-apidoc hs-apidoc
1693
else
1694
apidoc: py-apidoc
1695
endif
1696

    
1697
.PHONY: py-apidoc
1698
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1699
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
1700
	$(RUN_IN_TEMPDIR) epydoc -v \
1701
	  --conf $(CURDIR)/epydoc.conf \
1702
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
1703

    
1704
.PHONY: hs-apidoc
1705
hs-apidoc: $(HS_BUILT_SRCS)
1706
	@test -n "$(HSCOLOUR)" || \
1707
	    { echo 'HsColour' not found during configure; exit 1; }
1708
	@test -n "$(HADDOCK)" || \
1709
	    { echo 'haddock' not found during configure; exit 1; }
1710
	rm -rf $(APIDOC_HS_DIR)/*
1711
	for i in $(ALL_APIDOC_HS_DIRS); do \
1712
	  @mkdir_p@ $$i; \
1713
	done
1714
	$(HSCOLOUR) -print-css > $(APIDOC_HS_DIR)/Ganeti/hscolour.css
1715
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/HTools/hscolour.css
1716
	$(LN_S) ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/Confd/hscolour.css
1717
	set -e ; \
1718
	cd src; \
1719
	if [ "$(HS_NOCURL)" ]; \
1720
	then OPTGHC="--optghc=$(HS_NOCURL)"; \
1721
	else OPTGHC=""; \
1722
	fi; \
1723
	if [ "$(HS_PARALLEL3)" ]; \
1724
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
1725
	fi; \
1726
	if [ "$(HS_REGEX_PCRE)" ]; \
1727
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
1728
	fi; \
1729
	RELSRCS="$(HS_LIB_SRCS:src/%=%) $(patsubst src/%,%,$(filter src/%,$(HS_BUILT_SRCS)))"; \
1730
	for file in $$RELSRCS; do \
1731
	  hfile=`echo $$file|sed 's/\\.hs$$//'`.html; \
1732
	  $(HSCOLOUR) -css -anchor $$file > ../$(APIDOC_HS_DIR)/$$hfile ; \
1733
	done ; \
1734
	$(HADDOCK) --odir ../$(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1735
	  -t ganeti -p haddock-prologue \
1736
	  --source-module="%{MODULE/.//}.html" \
1737
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
1738
	  $$OPTGHC \
1739
	  $(filter-out Ganeti/HTools/ExtLoader.hs,$(HS_LIB_SRCS:src/%=%))
1740

    
1741
.PHONY: TAGS
1742
TAGS: $(GENERATED_FILES)
1743
	rm -f TAGS
1744
	$(GHC) -e ":etags" -v0 \
1745
	  $(filter-out -O -Werror,$(HFLAGS)) \
1746
	  $(HS_NOCURL) $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
1747
	  $(HS_LIBTEST_SRCS)
1748
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1749
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1750
	  -path './qa/*.py' | \
1751
	  etags -l python -a -
1752

    
1753
.PHONY: coverage
1754
if WANT_HTOOLS
1755
coverage: py-coverage hs-coverage
1756
else
1757
coverage: py-coverage
1758
endif
1759

    
1760
.PHONY: py-coverage
1761
py-coverage: $(GENERATED_FILES) $(python_tests)
1762
	@test -n "$(PYCOVERAGE)" || \
1763
	    { echo 'python-coverage' not found during configure; exit 1; }
1764
	set -e; \
1765
	COVERAGE=$(PYCOVERAGE) \
1766
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1767
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1768
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1769
	$(PLAIN_TESTS_ENVIRONMENT) \
1770
	$(abs_top_srcdir)/autotools/gen-py-coverage \
1771
	$(python_tests)
1772

    
1773
.PHONY: hs-coverage
1774
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
1775
	rm -f *.tix
1776
	$(MAKE) $(AM_MAKEFLAGS) hs-check
1777
	@mkdir_p@ $(COVERAGE_HS_DIR)
1778
	hpc sum --union $(HPCEXCL) \
1779
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
1780
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
1781
	hpc report coverage-hs.tix
1782
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
1783

    
1784
# Special "kind-of-QA" target for htools, needs special setup (all
1785
# tools compiled with -fhpc)
1786
.PHONY: live-test
1787
live-test: all
1788
	set -e ; \
1789
	cd src; \
1790
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
1791
	rm -f *.tix *.mix; \
1792
	./live-test.sh; \
1793
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
1794
	  --output=live-test.tix ; \
1795
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1796
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1797
	  --srcdir=.. $(HPCEXCL) ; \
1798
	hpc report --srcdir=.. live-test $(HPCEXCL)
1799

    
1800
commit-check: distcheck lint apidoc
1801

    
1802
.PHONY: gitignore-check
1803
gitignore-check:
1804
	@if [ -n "`git status --short`" ]; then \
1805
	  echo "Git status is not clean!" 1>&2 ; \
1806
	  git status --short; \
1807
	  exit 1; \
1808
	fi
1809

    
1810
# target to rebuild all man pages (both groff and html output)
1811
.PHONY: man
1812
man: $(man_MANS) $(manhtml)
1813

    
1814
# Target that builds all binaries (including those that are not
1815
# rebuilt except when running the tests)
1816
.PHONY: really-all
1817
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
1818

    
1819
# we don't need the ancient implicit rules:
1820
%: %,v
1821
%: RCS/%,v
1822
%: RCS/%
1823
%: s.%
1824
%: SCCS/s.%
1825

    
1826
-include ./Makefile.local
1827

    
1828
# vim: set noet :