Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ d41efc42

History | View | Annotate | Download (58.5 kB)

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

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

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

    
17
# Helper function to strip src/ and test/hs/ from a list
18
strip_hsroot = $(patsubst src/%,%,$(patsubst test/hs/%,%,$(1)))
19

    
20
# Use bash in order to be able to use pipefail
21
SHELL=/bin/bash
22

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

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

    
59
# Delete output file if an error occurred while building it
60
.DELETE_ON_ERROR:
61

    
62
HS_DIRS = \
63
	src \
64
	src/Ganeti \
65
	src/Ganeti/Block \
66
	src/Ganeti/Block/Drbd \
67
	src/Ganeti/Confd \
68
	src/Ganeti/Curl \
69
	src/Ganeti/DataCollectors \
70
	src/Ganeti/HTools \
71
	src/Ganeti/HTools/Backend \
72
	src/Ganeti/HTools/Program \
73
	src/Ganeti/Hypervisor \
74
	src/Ganeti/Hypervisor/Xen \
75
	src/Ganeti/Monitoring \
76
	src/Ganeti/Query \
77
	test/hs \
78
	test/hs/Test \
79
	test/hs/Test/Ganeti \
80
	test/hs/Test/Ganeti/Block \
81
	test/hs/Test/Ganeti/Block/Drbd \
82
	test/hs/Test/Ganeti/Confd \
83
	test/hs/Test/Ganeti/HTools \
84
	test/hs/Test/Ganeti/HTools/Backend \
85
	test/hs/Test/Ganeti/Hypervisor \
86
	test/hs/Test/Ganeti/Hypervisor/Xen \
87
	test/hs/Test/Ganeti/Query
88

    
89
# Haskell directories without the roots (src, test/hs)
90
HS_DIRS_NOROOT = $(filter-out src,$(filter-out test/hs,$(HS_DIRS)))
91

    
92
DIRS = \
93
	$(HS_DIRS) \
94
	autotools \
95
	daemons \
96
	devel \
97
	devel/data \
98
	doc \
99
	doc/css \
100
	doc/examples \
101
	doc/examples/gnt-debug \
102
	doc/examples/hooks \
103
	test/data/htools \
104
	test/data/htools/rapi \
105
	test/hs/shelltests \
106
	lib \
107
	lib/build \
108
	lib/client \
109
	lib/confd \
110
	lib/http \
111
	lib/hypervisor \
112
	lib/block \
113
	lib/impexpd \
114
	lib/masterd \
115
	lib/rapi \
116
	lib/server \
117
	lib/tools \
118
	lib/utils \
119
	lib/watcher \
120
	man \
121
	qa \
122
	test \
123
	test/data \
124
	test/data/bdev-rbd \
125
	test/data/ovfdata \
126
	test/data/ovfdata/other \
127
	test/py \
128
	tools
129

    
130
ALL_APIDOC_HS_DIRS = \
131
	$(APIDOC_HS_DIR) \
132
	$(patsubst %,$(APIDOC_HS_DIR)/%,$(call strip_hsroot,$(HS_DIRS_NOROOT)))
133

    
134
BUILDTIME_DIR_AUTOCREATE = \
135
	scripts \
136
	$(APIDOC_DIR) \
137
	$(ALL_APIDOC_HS_DIRS) \
138
	$(APIDOC_PY_DIR) \
139
	$(COVERAGE_DIR) \
140
	$(COVERAGE_HS_DIR) \
141
	$(COVERAGE_PY_DIR) \
142
	.hpc
143

    
144
BUILDTIME_DIRS = \
145
	$(BUILDTIME_DIR_AUTOCREATE) \
146
	doc/html \
147
	doc/man-html
148

    
149
DIRCHECK_EXCLUDE = \
150
	$(BUILDTIME_DIRS) \
151
	ganeti-[0-9]*.[0-9]*.[0-9]* \
152
	doc/html/_* \
153
	doc/man-html/_* \
154
	autom4te.cache
155

    
156
# some helper vars
157
COVERAGE_DIR = doc/coverage
158
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
159
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
160
APIDOC_DIR = doc/api
161
APIDOC_PY_DIR = $(APIDOC_DIR)/py
162
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
163

    
164
MAINTAINERCLEANFILES = \
165
	$(maninput) \
166
	doc/install-quick.rst \
167
	doc/news.rst \
168
	doc/upgrade.rst \
169
	vcs-version
170

    
171
maintainer-clean-local:
172
	rm -rf $(BUILDTIME_DIRS)
173

    
174
CLEANFILES = \
175
	$(addsuffix /*.py[co],$(DIRS)) \
176
	$(addsuffix /*.hi,$(HS_DIRS)) \
177
	$(addsuffix /*.o,$(HS_DIRS)) \
178
	$(PYTHON_BOOTSTRAP) \
179
	epydoc.conf \
180
	$(REPLACE_VARS_SED) \
181
	$(SHELL_ENV_INIT) \
182
	daemons/daemon-util \
183
	daemons/ganeti-cleaner \
184
	devel/squeeze-amd64.tar.gz \
185
	devel/squeeze-amd64.conf \
186
	$(mandocrst) \
187
	doc/manpages-enabled.rst \
188
	$(BUILT_EXAMPLES) \
189
	doc/examples/bash_completion \
190
	doc/examples/bash_completion-debug \
191
	lib/_generated_rpc.py \
192
	$(man_MANS) \
193
	$(manhtml) \
194
	tools/kvm-ifup \
195
	tools/users-setup \
196
	tools/vcluster-setup \
197
	stamp-directories \
198
	stamp-srclinks \
199
	$(nodist_pkgpython_PYTHON) \
200
	$(HS_ALL_PROGS) $(HS_BUILT_SRCS) \
201
	$(HS_BUILT_TEST_HELPERS) \
202
	src/ganeti-confd \
203
	src/ganeti-mond \
204
	.hpc/*.mix src/*.tix test/hs/*.tix \
205
	doc/hs-lint.html
206

    
207
GENERATED_FILES = \
208
	$(built_base_sources) \
209
	$(BUILT_PYTHON_SOURCES) \
210
	$(PYTHON_BOOTSTRAP)
211

    
212
HS_GENERATED_FILES =
213
if WANT_HTOOLS
214
HS_GENERATED_FILES += $(HS_PROGS)
215
if ENABLE_CONFD
216
HS_GENERATED_FILES += src/hconfd src/ganeti-confd
217
endif
218

    
219
if ENABLE_MOND
220
HS_GENERATED_FILES += src/ganeti-mond
221
endif
222
endif
223

    
224
built_base_sources = \
225
	stamp-directories \
226
	stamp-srclinks
227

    
228
built_python_base_sources = \
229
	lib/_autoconf.py \
230
	lib/_vcsversion.py
231

    
232
BUILT_PYTHON_SOURCES = \
233
	$(built_python_base_sources) \
234
	lib/_generated_rpc.py
235

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

    
240
# these are all built from the underlying %.in sources
241
BUILT_EXAMPLES = \
242
	doc/examples/ganeti-kvm-poweroff.initd \
243
	doc/examples/ganeti.cron \
244
	doc/examples/ganeti.initd \
245
	doc/examples/ganeti-master-role.ocf \
246
	doc/examples/ganeti-node-role.ocf \
247
	doc/examples/gnt-config-backup \
248
	doc/examples/hooks/ipsec
249

    
250
nodist_pkgpython_PYTHON = \
251
	$(BUILT_PYTHON_SOURCES)
252

    
253
noinst_PYTHON = \
254
	lib/build/__init__.py \
255
	lib/build/shell_example_lexer.py \
256
	lib/build/sphinx_ext.py
257

    
258
pkgpython_PYTHON = \
259
	lib/__init__.py \
260
	lib/asyncnotifier.py \
261
	lib/backend.py \
262
	lib/bootstrap.py \
263
	lib/cli.py \
264
	lib/cmdlib.py \
265
	lib/compat.py \
266
	lib/config.py \
267
	lib/constants.py \
268
	lib/daemon.py \
269
	lib/errors.py \
270
	lib/ht.py \
271
	lib/jqueue.py \
272
	lib/jstore.py \
273
	lib/locking.py \
274
	lib/luxi.py \
275
	lib/mcpu.py \
276
	lib/netutils.py \
277
	lib/objects.py \
278
	lib/opcodes.py \
279
	lib/outils.py \
280
	lib/ovf.py \
281
	lib/pathutils.py \
282
	lib/qlang.py \
283
	lib/query.py \
284
	lib/rpc.py \
285
	lib/rpc_defs.py \
286
	lib/runtime.py \
287
	lib/serializer.py \
288
	lib/ssconf.py \
289
	lib/ssh.py \
290
	lib/storage.py \
291
	lib/uidpool.py \
292
	lib/vcluster.py \
293
	lib/network.py \
294
	lib/workerpool.py
295

    
296
client_PYTHON = \
297
	lib/client/__init__.py \
298
	lib/client/gnt_backup.py \
299
	lib/client/gnt_cluster.py \
300
	lib/client/gnt_debug.py \
301
	lib/client/gnt_group.py \
302
	lib/client/gnt_instance.py \
303
	lib/client/gnt_job.py \
304
	lib/client/gnt_node.py \
305
	lib/client/gnt_network.py \
306
	lib/client/gnt_os.py \
307
	lib/client/gnt_storage.py
308

    
309
hypervisor_PYTHON = \
310
	lib/hypervisor/__init__.py \
311
	lib/hypervisor/hv_base.py \
312
	lib/hypervisor/hv_chroot.py \
313
	lib/hypervisor/hv_fake.py \
314
	lib/hypervisor/hv_kvm.py \
315
	lib/hypervisor/hv_lxc.py \
316
	lib/hypervisor/hv_xen.py
317

    
318
block_PYTHON = \
319
	lib/block/__init__.py \
320
	lib/block/bdev.py \
321
	lib/block/base.py \
322
	lib/block/drbd.py
323

    
324
rapi_PYTHON = \
325
	lib/rapi/__init__.py \
326
	lib/rapi/baserlib.py \
327
	lib/rapi/client.py \
328
	lib/rapi/client_utils.py \
329
	lib/rapi/connector.py \
330
	lib/rapi/rlib2.py \
331
	lib/rapi/testutils.py
332

    
333
http_PYTHON = \
334
	lib/http/__init__.py \
335
	lib/http/auth.py \
336
	lib/http/client.py \
337
	lib/http/server.py
338

    
339
confd_PYTHON = \
340
	lib/confd/__init__.py \
341
	lib/confd/client.py
342

    
343
masterd_PYTHON = \
344
	lib/masterd/__init__.py \
345
	lib/masterd/iallocator.py \
346
	lib/masterd/instance.py
347

    
348
impexpd_PYTHON = \
349
	lib/impexpd/__init__.py
350

    
351
watcher_PYTHON = \
352
	lib/watcher/__init__.py \
353
	lib/watcher/nodemaint.py \
354
	lib/watcher/state.py
355

    
356
server_PYTHON = \
357
	lib/server/__init__.py \
358
	lib/server/masterd.py \
359
	lib/server/noded.py \
360
	lib/server/rapi.py
361

    
362
pytools_PYTHON = \
363
	lib/tools/__init__.py \
364
	lib/tools/burnin.py \
365
	lib/tools/ensure_dirs.py \
366
	lib/tools/node_cleanup.py \
367
	lib/tools/node_daemon_setup.py \
368
	lib/tools/prepare_node_join.py
369

    
370
utils_PYTHON = \
371
	lib/utils/__init__.py \
372
	lib/utils/algo.py \
373
	lib/utils/filelock.py \
374
	lib/utils/hash.py \
375
	lib/utils/io.py \
376
	lib/utils/log.py \
377
	lib/utils/lvm.py \
378
	lib/utils/mlock.py \
379
	lib/utils/nodesetup.py \
380
	lib/utils/process.py \
381
	lib/utils/retry.py \
382
	lib/utils/storage.py \
383
	lib/utils/text.py \
384
	lib/utils/wrapper.py \
385
	lib/utils/x509.py
386

    
387
docinput = \
388
	doc/conf.py \
389
	doc/css/style.css \
390
	doc/admin.rst \
391
	doc/cluster-merge.rst \
392
	doc/design-2.0.rst \
393
	doc/design-2.1.rst \
394
	doc/design-2.2.rst \
395
	doc/design-2.3.rst \
396
	doc/design-2.4.rst \
397
	doc/design-2.5.rst \
398
	doc/design-2.6.rst \
399
	doc/design-2.7.rst \
400
	doc/design-autorepair.rst \
401
	doc/design-bulk-create.rst \
402
	doc/design-chained-jobs.rst \
403
	doc/design-cpu-pinning.rst \
404
	doc/design-device-uuid-name.rst \
405
	doc/design-draft.rst \
406
	doc/design-htools-2.3.rst \
407
	doc/design-http-server.rst \
408
	doc/design-impexp2.rst \
409
	doc/design-lu-generated-jobs.rst \
410
	doc/design-linuxha.rst \
411
	doc/design-multi-reloc.rst \
412
	doc/design-network.rst \
413
	doc/design-node-add.rst \
414
	doc/design-oob.rst \
415
	doc/design-ovf-support.rst \
416
	doc/design-opportunistic-locking.rst \
417
	doc/design-partitioned.rst \
418
	doc/design-query-splitting.rst \
419
	doc/design-query2.rst \
420
	doc/design-reason-trail.rst \
421
	doc/design-resource-model.rst \
422
	doc/design-restricted-commands.rst \
423
	doc/design-shared-storage.rst \
424
	doc/design-monitoring-agent.rst \
425
	doc/design-virtual-clusters.rst \
426
	doc/design-x509-ca.rst \
427
	doc/design-hroller.rst \
428
	doc/design-storagetypes.rst \
429
	doc/devnotes.rst \
430
	doc/glossary.rst \
431
	doc/hooks.rst \
432
	doc/iallocator.rst \
433
	doc/index.rst \
434
	doc/install-quick.rst \
435
	doc/install.rst \
436
	doc/locking.rst \
437
	doc/manpages-disabled.rst \
438
	doc/move-instance.rst \
439
	doc/news.rst \
440
	doc/ovfconverter.rst \
441
	doc/rapi.rst \
442
	doc/security.rst \
443
	doc/upgrade.rst \
444
	doc/virtual-cluster.rst \
445
	doc/walkthrough.rst
446

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

    
450
# Haskell programs to be installed in $PREFIX/bin
451
HS_BIN_PROGS=src/htools
452

    
453
# Haskell programs to be installed in the MYEXECLIB dir
454
HS_MYEXECLIB_PROGS=src/mon-collector
455

    
456
# Haskell programs to be compiled by "make really-all"
457
HS_COMPILE_PROGS= \
458
	src/ganeti-mond \
459
	src/hconfd \
460
	src/rpc-test
461

    
462
# All Haskell non-test programs to be compiled but not automatically installed
463
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
464

    
465
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller
466
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
467

    
468
HS_ALL_PROGS = \
469
	$(HS_PROGS) \
470
	test/hs/hpc-htools \
471
	test/hs/hpc-mon-collector \
472
	test/hs/htest \
473
	$(HS_COMPILE_PROGS)
474

    
475
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
476
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
477

    
478
HFLAGS = \
479
	-O -Wall -Werror -isrc \
480
	-fwarn-monomorphism-restriction \
481
	-fwarn-tabs \
482
	$(GHC_BYVERSION_FLAGS)
483

    
484
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
485
HEXTRA =
486
# internal extra flags (used for test/hs/htest mainly)
487
HEXTRA_INT =
488
# exclude options for coverage reports
489
HPCEXCL = --exclude Main \
490
	--exclude Ganeti.Constants \
491
	--exclude Ganeti.HTools.QC \
492
	--exclude Ganeti.THH \
493
	--exclude Ganeti.Version \
494
	--exclude Test.Ganeti.Attoparsec \
495
	--exclude Test.Ganeti.TestCommon \
496
	--exclude Test.Ganeti.TestHTools \
497
	--exclude Test.Ganeti.TestHelper \
498
	--exclude Test.Ganeti.TestImports \
499
	$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
500

    
501
HS_LIB_SRCS = \
502
	src/Ganeti/Block/Drbd/Types.hs \
503
	src/Ganeti/Block/Drbd/Parser.hs \
504
	src/Ganeti/BasicTypes.hs \
505
	src/Ganeti/Common.hs \
506
	src/Ganeti/Compat.hs \
507
	src/Ganeti/Confd/Client.hs \
508
	src/Ganeti/Confd/Server.hs \
509
	src/Ganeti/Confd/Types.hs \
510
	src/Ganeti/Confd/Utils.hs \
511
	src/Ganeti/Config.hs \
512
	src/Ganeti/Curl/Multi.hs \
513
	src/Ganeti/Daemon.hs \
514
	src/Ganeti/DataCollectors/CLI.hs \
515
	src/Ganeti/DataCollectors/Drbd.hs \
516
	src/Ganeti/DataCollectors/Program.hs \
517
	src/Ganeti/DataCollectors/Types.hs \
518
	src/Ganeti/Errors.hs \
519
	src/Ganeti/HTools/Backend/IAlloc.hs \
520
	src/Ganeti/HTools/Backend/Luxi.hs \
521
	src/Ganeti/HTools/Backend/Rapi.hs \
522
	src/Ganeti/HTools/Backend/Simu.hs \
523
	src/Ganeti/HTools/Backend/Text.hs \
524
	src/Ganeti/HTools/CLI.hs \
525
	src/Ganeti/HTools/Cluster.hs \
526
	src/Ganeti/HTools/Container.hs \
527
	src/Ganeti/HTools/ExtLoader.hs \
528
	src/Ganeti/HTools/Graph.hs \
529
	src/Ganeti/HTools/Group.hs \
530
	src/Ganeti/HTools/Instance.hs \
531
	src/Ganeti/HTools/Loader.hs \
532
	src/Ganeti/HTools/Node.hs \
533
	src/Ganeti/HTools/PeerMap.hs \
534
	src/Ganeti/HTools/Program/Hail.hs \
535
	src/Ganeti/HTools/Program/Harep.hs \
536
	src/Ganeti/HTools/Program/Hbal.hs \
537
	src/Ganeti/HTools/Program/Hcheck.hs \
538
	src/Ganeti/HTools/Program/Hinfo.hs \
539
	src/Ganeti/HTools/Program/Hscan.hs \
540
	src/Ganeti/HTools/Program/Hspace.hs \
541
	src/Ganeti/HTools/Program/Hroller.hs \
542
	src/Ganeti/HTools/Program/Main.hs \
543
	src/Ganeti/HTools/Types.hs \
544
	src/Ganeti/Hypervisor/Xen/XmParser.hs \
545
	src/Ganeti/Hypervisor/Xen/Types.hs \
546
	src/Ganeti/Hash.hs \
547
	src/Ganeti/JQueue.hs \
548
	src/Ganeti/JSON.hs \
549
	src/Ganeti/Jobs.hs \
550
	src/Ganeti/Logging.hs \
551
	src/Ganeti/Luxi.hs \
552
	src/Ganeti/Monitoring/Server.hs \
553
	src/Ganeti/Network.hs \
554
	src/Ganeti/Objects.hs \
555
	src/Ganeti/OpCodes.hs \
556
	src/Ganeti/OpParams.hs \
557
	src/Ganeti/Path.hs \
558
	src/Ganeti/Query/Common.hs \
559
	src/Ganeti/Query/Export.hs \
560
	src/Ganeti/Query/Filter.hs \
561
	src/Ganeti/Query/Group.hs \
562
	src/Ganeti/Query/Job.hs \
563
	src/Ganeti/Query/Language.hs \
564
	src/Ganeti/Query/Network.hs \
565
	src/Ganeti/Query/Node.hs \
566
	src/Ganeti/Query/Query.hs \
567
	src/Ganeti/Query/Server.hs \
568
	src/Ganeti/Query/Types.hs \
569
	src/Ganeti/Rpc.hs \
570
	src/Ganeti/Runtime.hs \
571
	src/Ganeti/Ssconf.hs \
572
	src/Ganeti/THH.hs \
573
	src/Ganeti/Types.hs \
574
	src/Ganeti/Utils.hs
575

    
576
HS_TEST_SRCS = \
577
	test/hs/Test/Ganeti/Attoparsec.hs \
578
	test/hs/Test/Ganeti/BasicTypes.hs \
579
	test/hs/Test/Ganeti/Block/Drbd/Parser.hs \
580
	test/hs/Test/Ganeti/Block/Drbd/Types.hs \
581
	test/hs/Test/Ganeti/Common.hs \
582
	test/hs/Test/Ganeti/Confd/Types.hs \
583
	test/hs/Test/Ganeti/Confd/Utils.hs \
584
	test/hs/Test/Ganeti/Daemon.hs \
585
	test/hs/Test/Ganeti/Errors.hs \
586
	test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
587
	test/hs/Test/Ganeti/HTools/Backend/Text.hs \
588
	test/hs/Test/Ganeti/HTools/CLI.hs \
589
	test/hs/Test/Ganeti/HTools/Cluster.hs \
590
	test/hs/Test/Ganeti/HTools/Container.hs \
591
	test/hs/Test/Ganeti/HTools/Graph.hs \
592
	test/hs/Test/Ganeti/HTools/Instance.hs \
593
	test/hs/Test/Ganeti/HTools/Loader.hs \
594
	test/hs/Test/Ganeti/HTools/Node.hs \
595
	test/hs/Test/Ganeti/HTools/PeerMap.hs \
596
	test/hs/Test/Ganeti/HTools/Types.hs \
597
	test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \
598
	test/hs/Test/Ganeti/JSON.hs \
599
	test/hs/Test/Ganeti/Jobs.hs \
600
	test/hs/Test/Ganeti/JQueue.hs \
601
	test/hs/Test/Ganeti/Luxi.hs \
602
	test/hs/Test/Ganeti/Network.hs \
603
	test/hs/Test/Ganeti/Objects.hs \
604
	test/hs/Test/Ganeti/OpCodes.hs \
605
	test/hs/Test/Ganeti/Query/Filter.hs \
606
	test/hs/Test/Ganeti/Query/Language.hs \
607
	test/hs/Test/Ganeti/Query/Network.hs \
608
	test/hs/Test/Ganeti/Query/Query.hs \
609
	test/hs/Test/Ganeti/Rpc.hs \
610
	test/hs/Test/Ganeti/Runtime.hs \
611
	test/hs/Test/Ganeti/Ssconf.hs \
612
	test/hs/Test/Ganeti/THH.hs \
613
	test/hs/Test/Ganeti/TestCommon.hs \
614
	test/hs/Test/Ganeti/TestHTools.hs \
615
	test/hs/Test/Ganeti/TestHelper.hs \
616
	test/hs/Test/Ganeti/Types.hs \
617
	test/hs/Test/Ganeti/Utils.hs
618

    
619
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
620

    
621
HS_BUILT_SRCS = \
622
	test/hs/Test/Ganeti/TestImports.hs \
623
	src/Ganeti/Constants.hs \
624
	src/Ganeti/Curl/Internal.hs \
625
	src/Ganeti/Version.hs
626
HS_BUILT_SRCS_IN = \
627
	$(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \
628
	src/Ganeti/Curl/Internal.hsc
629

    
630
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
631

    
632
$(RUN_IN_TEMPDIR): | stamp-directories
633

    
634
doc/html/index.html: ENABLE_MANPAGES =
635
doc/man-html/index.html: ENABLE_MANPAGES = 1
636
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
637

    
638
# Note: we use here an order-only prerequisite, as the contents of
639
# _autoconf.py are not actually influencing the html build output: it
640
# has to exist in order for the sphinx module to be loaded
641
# successfully, but we certainly don't want the docs to be rebuilt if
642
# it changes
643
doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \
644
	configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
645
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
646
	doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \
647
	| $(BUILT_PYTHON_SOURCES)
648
	@test -n "$(SPHINX)" || \
649
	    { echo 'sphinx-build' not found during configure; exit 1; }
650
if !MANPAGES_IN_DOC
651
	if test -n '$(ENABLE_MANPAGES)'; then \
652
	  echo 'Man pages in documentation were disabled at configure time' >&2; \
653
	  exit 1; \
654
	fi
655
endif
656
## Sphinx provides little control over what content should be included. Some
657
## mechanisms exist, but they all have drawbacks or actual issues. Since we
658
## build two different versions of the documentation--once without man pages and
659
## once, if enabled, with them--some control is necessary. xmpp-wrapper provides
660
## us with this, but requires running in a temporary directory. It moves the
661
## correct files into place depending on environment variables.
662
	dir=$(dir $@) && \
663
	@mkdir_p@ $$dir && \
664
	PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \
665
	$(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \
666
	    -d . \
667
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
668
	    -D release="$(PACKAGE_VERSION)" \
669
	    -D graphviz_dot="$(DOT)" \
670
	    -D enable_manpages="$(ENABLE_MANPAGES)" \
671
	    doc $(CURDIR)/$$dir && \
672
	rm -f $$dir/.buildinfo $$dir/objects.inv
673
	touch $@
674

    
675
doc/html: doc/html/index.html
676

    
677
doc/man-html: doc/man-html/index.html
678

    
679
doc/install-quick.rst: INSTALL
680
doc/news.rst: NEWS
681
doc/upgrade.rst: UPGRADE
682

    
683
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
684
	set -e; \
685
	{ echo '.. This file is automatically updated at build time from $<.'; \
686
	  echo '.. Do not edit.'; \
687
	  echo; \
688
	  cat $<; \
689
	} > $@
690

    
691
doc/manpages-enabled.rst: Makefile | $(built_base_sources)
692
	{ echo '.. This file is automatically generated, do not edit!'; \
693
	  echo ''; \
694
	  echo 'Man pages'; \
695
	  echo '========='; \
696
	  echo; \
697
	  echo '.. toctree::'; \
698
	  echo '   :maxdepth: 1'; \
699
	  echo; \
700
	  for i in $(notdir $(mandocrst)); do \
701
	    echo "   $$i"; \
702
	  done | LC_ALL=C sort; \
703
	} > $@
704

    
705
doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources)
706
if MANPAGES_IN_DOC
707
	{ echo '.. This file is automatically updated at build time from $<.'; \
708
	  echo '.. Do not edit.'; \
709
	  echo; \
710
	  echo "$*"; \
711
	  echo '=========================================='; \
712
	  tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \
713
	} > $@
714
else
715
	echo 'Man pages in documentation were disabled at configure time' >&2; \
716
	exit 1;
717
endif
718

    
719
# Things to build but not to install (add it to EXTRA_DIST if it should be
720
# distributed)
721
noinst_DATA = \
722
	doc/html \
723
	$(BUILT_EXAMPLES) \
724
	doc/examples/bash_completion \
725
	doc/examples/bash_completion-debug \
726
	$(manhtml)
727

    
728
if MANPAGES_IN_DOC
729
noinst_DATA += doc/man-html
730
endif
731

    
732
gnt_scripts = \
733
	scripts/gnt-backup \
734
	scripts/gnt-cluster \
735
	scripts/gnt-debug \
736
	scripts/gnt-group \
737
	scripts/gnt-instance \
738
	scripts/gnt-job \
739
	scripts/gnt-network \
740
	scripts/gnt-node \
741
	scripts/gnt-os \
742
	scripts/gnt-storage
743

    
744
PYTHON_BOOTSTRAP_SBIN = \
745
	daemons/ganeti-masterd \
746
	daemons/ganeti-noded \
747
	daemons/ganeti-rapi \
748
	daemons/ganeti-watcher \
749
	$(gnt_scripts)
750

    
751
PYTHON_BOOTSTRAP = \
752
	$(PYTHON_BOOTSTRAP_SBIN) \
753
	tools/burnin \
754
	tools/ensure-dirs \
755
	tools/node-cleanup \
756
	tools/node-daemon-setup \
757
	tools/prepare-node-join
758

    
759
qa_scripts = \
760
	qa/__init__.py \
761
	qa/ganeti-qa.py \
762
	qa/qa_cluster.py \
763
	qa/qa_config.py \
764
	qa/qa_daemon.py \
765
	qa/qa_env.py \
766
	qa/qa_error.py \
767
	qa/qa_group.py \
768
	qa/qa_instance.py \
769
	qa/qa_job.py \
770
	qa/qa_node.py \
771
	qa/qa_os.py \
772
	qa/qa_rapi.py \
773
	qa/qa_tags.py \
774
	qa/qa_utils.py
775

    
776
bin_SCRIPTS =
777
if WANT_HTOOLS
778
bin_SCRIPTS += $(HS_BIN_PROGS)
779
install-exec-hook:
780
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
781
# FIXME: this is a hardcoded logic, instead of auto-resolving
782
	$(LN_S) -f ../../../bin/htools \
783
	  $(DESTDIR)$(iallocatorsdir)/hail
784
	for role in $(HS_BIN_ROLES); do \
785
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
786
	done
787
endif
788

    
789
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTESTBUILT_SRCS) Makefile
790
	@if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \
791
	  echo "Error: cannot run unittests without the development" \
792
	       " libraries (see devnotes.rst)" 1>&2; \
793
	  exit 1; \
794
	fi
795
	@rm -f $(notdir $@).tix
796
	$(GHC) --make \
797
	  $(HFLAGS) \
798
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
799
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
800
	  $(HEXTRA) $(HEXTRA_INT) $@
801
	@touch "$@"
802

    
803
# for the test/hs/htest binary, we need to enable profiling/coverage
804
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
805

    
806
# we compile the hpc-htools binary with the program coverage
807
test/hs/hpc-htools: HEXTRA_INT=-fhpc
808

    
809
# we compile the hpc-mon-collector binary with the program coverage
810
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
811

    
812
# test dependency
813
test/hs/offline-tests.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
814

    
815
# rules for building profiling-enabled versions of the haskell
816
# programs: hs-prof does the full two-step build, whereas
817
# hs-prof-quick does only the final rebuild (hs-prof must have been
818
# run before)
819
.PHONY: hs-prof hs-prof-quick
820
hs-prof:
821
	@if [ -z "$(TARGET)" ]; then \
822
	  echo "You need to define TARGET when running this rule" 1>&2; \
823
	  exit 1; \
824
	fi
825
	$(MAKE) $(AM_MAKEFLAGS) clean
826
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o"
827
	rm -f $(HS_ALL_PROGS)
828
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
829

    
830
hs-prof-quick:
831
	@if [ -z "$(TARGET)" ]; then \
832
	  echo "You need to define TARGET when running this rule" 1>&2; \
833
	  exit 1; \
834
	fi
835
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
836

    
837
dist_sbin_SCRIPTS = \
838
	tools/ganeti-listrunner
839

    
840
nodist_sbin_SCRIPTS = \
841
	$(PYTHON_BOOTSTRAP_SBIN) \
842
	daemons/ganeti-cleaner
843

    
844
if ENABLE_CONFD
845
src/ganeti-confd: src/hconfd
846
	cp -f $< $@
847

    
848
nodist_sbin_SCRIPTS += src/ganeti-confd
849
endif
850

    
851
if ENABLE_MOND
852
nodist_sbin_SCRIPTS += src/ganeti-mond
853
endif
854

    
855
python_scripts = \
856
	tools/cfgshell \
857
	tools/cfgupgrade \
858
	tools/cfgupgrade12 \
859
	tools/cluster-merge \
860
	tools/confd-client \
861
	tools/fmtjson \
862
	tools/lvmstrap \
863
	tools/move-instance \
864
	tools/ovfconverter \
865
	tools/sanitize-config
866

    
867
dist_tools_SCRIPTS = \
868
	$(python_scripts) \
869
	tools/burnin \
870
	tools/kvm-console-wrapper \
871
	tools/master-ip-setup \
872
	tools/xen-console-wrapper
873

    
874
nodist_tools_python_scripts = \
875
	tools/node-cleanup
876

    
877
nodist_tools_SCRIPTS = \
878
	$(nodist_tools_python_scripts) \
879
	tools/users-setup \
880
	tools/vcluster-setup
881

    
882
pkglib_python_scripts = \
883
	daemons/import-export \
884
	tools/check-cert-expired
885

    
886
nodist_pkglib_python_scripts = \
887
	tools/ensure-dirs \
888
	tools/node-daemon-setup \
889
	tools/prepare-node-join
890

    
891
myexeclib_SCRIPTS = \
892
	daemons/daemon-util \
893
	tools/kvm-ifup \
894
	$(pkglib_python_scripts) \
895
	$(HS_MYEXECLIB_PROGS)
896

    
897
nodist_myexeclib_SCRIPTS = \
898
	$(nodist_pkglib_python_scripts)
899

    
900
EXTRA_DIST = \
901
	NEWS \
902
	UPGRADE \
903
	epydoc.conf.in \
904
	pylintrc \
905
	autotools/build-bash-completion \
906
	autotools/build-rpc \
907
	autotools/check-header \
908
	autotools/check-imports \
909
	autotools/check-man-dashes \
910
	autotools/check-man-references \
911
	autotools/check-man-warnings \
912
	autotools/check-news \
913
	autotools/check-python-code \
914
	autotools/check-tar \
915
	autotools/check-version \
916
	autotools/convert-constants \
917
	autotools/docpp \
918
	autotools/gen-py-coverage \
919
	autotools/sphinx-wrapper \
920
	autotools/testrunner \
921
	autotools/wrong-hardcoded-paths \
922
	$(RUN_IN_TEMPDIR) \
923
	daemons/daemon-util.in \
924
	daemons/ganeti-cleaner.in \
925
	$(pkglib_python_scripts) \
926
	devel/upload \
927
	devel/webserver \
928
	tools/kvm-ifup.in \
929
	tools/users-setup.in \
930
	tools/vcluster-setup.in \
931
	$(docinput) \
932
	doc/html \
933
	$(BUILT_EXAMPLES:%=%.in) \
934
	doc/examples/ganeti.default \
935
	doc/examples/ganeti.default-debug \
936
	doc/examples/hooks/ethers \
937
	doc/examples/gnt-debug/README \
938
	doc/examples/gnt-debug/delay0.json \
939
	doc/examples/gnt-debug/delay50.json \
940
	test/py/lockperf.py \
941
	test/py/testutils.py \
942
	test/py/mocks.py \
943
	$(dist_TESTS) \
944
	$(TEST_FILES) \
945
	man/footer.rst \
946
	$(manrst) \
947
	$(maninput) \
948
	qa/qa-sample.json \
949
	$(qa_scripts) \
950
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
951
	$(HS_PROG_SRCS) \
952
	src/lint-hints.hs \
953
	test/hs/cli-tests-defs.sh \
954
	test/hs/offline-test.sh \
955
	.ghci
956

    
957
man_MANS = \
958
	man/ganeti-cleaner.8 \
959
	man/ganeti-confd.8 \
960
	man/ganeti-listrunner.8 \
961
	man/ganeti-masterd.8 \
962
	man/ganeti-mond.8 \
963
	man/ganeti-noded.8 \
964
	man/ganeti-os-interface.7 \
965
	man/ganeti-extstorage-interface.7 \
966
	man/ganeti-rapi.8 \
967
	man/ganeti-watcher.8 \
968
	man/ganeti.7 \
969
	man/gnt-backup.8 \
970
	man/gnt-cluster.8 \
971
	man/gnt-debug.8 \
972
	man/gnt-group.8 \
973
	man/gnt-network.8 \
974
	man/gnt-instance.8 \
975
	man/gnt-job.8 \
976
	man/gnt-node.8 \
977
	man/gnt-os.8 \
978
	man/gnt-storage.8 \
979
	man/hail.1 \
980
	man/hbal.1 \
981
	man/hcheck.1 \
982
	man/hinfo.1 \
983
	man/hscan.1 \
984
	man/hspace.1 \
985
	man/hroller.1 \
986
	man/htools.1 \
987
	man/mon-collector.7
988

    
989
# Remove extensions from all filenames in man_MANS
990
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
991

    
992
manrst = $(patsubst %,%.rst,$(mannoext))
993
manhtml = $(patsubst %.rst,%.html,$(manrst))
994
mangen = $(patsubst %.rst,%.gen,$(manrst))
995
maninput = \
996
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
997
	$(patsubst %.html,%.html.in,$(manhtml)) \
998
	$(mangen)
999

    
1000
TEST_FILES = \
1001
	test/data/htools/clean-nonzero-score.data \
1002
	test/data/htools/common-suffix.data \
1003
	test/data/htools/empty-cluster.data \
1004
	test/data/htools/hail-alloc-drbd.json \
1005
	test/data/htools/hail-alloc-invalid-twodisks.json \
1006
	test/data/htools/hail-alloc-twodisks.json \
1007
	test/data/htools/hail-change-group.json \
1008
	test/data/htools/hail-invalid-reloc.json \
1009
	test/data/htools/hail-node-evac.json \
1010
	test/data/htools/hail-reloc-drbd.json \
1011
	test/data/htools/hbal-excl-tags.data \
1012
	test/data/htools/hbal-split-insts.data \
1013
	test/data/htools/invalid-node.data \
1014
	test/data/htools/missing-resources.data \
1015
	test/data/htools/multiple-master.data \
1016
	test/data/htools/n1-failure.data \
1017
	test/data/htools/rapi/groups.json \
1018
	test/data/htools/rapi/info.json \
1019
	test/data/htools/rapi/instances.json \
1020
	test/data/htools/rapi/nodes.json \
1021
	test/data/htools/unique-reboot-order.data \
1022
	test/hs/shelltests/htools-balancing.test \
1023
	test/hs/shelltests/htools-basic.test \
1024
	test/hs/shelltests/htools-dynutil.test \
1025
	test/hs/shelltests/htools-excl.test \
1026
	test/hs/shelltests/htools-hail.test \
1027
	test/hs/shelltests/htools-hroller.test \
1028
	test/hs/shelltests/htools-hspace.test \
1029
	test/hs/shelltests/htools-invalid.test \
1030
	test/hs/shelltests/htools-multi-group.test \
1031
	test/hs/shelltests/htools-no-backend.test \
1032
	test/hs/shelltests/htools-rapi.test \
1033
	test/hs/shelltests/htools-single-group.test \
1034
	test/hs/shelltests/htools-text-backend.test \
1035
	test/hs/shelltests/htools-mon-collector.test \
1036
	test/data/bdev-drbd-8.0.txt \
1037
	test/data/bdev-drbd-8.3.txt \
1038
	test/data/bdev-drbd-disk.txt \
1039
	test/data/bdev-drbd-net-ip4.txt \
1040
	test/data/bdev-drbd-net-ip6.txt \
1041
	test/data/bdev-rbd/json_output_empty.txt \
1042
	test/data/bdev-rbd/json_output_extra_matches.txt \
1043
	test/data/bdev-rbd/json_output_no_matches.txt \
1044
	test/data/bdev-rbd/json_output_ok.txt \
1045
	test/data/bdev-rbd/plain_output_new_extra_matches.txt \
1046
	test/data/bdev-rbd/plain_output_new_no_matches.txt \
1047
	test/data/bdev-rbd/plain_output_new_ok.txt \
1048
	test/data/bdev-rbd/plain_output_old_empty.txt \
1049
	test/data/bdev-rbd/plain_output_old_extra_matches.txt \
1050
	test/data/bdev-rbd/plain_output_old_no_matches.txt \
1051
	test/data/bdev-rbd/plain_output_old_ok.txt \
1052
	test/data/bdev-rbd/output_invalid.txt \
1053
	test/data/cert1.pem \
1054
	test/data/cert2.pem \
1055
	test/data/instance-minor-pairing.txt \
1056
	test/data/ip-addr-show-dummy0.txt \
1057
	test/data/ip-addr-show-lo-ipv4.txt \
1058
	test/data/ip-addr-show-lo-ipv6.txt \
1059
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
1060
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
1061
	test/data/ip-addr-show-lo-oneline.txt \
1062
	test/data/ip-addr-show-lo.txt \
1063
	test/data/kvm_0.12.5_help.txt \
1064
	test/data/kvm_0.15.90_help.txt \
1065
	test/data/kvm_0.9.1_help.txt \
1066
	test/data/kvm_0.9.1_help_boot_test.txt \
1067
	test/data/kvm_1.0_help.txt \
1068
	test/data/kvm_1.1.2_help.txt \
1069
	test/data/ovfdata/compr_disk.vmdk.gz \
1070
	test/data/ovfdata/config.ini \
1071
	test/data/ovfdata/corrupted_resources.ovf \
1072
	test/data/ovfdata/empty.ini \
1073
	test/data/ovfdata/empty.ovf \
1074
	test/data/ovfdata/ganeti.mf \
1075
	test/data/ovfdata/ganeti.ovf \
1076
	test/data/ovfdata/gzip_disk.ovf \
1077
	test/data/ovfdata/new_disk.vmdk \
1078
	test/data/ovfdata/no_disk.ini \
1079
	test/data/ovfdata/no_disk_in_ref.ovf \
1080
	test/data/ovfdata/no_os.ini \
1081
	test/data/ovfdata/no_ovf.ova \
1082
	test/data/ovfdata/other/rawdisk.raw \
1083
	test/data/ovfdata/ova.ova \
1084
	test/data/ovfdata/rawdisk.raw \
1085
	test/data/ovfdata/second_disk.vmdk \
1086
	test/data/ovfdata/unsafe_path.ini \
1087
	test/data/ovfdata/virtualbox.ovf \
1088
	test/data/ovfdata/wrong_config.ini \
1089
	test/data/ovfdata/wrong_extension.ovd \
1090
	test/data/ovfdata/wrong_manifest.mf \
1091
	test/data/ovfdata/wrong_manifest.ovf \
1092
	test/data/ovfdata/wrong_ova.ova \
1093
	test/data/ovfdata/wrong_xml.ovf \
1094
	test/data/proc_drbd8.txt \
1095
	test/data/proc_drbd80-emptyline.txt \
1096
	test/data/proc_drbd80-emptyversion.txt \
1097
	test/data/proc_drbd83.txt \
1098
	test/data/proc_drbd83_sync.txt \
1099
	test/data/proc_drbd83_sync_want.txt \
1100
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
1101
	test/data/qa-minimal-nodes-instances-only.json \
1102
	test/data/sys_drbd_usermode_helper.txt \
1103
	test/data/vgreduce-removemissing-2.02.02.txt \
1104
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
1105
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
1106
	test/data/vgs-missing-pvs-2.02.02.txt \
1107
	test/data/vgs-missing-pvs-2.02.66.txt \
1108
	test/data/xen-xm-info-4.0.1.txt \
1109
	test/data/xen-xm-list-4.0.1-dom0-only.txt \
1110
	test/data/xen-xm-list-4.0.1-four-instances.txt \
1111
	test/data/xen-xm-list-long-4.0.1.txt \
1112
	test/data/xen-xm-uptime-4.0.1.txt \
1113
	test/py/ganeti-cli.test \
1114
	test/py/gnt-cli.test \
1115
	test/py/import-export_unittest-helper
1116

    
1117
python_tests = \
1118
	doc/examples/rapi_testutils.py \
1119
	test/py/cfgupgrade_unittest.py \
1120
	test/py/docs_unittest.py \
1121
	test/py/ganeti.asyncnotifier_unittest.py \
1122
	test/py/ganeti.backend_unittest-runasroot.py \
1123
	test/py/ganeti.backend_unittest.py \
1124
	test/py/ganeti.block.bdev_unittest.py \
1125
	test/py/ganeti.cli_unittest.py \
1126
	test/py/ganeti.client.gnt_cluster_unittest.py \
1127
	test/py/ganeti.client.gnt_instance_unittest.py \
1128
	test/py/ganeti.client.gnt_job_unittest.py \
1129
	test/py/ganeti.cmdlib_unittest.py \
1130
	test/py/ganeti.compat_unittest.py \
1131
	test/py/ganeti.confd.client_unittest.py \
1132
	test/py/ganeti.config_unittest.py \
1133
	test/py/ganeti.constants_unittest.py \
1134
	test/py/ganeti.daemon_unittest.py \
1135
	test/py/ganeti.errors_unittest.py \
1136
	test/py/ganeti.hooks_unittest.py \
1137
	test/py/ganeti.ht_unittest.py \
1138
	test/py/ganeti.http_unittest.py \
1139
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
1140
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
1141
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1142
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1143
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
1144
	test/py/ganeti.hypervisor_unittest.py \
1145
	test/py/ganeti.impexpd_unittest.py \
1146
	test/py/ganeti.jqueue_unittest.py \
1147
	test/py/ganeti.jstore_unittest.py \
1148
	test/py/ganeti.locking_unittest.py \
1149
	test/py/ganeti.luxi_unittest.py \
1150
	test/py/ganeti.masterd.iallocator_unittest.py \
1151
	test/py/ganeti.masterd.instance_unittest.py \
1152
	test/py/ganeti.mcpu_unittest.py \
1153
	test/py/ganeti.netutils_unittest.py \
1154
	test/py/ganeti.objects_unittest.py \
1155
	test/py/ganeti.opcodes_unittest.py \
1156
	test/py/ganeti.outils_unittest.py \
1157
	test/py/ganeti.ovf_unittest.py \
1158
	test/py/ganeti.qlang_unittest.py \
1159
	test/py/ganeti.query_unittest.py \
1160
	test/py/ganeti.rapi.baserlib_unittest.py \
1161
	test/py/ganeti.rapi.client_unittest.py \
1162
	test/py/ganeti.rapi.resources_unittest.py \
1163
	test/py/ganeti.rapi.rlib2_unittest.py \
1164
	test/py/ganeti.rapi.testutils_unittest.py \
1165
	test/py/ganeti.rpc_unittest.py \
1166
	test/py/ganeti.runtime_unittest.py \
1167
	test/py/ganeti.serializer_unittest.py \
1168
	test/py/ganeti.server.rapi_unittest.py \
1169
	test/py/ganeti.ssconf_unittest.py \
1170
	test/py/ganeti.ssh_unittest.py \
1171
	test/py/ganeti.storage_unittest.py \
1172
	test/py/ganeti.tools.burnin_unittest.py \
1173
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1174
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1175
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1176
	test/py/ganeti.uidpool_unittest.py \
1177
	test/py/ganeti.utils.algo_unittest.py \
1178
	test/py/ganeti.utils.filelock_unittest.py \
1179
	test/py/ganeti.utils.hash_unittest.py \
1180
	test/py/ganeti.utils.io_unittest-runasroot.py \
1181
	test/py/ganeti.utils.io_unittest.py \
1182
	test/py/ganeti.utils.log_unittest.py \
1183
	test/py/ganeti.utils.lvm_unittest.py \
1184
	test/py/ganeti.utils.mlock_unittest.py \
1185
	test/py/ganeti.utils.nodesetup_unittest.py \
1186
	test/py/ganeti.utils.process_unittest.py \
1187
	test/py/ganeti.utils.retry_unittest.py \
1188
	test/py/ganeti.utils.text_unittest.py \
1189
	test/py/ganeti.utils.wrapper_unittest.py \
1190
	test/py/ganeti.utils.x509_unittest.py \
1191
	test/py/ganeti.utils_unittest.py \
1192
	test/py/ganeti.vcluster_unittest.py \
1193
	test/py/ganeti.workerpool_unittest.py \
1194
	test/py/pycurl_reset_unittest.py \
1195
	test/py/qa.qa_config_unittest.py \
1196
	test/py/tempfile_fork_unittest.py
1197

    
1198
haskell_tests = test/hs/htest
1199

    
1200
dist_TESTS = \
1201
	test/py/check-cert-expired_unittest.bash \
1202
	test/py/daemon-util_unittest.bash \
1203
	test/py/ganeti-cleaner_unittest.bash \
1204
	test/py/import-export_unittest.bash \
1205
	test/py/cli-test.bash \
1206
	test/py/bash_completion.bash \
1207
	$(python_tests)
1208

    
1209
nodist_TESTS =
1210
check_SCRIPTS =
1211

    
1212
if WANT_HSTESTS
1213
nodist_TESTS += $(haskell_tests)
1214
dist_TESTS += test/hs/offline-test.sh
1215
check_SCRIPTS += \
1216
	test/hs/hpc-htools \
1217
	test/hs/hpc-mon-collector \
1218
	$(HS_BUILT_TEST_HELPERS)
1219
endif
1220

    
1221
TESTS = $(dist_TESTS) $(nodist_TESTS)
1222

    
1223
# Environment for all tests
1224
PLAIN_TESTS_ENVIRONMENT = \
1225
	PYTHONPATH=. \
1226
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1227
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1228
	$(RUN_IN_TEMPDIR)
1229

    
1230
# Environment for tests run by automake
1231
TESTS_ENVIRONMENT = \
1232
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1233

    
1234
all_python_code = \
1235
	$(dist_sbin_SCRIPTS) \
1236
	$(python_scripts) \
1237
	$(pkglib_python_scripts) \
1238
	$(nodist_pkglib_python_scripts) \
1239
	$(nodist_tools_python_scripts) \
1240
	$(python_tests) \
1241
	$(pkgpython_PYTHON) \
1242
	$(client_PYTHON) \
1243
	$(hypervisor_PYTHON) \
1244
	$(block_PYTHON) \
1245
	$(rapi_PYTHON) \
1246
	$(server_PYTHON) \
1247
	$(pytools_PYTHON) \
1248
	$(http_PYTHON) \
1249
	$(confd_PYTHON) \
1250
	$(masterd_PYTHON) \
1251
	$(impexpd_PYTHON) \
1252
	$(utils_PYTHON) \
1253
	$(watcher_PYTHON) \
1254
	$(noinst_PYTHON) \
1255
	$(qa_scripts)
1256

    
1257
srclink_files = \
1258
	man/footer.rst \
1259
	test/py/check-cert-expired_unittest.bash \
1260
	test/py/daemon-util_unittest.bash \
1261
	test/py/ganeti-cleaner_unittest.bash \
1262
	test/py/import-export_unittest.bash \
1263
	test/py/cli-test.bash \
1264
	test/py/bash_completion.bash \
1265
	test/hs/offline-test.sh \
1266
	test/hs/cli-tests-defs.sh \
1267
	$(all_python_code) \
1268
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1269
	$(docinput)
1270

    
1271
check_python_code = \
1272
	$(BUILD_BASH_COMPLETION) \
1273
	$(CHECK_IMPORTS) \
1274
	$(CHECK_HEADER) \
1275
	$(DOCPP) \
1276
	$(all_python_code)
1277

    
1278
lint_python_code = \
1279
	ganeti \
1280
	ganeti/http/server.py \
1281
	$(dist_sbin_SCRIPTS) \
1282
	$(python_scripts) \
1283
	$(pkglib_python_scripts) \
1284
	$(BUILD_BASH_COMPLETION) \
1285
	$(CHECK_IMPORTS) \
1286
	$(CHECK_HEADER) \
1287
	$(DOCPP) \
1288
	$(PYTHON_BOOTSTRAP)
1289

    
1290
standalone_python_modules = \
1291
	lib/rapi/client.py \
1292
	tools/ganeti-listrunner
1293

    
1294
pep8_python_code = \
1295
	ganeti \
1296
	ganeti/http/server.py \
1297
	$(dist_sbin_SCRIPTS) \
1298
	$(python_scripts) \
1299
	$(pkglib_python_scripts) \
1300
	$(BUILD_BASH_COMPLETION) \
1301
	$(CHECK_HEADER) \
1302
	$(DOCPP) \
1303
	$(PYTHON_BOOTSTRAP) \
1304
	qa
1305

    
1306
test/py/daemon-util_unittest.bash: daemons/daemon-util
1307

    
1308
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1309

    
1310
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1311

    
1312
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1313
	sed -f $(REPLACE_VARS_SED) < $< > $@
1314
	chmod +x $@
1315

    
1316
tools/users-setup: tools/users-setup.in $(REPLACE_VARS_SED)
1317
	sed -f $(REPLACE_VARS_SED) < $< > $@
1318
	chmod +x $@
1319

    
1320
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1321
	sed -f $(REPLACE_VARS_SED) < $< > $@
1322
	chmod +x $@
1323

    
1324
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1325
	sed -f $(REPLACE_VARS_SED) < $< > $@
1326
	chmod +x $@
1327

    
1328
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1329
	sed -f $(REPLACE_VARS_SED) < $< > $@
1330

    
1331
doc/examples/bash_completion: BC_ARGS = --compact
1332
doc/examples/bash_completion-debug: BC_ARGS =
1333

    
1334
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1335
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1336
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1337
	daemons/ganeti-cleaner \
1338
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1339
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1340
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1341

    
1342
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1343
	lib/build/shell_example_lexer.py \
1344
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1345
	@echo "Checking $< for hardcoded paths..."
1346
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1347
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1348
	  exit 1; \
1349
	fi
1350
	set -e ; \
1351
	trap 'echo auto-removing $@; rm $@' EXIT; \
1352
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1353
	$(CHECK_MAN_REFERENCES) $@; \
1354
	trap - EXIT
1355

    
1356
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1357
	@test -n "$(PANDOC)" || \
1358
	  { echo 'pandoc' not found during configure; exit 1; }
1359
	set -o pipefail -e; \
1360
	trap 'echo auto-removing $@; rm $@' EXIT; \
1361
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1362
	  sed -e 's/\\@/@/g' > $@; \
1363
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1364
	$(CHECK_MAN_DASHES) $@; \
1365
	trap - EXIT
1366

    
1367
man/%.html.in: man/%.gen man/footer.rst
1368
	@test -n "$(PANDOC)" || \
1369
	  { echo 'pandoc' not found during configure; exit 1; }
1370
	set -o pipefail ; \
1371
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1372
	  sed -e 's/\\@/@/g' > $@
1373

    
1374
man/%: man/%.in  $(REPLACE_VARS_SED)
1375
	sed -f $(REPLACE_VARS_SED) < $< > $@
1376

    
1377
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1378
	sed -f $(REPLACE_VARS_SED) < $< > $@
1379

    
1380
vcs-version:
1381
	if test -d .git; then \
1382
	  git describe > $@; \
1383
	elif test ! -f $@ ; then \
1384
	  echo "Cannot auto-generate $@ file"; exit 1; \
1385
	fi
1386

    
1387
.PHONY: clean-vcs-version
1388
clean-vcs-version:
1389
	rm -f vcs-version
1390

    
1391
.PHONY: regen-vcs-version
1392
regen-vcs-version:
1393
	@set -e; \
1394
	cd $(srcdir); \
1395
	if test -d .git; then \
1396
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1397
	  git describe > $$T; \
1398
	  if ! cmp --quiet $$T vcs-version; then \
1399
	    mv $$T vcs-version; \
1400
	  fi; \
1401
	fi
1402

    
1403
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1404
	vcs-version $(built_base_sources)
1405
	set -e; \
1406
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1407
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1408

    
1409
src/Ganeti/Constants.hs: src/Ganeti/Constants.hs.in \
1410
	lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1411
	lib/jstore.py $(RUN_IN_TEMPDIR) \
1412
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1413
	| lib/_vcsversion.py
1414
	set -e; \
1415
	{ cat $< ; \
1416
	  PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
1417
	} > $@
1418

    
1419
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1420
	hsc2hs -o $@ $<
1421

    
1422
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1423
	$(built_base_sources)
1424
	set -e; \
1425
	{ cat $< ; \
1426
	  echo ; \
1427
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1428
	    echo "import $$name ()" ; \
1429
	  done ; \
1430
	} > $@
1431

    
1432
lib/_autoconf.py: Makefile | stamp-directories
1433
	set -e; \
1434
	{ echo '# This file is automatically generated, do not edit!'; \
1435
	  echo '#'; \
1436
	  echo ''; \
1437
	  echo '"""Build-time configuration for Ganeti.'; \
1438
	  echo '';\
1439
	  echo 'This file is autogenerated by the build process.'; \
1440
	  echo 'For any changes you need to re-run ./configure (and'; \
1441
	  echo 'not edit by hand).'; \
1442
	  echo ''; \
1443
	  echo '"""'; \
1444
	  echo ''; \
1445
	  echo '# pylint: disable=C0301,C0324'; \
1446
	  echo '# because this is autogenerated, we do not want'; \
1447
	  echo '# style warnings' ; \
1448
	  echo ''; \
1449
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1450
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1451
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1452
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1453
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1454
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1455
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1456
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1457
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1458
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1459
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1460
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1461
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1462
	  echo "ES_SEARCH_PATH = [$(ES_SEARCH_PATH)]"; \
1463
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1464
	  echo "XEN_CONFIG_DIR = '$(XEN_CONFIG_DIR)'"; \
1465
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1466
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1467
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1468
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1469
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1470
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1471
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1472
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1473
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1474
	  echo "IP_PATH = '$(IP_PATH)'"; \
1475
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1476
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1477
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1478
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1479
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1480
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1481
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1482
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1483
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1484
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1485
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1486
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1487
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1488
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1489
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1490
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1491
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1492
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1493
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1494
	  echo "NODED_USER = '$(NODED_USER)'"; \
1495
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1496
	  echo "MOND_USER = '$(MOND_USER)'"; \
1497
	  echo "MOND_GROUP = '$(MOND_GROUP)'"; \
1498
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1499
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1500
	  echo "HTOOLS = True"; \
1501
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1502
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1503
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1504
	  echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1505
	  echo "ENABLE_MOND = $(ENABLE_MOND)"; \
1506
## Write dictionary with man page name as the key and the section number as the
1507
## value
1508
	  echo "MAN_PAGES = {"; \
1509
	  for i in $(notdir $(man_MANS)); do \
1510
	    echo "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/  "\1": \2,/g'; \
1511
	  done; \
1512
	  echo "}"; \
1513
	} > $@
1514

    
1515
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1516
	set -e; \
1517
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1518
	{ echo '# This file is automatically generated, do not edit!'; \
1519
	  echo '#'; \
1520
	  echo ''; \
1521
	  echo '"""Build-time VCS version number for Ganeti.'; \
1522
	  echo '';\
1523
	  echo 'This file is autogenerated by the build process.'; \
1524
	  echo 'For any changes you need to re-run ./configure (and'; \
1525
	  echo 'not edit by hand).'; \
1526
	  echo ''; \
1527
	  echo '"""'; \
1528
	  echo ''; \
1529
	  echo '# pylint: disable=C0301,C0324'; \
1530
	  echo '# because this is autogenerated, we do not want'; \
1531
	  echo '# style warnings' ; \
1532
	  echo ''; \
1533
	  echo "VCS_VERSION = '$$VCSVER'"; \
1534
	} > $@
1535

    
1536
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1537
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1538

    
1539
$(SHELL_ENV_INIT): Makefile stamp-directories
1540
	set -e; \
1541
	{ echo '# Allow overriding for tests'; \
1542
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1543
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1544
	  echo; \
1545
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1546
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1547
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1548
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1549
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1550
	} > $@
1551

    
1552
## Writes sed script to replace placeholders with build-time values. The
1553
## additional quotes after the first @ sign are necessary to stop configure
1554
## from replacing those values as well.
1555
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1556
	set -e; \
1557
	{ echo 's#@''PREFIX@#$(prefix)#g'; \
1558
	  echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1559
	  echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1560
	  echo 's#@''BINDIR@#$(bindir)#g'; \
1561
	  echo 's#@''SBINDIR@#$(sbindir)#g'; \
1562
	  echo 's#@''LIBDIR@#$(libdir)#g'; \
1563
	  echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1564
	  echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1565
	  echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1566
	  echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1567
	  echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1568
	  echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1569
	  echo 's#@''RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1570
	  echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1571
	  echo 's#@''PKGLIBDIR@#$(pkglibdir)#g'; \
1572
	  echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1573
	  echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1574
	  echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1575
	  echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1576
	  echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1577
	  echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1578
	  echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1579
	  echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1580
	  echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1581
	  echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1582
	  echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1583
	  echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1584
	  echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1585
	  echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1586
	  echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1587
	  echo; \
1588
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1589
	  echo '  r $(SHELL_ENV_INIT)'; \
1590
	  echo '  d'; \
1591
	  echo '}'; \
1592
	} > $@
1593

    
1594
# Using deferred evaluation
1595
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1596
daemons/ganeti-watcher: MODULE = ganeti.watcher
1597
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1598
tools/burnin: MODULE = ganeti.tools.burnin
1599
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1600
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1601
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1602
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1603
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1604

    
1605
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1606
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1607
	set -e; \
1608
	{ echo '#!/usr/bin/python'; \
1609
	  echo '# This file is automatically generated, do not edit!'; \
1610
	  echo "# Edit $(MODULE) instead."; \
1611
	  echo; \
1612
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1613
	  echo; \
1614
	  echo '# pylint: disable=C0103'; \
1615
	  echo '# C0103: Invalid name'; \
1616
	  echo; \
1617
	  echo 'import sys'; \
1618
	  echo 'import $(MODULE) as main'; \
1619
	  echo; \
1620
	  echo '# Temporarily alias commands until bash completion'; \
1621
	  echo '# generator is changed'; \
1622
	  echo 'if hasattr(main, "commands"):'; \
1623
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1624
	  echo 'if hasattr(main, "aliases"):'; \
1625
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1626
	  echo; \
1627
	  echo 'if __name__ == "__main__":'; \
1628
	  echo '  sys.exit(main.Main())'; \
1629
	} > $@
1630
	chmod u+x $@
1631

    
1632
$(HS_BUILT_TEST_HELPERS): Makefile
1633
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1634
	set -e; \
1635
	{ echo '#!/bin/sh'; \
1636
	  echo '# This file is automatically generated, do not edit!'; \
1637
	  echo "# Edit Makefile.am instead."; \
1638
	  echo; \
1639
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
1640
	} > $@
1641
	chmod u+x $@
1642

    
1643
stamp-directories: Makefile
1644
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1645
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1646
	touch $@
1647

    
1648
# We need to create symlinks because "make distcheck" will not install Python
1649
# files when building.
1650
stamp-srclinks: Makefile | stamp-directories
1651
	set -e; \
1652
	for i in $(srclink_files); do \
1653
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1654
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1655
	  fi; \
1656
	done
1657
	touch $@
1658

    
1659
.PHONY: ganeti
1660
ganeti:
1661
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1662

    
1663
.PHONY: check-dirs
1664
check-dirs: $(GENERATED_FILES)
1665
	@set -e; \
1666
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1667
	  error=; \
1668
	  while read dir; do \
1669
	    case "$$dir" in \
1670
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1671
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1672
	    esac; \
1673
	  done; \
1674
	  for dir in $(DIRS); do \
1675
	    if ! test -d "$$dir"; then \
1676
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1677
	      error=1; \
1678
	    fi \
1679
	  done; \
1680
	  test -z "$$error"; \
1681
	}
1682

    
1683
.PHONY: check-local
1684
check-local: check-dirs $(GENERATED_FILES)
1685
	$(CHECK_PYTHON_CODE) $(check_python_code)
1686
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1687
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1688
	$(CHECK_NEWS) < $(top_srcdir)/NEWS
1689
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1690
	@expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1691
	error= ; \
1692
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1693
	  echo "Incorrect version in README, expected $$expver" >&2; \
1694
	  error=1; \
1695
	fi; \
1696
	for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1697
	    doc/security.rst; do \
1698
	  if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1699
	    "Documents Ganeti version $$expver"; then \
1700
	    echo "Incorrect version in $$file, expected $$expver" >&2; \
1701
	    error=1; \
1702
	  fi; \
1703
	done; \
1704
	if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1705
	  echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
1706
	  error=1; \
1707
	fi; \
1708
	if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
1709
	  ".. Last updated for Ganeti $$expver"; then \
1710
	  echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
1711
	  error=1; \
1712
	fi; \
1713
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
1714
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
1715
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
1716
	    error=1; \
1717
	  fi; \
1718
	done; \
1719
	test -z "$$error"
1720

    
1721
.PHONY: hs-tests
1722
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1723
	@rm -f htest.tix
1724
	./test/hs/htest
1725

    
1726
.PHONY: hs-shell
1727
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
1728
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1729
	HBINARY="./test/hs/hpc-htools" ./test/hs/offline-test.sh
1730

    
1731
.PHONY: hs-check
1732
hs-check: hs-tests hs-shell
1733

    
1734
# E111: indentation is not a multiple of four
1735
# E121: continuation line indentation is not a multiple of four
1736
#       (since our indent level is not 4)
1737
# E125: continuation line does not distinguish itself from next logical line
1738
#       (since our indent level is not 4)
1739
# E127: continuation line over-indented for visual indent
1740
#       (since our indent level is not 4)
1741
# note: do NOT add E128 here; it's a valid style error in most cases!
1742
# I've seen real errors, but also some cases were we indent wrongly
1743
# due to line length; try to rework the cases where it is triggered,
1744
# instead of silencing it
1745
# E261: at least two spaces before inline comment
1746
# E501: line too long (80 characters)
1747
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1748

    
1749
# For excluding pep8 expects filenames only, not whole paths
1750
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1751

    
1752
LINT_TARGETS = pylint pylint-qa
1753
if HAS_PEP8
1754
LINT_TARGETS += pep8
1755
endif
1756
if HAS_HLINT
1757
LINT_TARGETS += hlint
1758
endif
1759

    
1760
.PHONY: lint
1761
lint: $(LINT_TARGETS)
1762

    
1763
.PHONY: pylint
1764
pylint: $(GENERATED_FILES)
1765
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1766
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1767

    
1768
.PHONY: pylint-qa
1769
pylint-qa: $(GENERATED_FILES)
1770
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1771
	cd $(top_srcdir)/qa && \
1772
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1773
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1774

    
1775
.PHONY: pep8
1776
pep8: $(GENERATED_FILES)
1777
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1778
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1779
	  --repeat $(pep8_python_code)
1780

    
1781
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1782
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
1783
.PHONY: hlint
1784
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
1785
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1786
	@rm -f doc/hs-lint.html
1787
	if tty -s; then C="-c"; else C=""; fi; \
1788
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1789
	  --ignore "Use first" \
1790
	  --ignore "Use &&&" \
1791
	  --ignore "Use void" \
1792
	  --ignore "Reduce duplication" \
1793
	  --hint src/lint-hints \
1794
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1795
	@if [ ! -f doc/hs-lint.html ]; then \
1796
	  echo "All good" > doc/hs-lint.html; \
1797
	fi
1798

    
1799
# a dist hook rule for updating the vcs-version file; this is
1800
# hardcoded due to where it needs to build the file...
1801
dist-hook:
1802
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1803
	rm -f $(top_distdir)/vcs-version
1804
	cp -p $(srcdir)/vcs-version $(top_distdir)
1805

    
1806
# a distcheck hook rule for catching revision control directories
1807
distcheck-hook:
1808
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1809
	  echo "Found revision control files in final archive." 1>&2; \
1810
	  exit 1; \
1811
	fi
1812
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1813
	  echo "Found Python byte code in final archive." 1>&2; \
1814
	  exit 1; \
1815
	fi
1816
	if find $(top_distdir) -name '*~' | grep .; then \
1817
	  echo "Found backup files in final archive." 1>&2; \
1818
	  exit 1; \
1819
	fi
1820
# Empty files or directories should not be distributed. They can cause
1821
# unnecessary warnings for packagers. Directories used by automake during
1822
# distcheck must be excluded.
1823
	if find $(top_distdir) -empty -and -not \( \
1824
	    -path $(top_distdir)/_build -or \
1825
	    -path $(top_distdir)/_inst \) | grep .; then \
1826
	  echo "Found empty files or directories in final archive." 1>&2; \
1827
	  exit 1; \
1828
	fi
1829
	if test -n "$(BUILD_RELEASE)" && \
1830
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
1831
	   echo "Found unreleased version in NEWS." >&2; \
1832
	   exit 1; \
1833
	fi
1834
	if test -e $(top_distdir)/doc/man-html; then \
1835
	  echo "Found documentation including man pages in final archive" >&2; \
1836
	  exit 1; \
1837
	fi
1838

    
1839
# When building a release, stricter checks should be used
1840
distcheck-release dist-release: export BUILD_RELEASE = 1
1841
distcheck-release: distcheck
1842

    
1843
distrebuildcheck: dist
1844
	set -e; \
1845
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1846
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1847
	cd $$builddir; \
1848
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1849
	cd $(distdir); \
1850
	./configure; \
1851
	$(MAKE) maintainer-clean; \
1852
	cp $(abs_srcdir)/vcs-version .; \
1853
	./configure; \
1854
	$(MAKE) $(AM_MAKEFLAGS)
1855

    
1856
dist-release: dist
1857
	set -e; \
1858
	for i in $(DIST_ARCHIVES); do \
1859
	  echo -n "Checking $$i ... "; \
1860
	  autotools/check-tar < $$i; \
1861
	  echo OK; \
1862
	done
1863

    
1864
install-exec-local:
1865
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1866
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1867
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1868

    
1869
.PHONY: apidoc
1870
if WANT_HSAPIDOC
1871
apidoc: py-apidoc hs-apidoc
1872
else
1873
apidoc: py-apidoc
1874
endif
1875

    
1876
.PHONY: py-apidoc
1877
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1878
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
1879
	$(RUN_IN_TEMPDIR) epydoc -v \
1880
	  --conf $(CURDIR)/epydoc.conf \
1881
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
1882

    
1883
.PHONY: hs-apidoc
1884
hs-apidoc: $(APIDOC_HS_DIR)/index.html
1885

    
1886
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
1887
	@test -n "$(HSCOLOUR)" || \
1888
	    { echo 'HsColour' not found during configure; exit 1; }
1889
	@test -n "$(HADDOCK)" || \
1890
	    { echo 'haddock' not found during configure; exit 1; }
1891
	rm -rf $(APIDOC_HS_DIR)/*
1892
	for i in $(ALL_APIDOC_HS_DIRS); do \
1893
	  @mkdir_p@ $$i; \
1894
	  $(HSCOLOUR) -print-css > $$i/hscolour.css; \
1895
	done
1896
	set -e ; \
1897
	export LC_ALL=en_US.UTF-8; \
1898
	OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
1899
	if [ "$(HS_PARALLEL3)" ]; \
1900
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
1901
	fi; \
1902
	if [ "$(HS_REGEX_PCRE)" ]; \
1903
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
1904
	fi; \
1905
	for file in $(HS_LIBTESTBUILT_SRCS); do \
1906
	  f_nosrc=$${file##src/}; \
1907
	  f_notst=$${f_nosrc##test/hs/}; \
1908
	  f_html=$${f_notst%%.hs}.html; \
1909
	  $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
1910
	done ; \
1911
	$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1912
	  -t ganeti -p src/haddock-prologue \
1913
	  --source-module="%{MODULE/.//}.html" \
1914
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
1915
	  $$OPTGHC \
1916
	  $(HS_LIBTESTBUILT_SRCS)
1917

    
1918
.PHONY: TAGS
1919
TAGS: $(GENERATED_FILES)
1920
	rm -f TAGS
1921
	$(GHC) -e ":etags" -v0 \
1922
	  $(filter-out -O -Werror,$(HFLAGS)) \
1923
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
1924
	  $(HS_LIBTEST_SRCS)
1925
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1926
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1927
	  -path './qa/*.py' | \
1928
	  etags -l python -a -
1929

    
1930
.PHONY: coverage
1931
if WANT_HTOOLS
1932
coverage: py-coverage hs-coverage
1933
else
1934
coverage: py-coverage
1935
endif
1936

    
1937
.PHONY: py-coverage
1938
py-coverage: $(GENERATED_FILES) $(python_tests)
1939
	@test -n "$(PYCOVERAGE)" || \
1940
	    { echo 'python-coverage' not found during configure; exit 1; }
1941
	set -e; \
1942
	COVERAGE=$(PYCOVERAGE) \
1943
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1944
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1945
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1946
	$(PLAIN_TESTS_ENVIRONMENT) \
1947
	$(abs_top_srcdir)/autotools/gen-py-coverage \
1948
	$(python_tests)
1949

    
1950
.PHONY: hs-coverage
1951
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
1952
	rm -f *.tix
1953
	$(MAKE) $(AM_MAKEFLAGS) hs-check
1954
	@mkdir_p@ $(COVERAGE_HS_DIR)
1955
	hpc sum --union $(HPCEXCL) \
1956
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
1957
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
1958
	hpc report coverage-hs.tix
1959
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
1960

    
1961
# Special "kind-of-QA" target for htools, needs special setup (all
1962
# tools compiled with -fhpc)
1963
.PHONY: live-test
1964
live-test: all
1965
	set -e ; \
1966
	cd src; \
1967
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
1968
	rm -f *.tix *.mix; \
1969
	./live-test.sh; \
1970
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
1971
	  --output=live-test.tix ; \
1972
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1973
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1974
	  --srcdir=.. $(HPCEXCL) ; \
1975
	hpc report --srcdir=.. live-test $(HPCEXCL)
1976

    
1977
commit-check: distcheck lint apidoc
1978

    
1979
.PHONY: gitignore-check
1980
gitignore-check:
1981
	@if [ -n "`git status --short`" ]; then \
1982
	  echo "Git status is not clean!" 1>&2 ; \
1983
	  git status --short; \
1984
	  exit 1; \
1985
	fi
1986

    
1987
# target to rebuild all man pages (both groff and html output)
1988
.PHONY: man
1989
man: $(man_MANS) $(manhtml)
1990

    
1991
# Target that builds all binaries (including those that are not
1992
# rebuilt except when running the tests)
1993
.PHONY: really-all
1994
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
1995

    
1996
# we don't need the ancient implicit rules:
1997
%: %,v
1998
%: RCS/%,v
1999
%: RCS/%
2000
%: s.%
2001
%: SCCS/s.%
2002

    
2003
-include ./Makefile.local
2004

    
2005
# vim: set noet :