Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 9ca87fb3

History | View | Annotate | Download (33.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
# Use bash in order to be able to use pipefail
13
SHELL=/bin/bash
14

    
15
ACLOCAL_AMFLAGS = -I autotools
16
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
17
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
18
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
19
CHECK_MAN = $(top_srcdir)/autotools/check-man
20
CHECK_VERSION = $(top_srcdir)/autotools/check-version
21
CHECK_NEWS = $(top_srcdir)/autotools/check-news
22
DOCPP = $(top_srcdir)/autotools/docpp
23
REPLACE_VARS_SED = autotools/replace_vars.sed
24
CONVERT_CONSTANTS = $(top_srcdir)/autotools/convert-constants
25

    
26
# Note: these are automake-specific variables, and must be named after
27
# the directory + 'dir' suffix
28
clientdir = $(pkgpythondir)/client
29
hypervisordir = $(pkgpythondir)/hypervisor
30
httpdir = $(pkgpythondir)/http
31
masterddir = $(pkgpythondir)/masterd
32
confddir = $(pkgpythondir)/confd
33
rapidir = $(pkgpythondir)/rapi
34
serverdir = $(pkgpythondir)/server
35
watcherdir = $(pkgpythondir)/watcher
36
impexpddir = $(pkgpythondir)/impexpd
37
utilsdir = $(pkgpythondir)/utils
38
toolsdir = $(pkglibdir)/tools
39
iallocatorsdir = $(pkglibdir)/iallocators
40
pytoolsdir = $(pkgpythondir)/tools
41
docdir = $(datadir)/doc/$(PACKAGE)
42

    
43
# Delete output file if an error occurred while building it
44
.DELETE_ON_ERROR:
45

    
46
HTOOLS_DIRS = \
47
	htools \
48
	htools/Ganeti \
49
	htools/Ganeti/HTools \
50
	htools/Ganeti/HTools/Program
51

    
52
DIRS = \
53
	autotools \
54
	daemons \
55
	devel \
56
	doc \
57
	doc/examples \
58
	doc/examples/hooks \
59
	doc/examples/gnt-debug \
60
	$(HTOOLS_DIRS) \
61
	lib \
62
	lib/client \
63
	lib/build \
64
	lib/confd \
65
	lib/http \
66
	lib/hypervisor \
67
	lib/impexpd \
68
	lib/masterd \
69
	lib/rapi \
70
	lib/server \
71
	lib/tools \
72
	lib/utils \
73
	lib/watcher \
74
	man \
75
	qa \
76
	test \
77
	test/data \
78
	tools
79

    
80
BUILDTIME_DIR_AUTOCREATE = \
81
	scripts \
82
	$(APIDOC_DIR) \
83
	$(APIDOC_PY_DIR) \
84
	$(APIDOC_HS_DIR) \
85
	$(APIDOC_HS_DIR)/Ganeti $(APIDOC_HS_DIR)/Ganeti/HTools \
86
	$(APIDOC_HS_DIR)/Ganeti/HTools/Program \
87
	$(COVERAGE_DIR) \
88
	$(COVERAGE_PY_DIR) \
89
	$(COVERAGE_HS_DIR) \
90
	.hpc
91

    
92
BUILDTIME_DIRS = \
93
	$(BUILDTIME_DIR_AUTOCREATE) \
94
	doc/html
95

    
96
DIRCHECK_EXCLUDE = \
97
	$(BUILDTIME_DIRS) \
98
	ganeti-[0-9]*.[0-9]*.[0-9]* \
99
	doc/html/_*
100

    
101
all_dirfiles = $(addsuffix /.dir,$(DIRS) $(BUILDTIME_DIR_AUTOCREATE))
102

    
103
# some helper vars
104
COVERAGE_DIR = doc/coverage
105
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
106
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
107
APIDOC_DIR = doc/api
108
APIDOC_PY_DIR = $(APIDOC_DIR)/py
109
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
110

    
111
MAINTAINERCLEANFILES = \
112
	$(docpng) \
113
	$(maninput) \
114
	doc/install-quick.rst \
115
	doc/news.rst \
116
	doc/upgrade.rst \
117
	vcs-version
118

    
119
maintainer-clean-local:
120
	rm -rf $(BUILDTIME_DIRS)
121

    
122
CLEANFILES = \
123
	$(addsuffix /*.py[co],$(DIRS)) \
124
	$(addsuffix /*.hi,$(HTOOLS_DIRS)) \
125
	$(addsuffix /*.o,$(HTOOLS_DIRS)) \
126
	$(all_dirfiles) \
127
	$(PYTHON_BOOTSTRAP) \
128
	epydoc.conf \
129
	autotools/replace_vars.sed \
130
	daemons/daemon-util \
131
	daemons/ganeti-cleaner \
132
	devel/upload \
133
	doc/examples/bash_completion \
134
	doc/examples/ganeti.initd \
135
	doc/examples/ganeti-kvm-poweroff.initd \
136
	doc/examples/ganeti.cron \
137
	doc/examples/gnt-config-backup \
138
	doc/examples/hooks/ipsec \
139
	$(man_MANS) \
140
	$(manhtml) \
141
	tools/kvm-ifup \
142
	stamp-srclinks \
143
	$(nodist_pkgpython_PYTHON) \
144
	$(HS_ALL_PROGS) $(HS_BUILT_SRCS) \
145
	.hpc/*.mix htools/*.tix \
146
	doc/hs-lint.html
147

    
148
# BUILT_SOURCES should only be used as a dependency on phony targets. Otherwise
149
# it'll cause the target to rebuild every time.
150
BUILT_SOURCES = \
151
	ganeti \
152
	stamp-srclinks \
153
	lib/_autoconf.py \
154
	lib/_vcsversion.py \
155
	$(all_dirfiles) \
156
	$(PYTHON_BOOTSTRAP)
157

    
158
nodist_pkgpython_PYTHON = \
159
	lib/_autoconf.py \
160
	lib/_vcsversion.py
161

    
162
noinst_PYTHON = \
163
	lib/build/__init__.py \
164
	lib/build/sphinx_ext.py
165

    
166
pkgpython_PYTHON = \
167
	lib/__init__.py \
168
	lib/asyncnotifier.py \
169
	lib/backend.py \
170
	lib/bdev.py \
171
	lib/bootstrap.py \
172
	lib/cli.py \
173
	lib/cmdlib.py \
174
	lib/compat.py \
175
	lib/config.py \
176
	lib/constants.py \
177
	lib/daemon.py \
178
	lib/errors.py \
179
	lib/ht.py \
180
	lib/jqueue.py \
181
	lib/jstore.py \
182
	lib/locking.py \
183
	lib/luxi.py \
184
	lib/mcpu.py \
185
	lib/netutils.py \
186
	lib/objects.py \
187
	lib/opcodes.py \
188
	lib/qlang.py \
189
	lib/query.py \
190
	lib/rpc.py \
191
	lib/runtime.py \
192
	lib/serializer.py \
193
	lib/ssconf.py \
194
	lib/ssh.py \
195
	lib/storage.py \
196
	lib/uidpool.py \
197
	lib/workerpool.py
198

    
199
client_PYTHON = \
200
	lib/client/__init__.py \
201
	lib/client/gnt_backup.py \
202
	lib/client/gnt_cluster.py \
203
	lib/client/gnt_debug.py \
204
	lib/client/gnt_group.py \
205
	lib/client/gnt_instance.py \
206
	lib/client/gnt_job.py \
207
	lib/client/gnt_node.py \
208
	lib/client/gnt_os.py
209

    
210
hypervisor_PYTHON = \
211
	lib/hypervisor/__init__.py \
212
	lib/hypervisor/hv_base.py \
213
	lib/hypervisor/hv_chroot.py \
214
	lib/hypervisor/hv_fake.py \
215
	lib/hypervisor/hv_kvm.py \
216
	lib/hypervisor/hv_lxc.py \
217
	lib/hypervisor/hv_xen.py
218

    
219
rapi_PYTHON = \
220
	lib/rapi/__init__.py \
221
	lib/rapi/baserlib.py \
222
	lib/rapi/client.py \
223
	lib/rapi/client_utils.py \
224
	lib/rapi/connector.py \
225
	lib/rapi/rlib2.py
226

    
227
http_PYTHON = \
228
	lib/http/__init__.py \
229
	lib/http/auth.py \
230
	lib/http/client.py \
231
	lib/http/server.py
232

    
233
confd_PYTHON = \
234
	lib/confd/__init__.py \
235
	lib/confd/client.py \
236
	lib/confd/querylib.py \
237
	lib/confd/server.py
238

    
239
masterd_PYTHON = \
240
	lib/masterd/__init__.py \
241
	lib/masterd/instance.py
242

    
243
impexpd_PYTHON = \
244
	lib/impexpd/__init__.py
245

    
246
watcher_PYTHON = \
247
	lib/watcher/__init__.py \
248
	lib/watcher/nodemaint.py
249

    
250
server_PYTHON = \
251
	lib/server/__init__.py \
252
	lib/server/confd.py \
253
	lib/server/masterd.py \
254
	lib/server/noded.py \
255
	lib/server/rapi.py
256

    
257
pytools_PYTHON = \
258
	lib/tools/__init__.py \
259
	lib/tools/ensure_dirs.py
260

    
261
utils_PYTHON = \
262
	lib/utils/__init__.py \
263
	lib/utils/algo.py \
264
	lib/utils/filelock.py \
265
	lib/utils/hash.py \
266
	lib/utils/io.py \
267
	lib/utils/log.py \
268
	lib/utils/mlock.py \
269
	lib/utils/nodesetup.py \
270
	lib/utils/process.py \
271
	lib/utils/retry.py \
272
	lib/utils/text.py \
273
	lib/utils/wrapper.py \
274
	lib/utils/x509.py
275

    
276
docrst = \
277
	doc/admin.rst \
278
	doc/design-2.0.rst \
279
	doc/design-2.1.rst \
280
	doc/design-2.2.rst \
281
	doc/design-2.3.rst \
282
	doc/design-htools-2.3.rst \
283
	doc/design-2.4.rst \
284
	doc/design-draft.rst \
285
	doc/design-oob.rst \
286
	doc/design-cpu-pinning.rst \
287
	doc/design-query2.rst \
288
	doc/design-x509-ca.rst \
289
	doc/design-http-server.rst \
290
	doc/design-impexp2.rst \
291
	doc/design-lu-generated-jobs.rst \
292
	doc/design-multi-reloc.rst \
293
	doc/design-network.rst \
294
	doc/design-chained-jobs.rst \
295
	doc/cluster-merge.rst \
296
	doc/design-shared-storage.rst \
297
	doc/devnotes.rst \
298
	doc/glossary.rst \
299
	doc/hooks.rst \
300
	doc/iallocator.rst \
301
	doc/index.rst \
302
	doc/install-quick.rst \
303
	doc/install.rst \
304
	doc/locking.rst \
305
	doc/move-instance.rst \
306
	doc/news.rst \
307
	doc/rapi.rst \
308
	doc/security.rst \
309
	doc/upgrade.rst \
310
	doc/walkthrough.rst
311

    
312
HS_PROGS = htools/htools
313
HS_BIN_ROLES = hbal hscan hspace
314

    
315
HS_ALL_PROGS = $(HS_PROGS) htools/test
316
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
317
# we don't add -Werror by default
318
HFLAGS = -O -Wall -fwarn-monomorphism-restriction -fwarn-tabs -ihtools
319
# extra flags that can be overriden on the command line
320
HEXTRA =
321
# exclude options for coverage reports
322
HPCEXCL = --exclude Main --exclude Ganeti.HTools.QC \
323
	--exclude Ganeti.Constants \
324
	--exclude Ganeti.HTools.Version
325

    
326
HS_LIB_SRCS = \
327
	htools/Ganeti/HTools/CLI.hs \
328
	htools/Ganeti/HTools/Cluster.hs \
329
	htools/Ganeti/HTools/Compat.hs \
330
	htools/Ganeti/HTools/Container.hs \
331
	htools/Ganeti/HTools/ExtLoader.hs \
332
	htools/Ganeti/HTools/Group.hs \
333
	htools/Ganeti/HTools/IAlloc.hs \
334
	htools/Ganeti/HTools/Instance.hs \
335
	htools/Ganeti/HTools/Loader.hs \
336
	htools/Ganeti/HTools/Luxi.hs \
337
	htools/Ganeti/HTools/Node.hs \
338
	htools/Ganeti/HTools/PeerMap.hs \
339
	htools/Ganeti/HTools/QC.hs \
340
	htools/Ganeti/HTools/Rapi.hs \
341
	htools/Ganeti/HTools/Simu.hs \
342
	htools/Ganeti/HTools/Text.hs \
343
	htools/Ganeti/HTools/Types.hs \
344
	htools/Ganeti/HTools/Utils.hs \
345
	htools/Ganeti/HTools/Program/Hail.hs \
346
	htools/Ganeti/HTools/Program/Hbal.hs \
347
	htools/Ganeti/HTools/Program/Hscan.hs \
348
	htools/Ganeti/HTools/Program/Hspace.hs \
349
	htools/Ganeti/Jobs.hs \
350
	htools/Ganeti/Luxi.hs \
351
	htools/Ganeti/OpCodes.hs
352

    
353
HS_BUILT_SRCS = htools/Ganeti/HTools/Version.hs htools/Ganeti/Constants.hs
354
HS_BUILT_SRCS_IN = $(patsubst %,%.in,$(HS_BUILT_SRCS))
355

    
356
$(RUN_IN_TEMPDIR): | $(all_dirfiles)
357

    
358
# Note: we use here an order-only prerequisite, as the contents of
359
# _autoconf.py are not actually influencing the html build output: it
360
# has to exist in order for the sphinx module to be loaded
361
# successfully, but we certainly don't want the docs to be rebuilt if
362
# it changes
363
doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
364
	$(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py lib/opcodes.py lib/ht.py \
365
	| lib/_autoconf.py lib/_vcsversion.py
366
	@test -n "$(SPHINX)" || \
367
	    { echo 'sphinx-build' not found during configure; exit 1; }
368
	@mkdir_p@ $(dir $@)
369
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
370
	    -d . \
371
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
372
	    -D release="$(PACKAGE_VERSION)" \
373
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
374
	rm -f doc/html/.buildinfo doc/html/objects.inv
375
	touch $@
376

    
377
doc/html: doc/html/index.html
378

    
379
doc/install-quick.rst: INSTALL
380
doc/news.rst: NEWS
381
doc/upgrade.rst: UPGRADE
382

    
383
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
384
	set -e; \
385
	{ echo '.. This file is automatically updated at build time from $<.'; \
386
	  echo '.. Do not edit.'; \
387
	  echo; \
388
	  cat $<; \
389
	} > $@
390

    
391
docdot = \
392
	doc/arch-2.0.dot \
393
	doc/design-2.1-lock-acquire.dot \
394
	doc/design-2.1-lock-release.dot
395

    
396
docpng = $(patsubst %.dot,%.png,$(docdot))
397

    
398
# Things to build but not to install (add it to EXTRA_DIST if it should be
399
# distributed)
400
noinst_DATA = \
401
	devel/upload \
402
	doc/html \
403
	doc/examples/bash_completion \
404
	doc/examples/ganeti.cron \
405
	doc/examples/ganeti.initd \
406
	doc/examples/ganeti-kvm-poweroff.initd \
407
	doc/examples/gnt-config-backup \
408
	doc/examples/hooks/ipsec \
409
	$(manhtml)
410

    
411
gnt_scripts = \
412
	scripts/gnt-backup \
413
	scripts/gnt-cluster \
414
	scripts/gnt-debug \
415
	scripts/gnt-group \
416
	scripts/gnt-instance \
417
	scripts/gnt-job \
418
	scripts/gnt-node \
419
	scripts/gnt-os
420

    
421
PYTHON_BOOTSTRAP_SBIN = \
422
	daemons/ganeti-confd \
423
	daemons/ganeti-masterd \
424
	daemons/ganeti-noded \
425
	daemons/ganeti-watcher \
426
	daemons/ganeti-rapi \
427
	scripts/gnt-backup \
428
	scripts/gnt-cluster \
429
	scripts/gnt-debug \
430
	scripts/gnt-group \
431
	scripts/gnt-instance \
432
	scripts/gnt-job \
433
	scripts/gnt-node \
434
	scripts/gnt-os
435

    
436
PYTHON_BOOTSTRAP = \
437
	$(PYTHON_BOOTSTRAP_SBIN) \
438
	tools/ensure-dirs
439

    
440
qa_scripts = \
441
	qa/ganeti-qa.py \
442
	qa/qa_cluster.py \
443
	qa/qa_config.py \
444
	qa/qa_daemon.py \
445
	qa/qa_env.py \
446
	qa/qa_error.py \
447
	qa/qa_instance.py \
448
	qa/qa_node.py \
449
	qa/qa_os.py \
450
	qa/qa_rapi.py \
451
	qa/qa_tags.py \
452
	qa/qa_utils.py
453

    
454
bin_SCRIPTS =
455
if WANT_HTOOLS
456
bin_SCRIPTS += $(filter-out htools/hail,$(HS_PROGS))
457
install-exec-hook:
458
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
459
	$(LN_S) -f $(DESTDIR)$(bindir)/htools \
460
		   $(DESTDIR)$(iallocatorsdir)/hail
461
	for role in $(HS_BIN_ROLES); do \
462
		$(LN_S) -f $(DESTDIR)$(bindir)/htools \
463
			   $(DESTDIR)$(bindir)/$$role ; \
464
	done
465
endif
466

    
467
$(HS_ALL_PROGS): %: %.hs $(HS_LIB_SRCS) $(HS_BUILT_SRCS) Makefile
468
	@if [ -z "$(HTOOLS)" ]; then \
469
	  echo "Error: htools compilation disabled at configure time" 1>&2 ;\
470
	  exit 1; \
471
	fi
472
	@BINARY=$(@:htools/%=%); \
473
	if [ "$BINARY" = "test" ] && [ -z "$(GHC_PKG_QUICKCHECK)" ]; then \
474
	  echo "Error: cannot run unittests without the QuickCheck library (see devnotes.rst)" 1>&2; \
475
	  exit 1; \
476
	fi
477
	BINARY=$(@:htools/%=%); $(GHC) --make \
478
	  $(HFLAGS) $(HEXTRA) \
479
	  $(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) \
480
	  -osuf $$BINARY.o -hisuf $$BINARY.hi $@
481

    
482
# for the htools/test binary, we need to enable profiling/coverage
483
htools/test: HEXTRA=-fhpc -Wwarn -fno-warn-missing-signatures \
484
	-fno-warn-monomorphism-restriction -fno-warn-orphans \
485
	-fno-warn-missing-methods -fno-warn-unused-imports
486

    
487
dist_sbin_SCRIPTS = \
488
	tools/ganeti-listrunner
489

    
490
nodist_sbin_SCRIPTS = \
491
	$(PYTHON_BOOTSTRAP_SBIN) \
492
	daemons/ganeti-cleaner
493

    
494
dist_tools_PYTHON = \
495
	tools/burnin \
496
	tools/cfgshell \
497
	tools/cfgupgrade \
498
	tools/cfgupgrade12 \
499
	tools/cluster-merge \
500
	tools/lvmstrap \
501
	tools/move-instance \
502
	tools/setup-ssh \
503
	tools/sanitize-config
504

    
505
dist_tools_SCRIPTS = \
506
	$(dist_tools_PYTHON) \
507
	tools/kvm-console-wrapper \
508
	tools/xm-console-wrapper
509

    
510
pkglib_python_scripts = \
511
	daemons/import-export \
512
	tools/check-cert-expired
513

    
514
nodist_pkglib_python_scripts = \
515
	tools/ensure-dirs
516

    
517
pkglib_SCRIPTS = \
518
	daemons/daemon-util \
519
	tools/kvm-ifup \
520
	$(pkglib_python_scripts)
521

    
522
nodist_pkglib_SCRIPTS = \
523
	$(nodist_pkglib_python_scripts)
524

    
525
EXTRA_DIST = \
526
	NEWS \
527
	UPGRADE \
528
	epydoc.conf.in \
529
	pylintrc \
530
	autotools/build-bash-completion \
531
	autotools/check-python-code \
532
	autotools/check-man \
533
	autotools/check-news \
534
	autotools/check-tar \
535
	autotools/check-version \
536
	autotools/convert-constants \
537
	autotools/docpp \
538
	autotools/gen-coverage \
539
	autotools/testrunner \
540
	$(RUN_IN_TEMPDIR) \
541
	daemons/daemon-util.in \
542
	daemons/ganeti-cleaner.in \
543
	$(pkglib_python_scripts) \
544
	devel/upload.in \
545
	tools/kvm-ifup.in \
546
	$(docdot) \
547
	$(docpng) \
548
	$(docrst) \
549
	doc/conf.py \
550
	doc/html \
551
	doc/examples/ganeti.initd.in \
552
	doc/examples/ganeti-kvm-poweroff.initd.in \
553
	doc/examples/ganeti.cron.in \
554
	doc/examples/gnt-config-backup.in \
555
	doc/examples/ganeti.default \
556
	doc/examples/ganeti.default-debug \
557
	doc/examples/hooks/ethers \
558
	doc/examples/hooks/ipsec.in \
559
	doc/examples/gnt-debug/README \
560
	doc/examples/gnt-debug/delay0.json \
561
	doc/examples/gnt-debug/delay50.json \
562
	test/testutils.py \
563
	test/mocks.py \
564
	$(dist_TESTS) \
565
	$(TEST_FILES) \
566
	man/footer.rst \
567
	$(manrst) \
568
	$(maninput) \
569
	qa/qa-sample.json \
570
	$(qa_scripts) \
571
	$(HS_LIB_SRCS) $(HS_BUILT_SRCS_IN) \
572
	$(HS_PROG_SRCS)
573

    
574
man_MANS = \
575
	man/ganeti.7 \
576
	man/ganeti-cleaner.8 \
577
	man/ganeti-confd.8 \
578
	man/ganeti-listrunner.8 \
579
	man/ganeti-masterd.8 \
580
	man/ganeti-noded.8 \
581
	man/ganeti-os-interface.7 \
582
	man/ganeti-rapi.8 \
583
	man/ganeti-watcher.8 \
584
	man/gnt-backup.8 \
585
	man/gnt-cluster.8 \
586
	man/gnt-debug.8 \
587
	man/gnt-group.8 \
588
	man/gnt-instance.8 \
589
	man/gnt-job.8 \
590
	man/gnt-node.8 \
591
	man/gnt-os.8 \
592
	man/hail.1 \
593
	man/hbal.1 \
594
	man/hscan.1 \
595
	man/hspace.1 \
596
	man/htools.1
597

    
598
manrst = $(patsubst %.1,%.rst,$(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS))))
599
manhtml = $(patsubst %.rst,%.html,$(manrst))
600
mangen = $(patsubst %.rst,%.gen,$(manrst))
601
maninput = \
602
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
603
	$(patsubst %.html,%.html.in,$(manhtml)) \
604
	man/footer.man man/footer.html $(mangen)
605

    
606
TEST_FILES = \
607
	test/data/bdev-drbd-8.0.txt \
608
	test/data/bdev-drbd-8.3.txt \
609
	test/data/bdev-drbd-disk.txt \
610
	test/data/bdev-drbd-net-ip4.txt \
611
	test/data/bdev-drbd-net-ip6.txt \
612
	test/data/cert1.pem \
613
	test/data/proc_drbd8.txt \
614
	test/data/proc_drbd80-emptyline.txt \
615
	test/data/proc_drbd83.txt \
616
	test/data/sys_drbd_usermode_helper.txt \
617
	test/import-export_unittest-helper
618

    
619
python_tests = \
620
	test/ganeti.asyncnotifier_unittest.py \
621
	test/ganeti.backend_unittest.py \
622
	test/ganeti.bdev_unittest.py \
623
	test/ganeti.cli_unittest.py \
624
	test/ganeti.client.gnt_cluster_unittest.py \
625
	test/ganeti.client.gnt_instance_unittest.py \
626
	test/ganeti.daemon_unittest.py \
627
	test/ganeti.cmdlib_unittest.py \
628
	test/ganeti.compat_unittest.py \
629
	test/ganeti.confd.client_unittest.py \
630
	test/ganeti.config_unittest.py \
631
	test/ganeti.constants_unittest.py \
632
	test/ganeti.errors_unittest.py \
633
	test/ganeti.hooks_unittest.py \
634
	test/ganeti.ht_unittest.py \
635
	test/ganeti.http_unittest.py \
636
	test/ganeti.hypervisor_unittest.py \
637
	test/ganeti.hypervisor.hv_chroot_unittest.py \
638
	test/ganeti.hypervisor.hv_fake_unittest.py \
639
	test/ganeti.hypervisor.hv_kvm_unittest.py \
640
	test/ganeti.hypervisor.hv_lxc_unittest.py \
641
	test/ganeti.hypervisor.hv_xen_unittest.py \
642
	test/ganeti.impexpd_unittest.py \
643
	test/ganeti.jqueue_unittest.py \
644
	test/ganeti.locking_unittest.py \
645
	test/ganeti.luxi_unittest.py \
646
	test/ganeti.masterd.instance_unittest.py \
647
	test/ganeti.mcpu_unittest.py \
648
	test/ganeti.netutils_unittest.py \
649
	test/ganeti.objects_unittest.py \
650
	test/ganeti.opcodes_unittest.py \
651
	test/ganeti.qlang_unittest.py \
652
	test/ganeti.query_unittest.py \
653
	test/ganeti.rapi.baserlib_unittest.py \
654
	test/ganeti.rapi.client_unittest.py \
655
	test/ganeti.rapi.resources_unittest.py \
656
	test/ganeti.rapi.rlib2_unittest.py \
657
	test/ganeti.rpc_unittest.py \
658
	test/ganeti.runtime_unittest.py \
659
	test/ganeti.serializer_unittest.py \
660
	test/ganeti.ssh_unittest.py \
661
	test/ganeti.tools.ensure_dirs_unittest.py \
662
	test/ganeti.uidpool_unittest.py \
663
	test/ganeti.utils.algo_unittest.py \
664
	test/ganeti.utils.filelock_unittest.py \
665
	test/ganeti.utils.hash_unittest.py \
666
	test/ganeti.utils.io_unittest.py \
667
	test/ganeti.utils.log_unittest.py \
668
	test/ganeti.utils.mlock_unittest.py \
669
	test/ganeti.utils.nodesetup_unittest.py \
670
	test/ganeti.utils.process_unittest.py \
671
	test/ganeti.utils.retry_unittest.py \
672
	test/ganeti.utils.text_unittest.py \
673
	test/ganeti.utils.wrapper_unittest.py \
674
	test/ganeti.utils.x509_unittest.py \
675
	test/ganeti.utils_unittest.py \
676
	test/ganeti.workerpool_unittest.py \
677
	test/cfgupgrade_unittest.py \
678
	test/docs_unittest.py \
679
	test/tempfile_fork_unittest.py
680

    
681
haskell_tests = htools/test
682

    
683
dist_TESTS = \
684
	test/check-cert-expired_unittest.bash \
685
	test/daemon-util_unittest.bash \
686
	test/ganeti-cleaner_unittest.bash \
687
	test/import-export_unittest.bash \
688
	$(python_tests)
689

    
690
nodist_TESTS =
691
if WANT_HTOOLSTESTS
692
nodist_TESTS += $(haskell_tests)
693
endif
694

    
695
TESTS = $(dist_TESTS) $(nodist_TESTS)
696

    
697
# Environment for all tests
698
PLAIN_TESTS_ENVIRONMENT = \
699
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
700

    
701
# Environment for tests run by automake
702
TESTS_ENVIRONMENT = \
703
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
704

    
705
all_python_code = \
706
	$(dist_sbin_SCRIPTS) \
707
	$(dist_tools_PYTHON) \
708
	$(pkglib_python_scripts) \
709
	$(nodist_pkglib_python_scripts) \
710
	$(python_tests) \
711
	$(pkgpython_PYTHON) \
712
	$(client_PYTHON) \
713
	$(hypervisor_PYTHON) \
714
	$(rapi_PYTHON) \
715
	$(server_PYTHON) \
716
	$(pytools_PYTHON) \
717
	$(http_PYTHON) \
718
	$(confd_PYTHON) \
719
	$(masterd_PYTHON) \
720
	$(impexpd_PYTHON) \
721
	$(utils_PYTHON) \
722
	$(watcher_PYTHON) \
723
	$(noinst_PYTHON) \
724
	$(qa_scripts)
725

    
726
srclink_files = \
727
	man/footer.rst \
728
	test/check-cert-expired_unittest.bash \
729
	test/daemon-util_unittest.bash \
730
	test/ganeti-cleaner_unittest.bash \
731
	test/import-export_unittest.bash \
732
	$(all_python_code) \
733
	$(HS_LIB_SRCS) $(HS_PROG_SRCS)
734

    
735
check_python_code = \
736
	$(BUILD_BASH_COMPLETION) \
737
	$(DOCPP) \
738
	$(all_python_code)
739

    
740
lint_python_code = \
741
	ganeti \
742
	ganeti/http/server.py \
743
	$(dist_sbin_SCRIPTS) \
744
	$(dist_tools_PYTHON) \
745
	$(pkglib_python_scripts) \
746
	$(BUILD_BASH_COMPLETION) \
747
	$(DOCPP) \
748
	$(PYTHON_BOOTSTRAP)
749

    
750
test/daemon-util_unittest.bash: daemons/daemon-util
751

    
752
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
753

    
754
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
755
	sed -f $(REPLACE_VARS_SED) < $< > $@
756
	chmod +x $@
757

    
758
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
759
	sed -f $(REPLACE_VARS_SED) < $< > $@
760
	chmod u+x $@
761

    
762
daemons/%: daemons/%.in $(REPLACE_VARS_SED)
763
	sed -f $(REPLACE_VARS_SED) < $< > $@
764
	chmod +x $@
765

    
766
doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
767
	sed -f $(REPLACE_VARS_SED) < $< > $@
768

    
769
doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
770
	sed -f $(REPLACE_VARS_SED) < $< > $@
771

    
772
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
773
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
774
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
775

    
776
doc/%.png: doc/%.dot
777
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
778
	$(DOT) -Tpng -o $@ $<
779

    
780
man/footer.man: man/footer.rst
781
	@test -n "$(PANDOC)" || \
782
	  { echo 'pandoc' not found during configure; exit 1; }
783
	$(PANDOC) -f rst -t man -o $@ $<
784

    
785
man/footer.html: man/footer.rst
786
	@test -n "$(PANDOC)" || \
787
	  { echo 'pandoc' not found during configure; exit 1; }
788
	$(PANDOC) -f rst -t html -o $@ $<
789

    
790
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py
791
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@
792

    
793
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.man
794
	@test -n "$(PANDOC)" || \
795
	  { echo 'pandoc' not found during configure; exit 1; }
796
	set -o pipefail ; \
797
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
798
	  sed -e 's/\\@/@/g' > $@
799
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
800

    
801
man/%.html.in: man/%.gen man/footer.html
802
	@test -n "$(PANDOC)" || \
803
	  { echo 'pandoc' not found during configure; exit 1; }
804
	set -o pipefail ; \
805
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
806
	  sed -e 's/\\@/@/g' > $@
807

    
808
man/%.1: man/%.1.in $(REPLACE_VARS_SED)
809
	sed -f $(REPLACE_VARS_SED) < $< > $@
810

    
811
man/%.7: man/%.7.in $(REPLACE_VARS_SED)
812
	sed -f $(REPLACE_VARS_SED) < $< > $@
813

    
814
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
815
	sed -f $(REPLACE_VARS_SED) < $< > $@
816

    
817
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
818
	sed -f $(REPLACE_VARS_SED) < $< > $@
819

    
820
epydoc.conf: epydoc.conf.in Makefile
821
	sed -e 's#@MODULES@#$(strip $(lint_python_code))#g' < $< > $@
822

    
823
vcs-version:
824
	if test -d .git; then \
825
	  git describe > $@; \
826
	elif test ! -f $@ ; then \
827
	  echo "Cannot auto-generate $@ file"; exit 1; \
828
	fi
829

    
830
.PHONY: regen-vcs-version
831
regen-vcs-version:
832
	set -e; \
833
	cd $(srcdir); \
834
	if test -d .git; then \
835
	  rm -f vcs-version; \
836
	  $(MAKE) vcs-version; \
837
	fi
838

    
839
htools/Ganeti/HTools/Version.hs: htools/Ganeti/HTools/Version.hs.in vcs-version
840
	set -e; \
841
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
842
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
843

    
844
htools/Ganeti/Constants.hs: htools/Ganeti/Constants.hs.in \
845
	lib/constants.py lib/_autoconf.py $(CONVERT_CONSTANTS)
846
	set -e; \
847
	{ cat $< ; PYTHONPATH=. $(CONVERT_CONSTANTS); } > $@
848

    
849
lib/_autoconf.py: Makefile | lib/.dir
850
	set -e; \
851
	{ echo '# This file is automatically generated, do not edit!'; \
852
	  echo '#'; \
853
	  echo ''; \
854
	  echo '"""Build-time configuration for Ganeti.'; \
855
	  echo '';\
856
	  echo 'This file is autogenerated by the build process.'; \
857
	  echo 'For any changes you need to re-run ./configure (and'; \
858
	  echo 'not edit by hand).'; \
859
	  echo ''; \
860
	  echo '"""'; \
861
	  echo ''; \
862
	  echo '# pylint: disable-msg=C0301,C0324'; \
863
	  echo '# because this is autogenerated, we do not want'; \
864
	  echo '# style warnings' ; \
865
	  echo ''; \
866
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
867
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
868
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
869
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
870
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
871
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
872
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
873
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
874
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
875
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
876
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
877
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
878
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
879
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
880
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
881
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
882
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
883
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
884
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
885
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
886
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
887
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
888
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
889
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
890
	  echo "TOOLSDIR = '$(toolsdir)'"; \
891
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
892
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
893
	  echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
894
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
895
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
896
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
897
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
898
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
899
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
900
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
901
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
902
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
903
	  echo "NODED_USER = '$(NODED_USER)'"; \
904
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
905
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
906
	  if [ "$(HTOOLS)" ]; then \
907
	    echo "HTOOLS = True"; \
908
	  else \
909
	    echo "HTOOLS = False"; \
910
	  fi; \
911
	} > $@
912

    
913
lib/_vcsversion.py: Makefile vcs-version | lib/.dir
914
	set -e; \
915
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
916
	{ echo '# This file is automatically generated, do not edit!'; \
917
	  echo '#'; \
918
	  echo ''; \
919
	  echo '"""Build-time VCS version number for Ganeti.'; \
920
	  echo '';\
921
	  echo 'This file is autogenerated by the build process.'; \
922
	  echo 'For any changes you need to re-run ./configure (and'; \
923
	  echo 'not edit by hand).'; \
924
	  echo ''; \
925
	  echo '"""'; \
926
	  echo ''; \
927
	  echo '# pylint: disable-msg=C0301,C0324'; \
928
	  echo '# because this is autogenerated, we do not want'; \
929
	  echo '# style warnings' ; \
930
	  echo ''; \
931
	  echo "VCS_VERSION = '$$VCSVER'"; \
932
	} > $@
933

    
934
$(REPLACE_VARS_SED): Makefile
935
	set -e; \
936
	{ echo 's#@PREFIX@#$(prefix)#g'; \
937
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
938
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
939
	  echo 's#@BINDIR@#$(bindir)#g'; \
940
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
941
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
942
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
943
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
944
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
945
	  echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
946
	  echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
947
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
948
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
949
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
950
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
951
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
952
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
953
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
954
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
955
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
956
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
957
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
958
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
959
	} > $@
960

    
961
# Using deferred evaluation
962
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
963
daemons/ganeti-watcher: MODULE = ganeti.watcher
964
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
965
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
966

    
967
$(PYTHON_BOOTSTRAP): Makefile | $(all_dirfiles)
968
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
969
	set -e; \
970
	{ echo '#!/usr/bin/python'; \
971
	  echo '# This file is automatically generated, do not edit!'; \
972
	  echo "# Edit $(MODULE) instead."; \
973
	  echo; \
974
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
975
	  echo; \
976
	  echo '# pylint: disable-msg=C0103'; \
977
	  echo '# C0103: Invalid name'; \
978
	  echo; \
979
	  echo 'import sys'; \
980
	  echo 'import $(MODULE) as main'; \
981
	  echo; \
982
	  echo '# Temporarily alias commands until bash completion'; \
983
	  echo '# generator is changed'; \
984
	  echo 'if hasattr(main, "commands"):'; \
985
	  echo '  commands = main.commands # pylint: disable-msg=E1101'; \
986
	  echo 'if hasattr(main, "aliases"):'; \
987
	  echo '  aliases = main.aliases # pylint: disable-msg=E1101'; \
988
	  echo; \
989
	  echo 'if __name__ == "__main__":'; \
990
	  echo '  sys.exit(main.Main())'; \
991
	} > $@
992
	chmod u+x $@
993

    
994
# We need to create symlinks because "make distcheck" will not install Python
995
# files when building.
996
stamp-srclinks: Makefile | $(all_dirfiles)
997
	set -e; \
998
	for i in $(srclink_files); do \
999
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1000
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
1001
		fi; \
1002
	done
1003
	touch $@
1004

    
1005
.PHONY: ganeti
1006
ganeti:
1007
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1008

    
1009
.PHONY: check-dirs
1010
check-dirs: $(BUILT_SOURCES)
1011
	@set -e; \
1012
	find . -type d \( \( -name . \) -o \( \
1013
		-name .git -o \
1014
		-name autom4te.cache \
1015
		\) -prune -o -print \) | { \
1016
		error=; \
1017
		while read dir; do \
1018
			case "$$dir" in \
1019
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1020
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1021
			esac; \
1022
		done; \
1023
		for dir in $(DIRS); do \
1024
			if ! test -d "$$dir"; then \
1025
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
1026
				error=1; \
1027
			fi \
1028
		done; \
1029
		if test -n "$$error"; then exit 1; else exit 0; fi; \
1030
	}
1031

    
1032
check-local: check-dirs
1033
	$(CHECK_PYTHON_CODE) $(check_python_code)
1034
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1035
	$(CHECK_NEWS) < $(top_srcdir)/NEWS
1036
	expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1037
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1038
		echo "Incorrect version in README, expected $$expver"; \
1039
		exit 1; \
1040
	fi; \
1041
	if test "`sed -ne '4 p' $(top_srcdir)/doc/iallocator.rst`" != \
1042
					"Documents Ganeti version $$expver"; then \
1043
		echo "Incorrect version in iallocator.rst, expected $$expver"; \
1044
		exit 1; \
1045
	fi
1046

    
1047
.PHONY: hs-check
1048
hs-check: htools/test
1049
	@rm -f test.tix
1050
	./htools/test
1051

    
1052
.PHONY: lint
1053
lint: $(BUILT_SOURCES)
1054
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1055
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1056
	cd $(top_srcdir)/qa && \
1057
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1058
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1059

    
1060
.PHONY: hlint
1061
hlint: $(HS_BUILT_SRCS)
1062
	if tty -s; then C="-c"; else C=""; fi; \
1063
	hlint --report=doc/hs-lint.html $$C htools
1064

    
1065
# a dist hook rule for updating the vcs-version file; this is
1066
# hardcoded due to where it needs to build the file...
1067
dist-hook:
1068
	$(MAKE) regen-vcs-version && \
1069
	rm -f $(top_distdir)/vcs-version && \
1070
	cp -p $(srcdir)/vcs-version $(top_distdir)
1071

    
1072
# a distcheck hook rule for catching revision control directories
1073
distcheck-hook:
1074
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1075
		echo "Found revision control files in final archive." 1>&2; \
1076
		exit 1; \
1077
	fi
1078
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1079
		echo "Found Python byte code in final archive." 1>&2; \
1080
		exit 1; \
1081
	fi
1082
	if find $(top_distdir) -name '*~' | grep .; then \
1083
		echo "Found backup files in final archive." 1>&2; \
1084
		exit 1; \
1085
	fi
1086
# Empty files or directories should not be distributed. They can cause
1087
# unnecessary warnings for packagers. Directories used by automake during
1088
# distcheck must be excluded.
1089
	if find $(top_distdir) -empty -and -not \( \
1090
			-path $(top_distdir)/_build -or \
1091
			-path $(top_distdir)/_inst \) | grep .; then \
1092
		echo "Found empty files or directories in final archive." 1>&2; \
1093
		exit 1; \
1094
	fi
1095
	if test -n "$(BUILD_RELEASE)" && \
1096
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
1097
		echo "Found unreleased version in NEWS." >&2; \
1098
		exit 1; \
1099
	fi
1100

    
1101
# When building a release, stricter checks should be used
1102
distcheck-release dist-release: export BUILD_RELEASE = 1
1103
distcheck-release: distcheck
1104

    
1105
dist-release: dist
1106
	set -e; \
1107
	for i in $(DIST_ARCHIVES); do \
1108
		echo -n "Checking $$i ... "; \
1109
		autotools/check-tar < $$i; \
1110
		echo OK; \
1111
	done
1112

    
1113
install-exec-local:
1114
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1115
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1116
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1117

    
1118
# To avoid conflicts between directory names and other targets, a file inside
1119
# the directory is used to ensure its existence.
1120
%.dir:
1121
	@mkdir_p@ $* && touch $@
1122

    
1123
.PHONY: apidoc
1124
if WANT_HTOOLSAPIDOC
1125
apidoc: py-apidoc hs-apidoc
1126
else
1127
apidoc: py-apidoc
1128
endif
1129

    
1130
.PHONY: py-apidoc
1131
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
1132
	$(RUN_IN_TEMPDIR) epydoc -v \
1133
		--conf $(CURDIR)/epydoc.conf \
1134
		--output $(CURDIR)/$(APIDOC_PY_DIR)
1135

    
1136
.PHONY: hs-apidoc
1137
hs-apidoc: $(HS_BUILT_SRCS)
1138
	@test -n "$(HSCOLOUR)" || \
1139
	    { echo 'HsColour' not found during configure; exit 1; }
1140
	@test -n "$(HADDOCK)" || \
1141
	    { echo 'haddock' not found during configure; exit 1; }
1142
	rm -rf $(APIDOC_HS_DIR)/*
1143
	@mkdir_p@ $(APIDOC_HS_DIR)/Ganeti/HTools/Program
1144
	$(HSCOLOUR) -print-css > $(APIDOC_HS_DIR)/Ganeti/hscolour.css
1145
	ln -s ../hscolour.css $(APIDOC_HS_DIR)/Ganeti/HTools/hscolour.css
1146
	set -e ; \
1147
	cd htools; \
1148
	if [ "$(HTOOLS_NOCURL)" ]; \
1149
	then OPTGHC="--optghc=$(HTOOLS_NOCURL)"; \
1150
	else OPTGHC=""; \
1151
	fi; \
1152
	if [ "$(HTOOLS_PARALLEL3)" ]; \
1153
	then OPTGHC="$$OPTGHC --optghc=$(HTOOLS_PARALLEL3)"; \
1154
	fi; \
1155
	RELSRCS="$(HS_LIB_SRCS:htools/%=%)  $(HS_BUILT_SRCS:htools/%=%)"; \
1156
	for file in $$RELSRCS; do \
1157
		hfile=`echo $$file|sed 's/\\.hs$$//'`.html; \
1158
		$(HSCOLOUR) -css -anchor $$file > ../$(APIDOC_HS_DIR)/$$hfile ; \
1159
	done ; \
1160
	$(HADDOCK) --odir ../$(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1161
		-t ganeti-htools -p haddock-prologue \
1162
		--source-module="%{MODULE/.//}.html" \
1163
		--source-entity="%{MODULE/.//}.html#%{NAME}" \
1164
		$$OPTGHC \
1165
		$(filter-out Ganeti/HTools/ExtLoader.hs,$(HS_LIB_SRCS:htools/%=%))
1166

    
1167
.PHONY: TAGS
1168
TAGS: $(BUILT_SOURCES)
1169
	rm -f TAGS
1170
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1171
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1172
	  -path './qa/*.py' | \
1173
	  etags -l python -
1174

    
1175
.PHONY: coverage
1176
if WANT_HTOOLS
1177
coverage: py-coverage hs-coverage
1178
else
1179
coverage: py-coverage
1180
endif
1181

    
1182
.PHONY: py-coverage
1183
py-coverage: $(BUILT_SOURCES) $(python_tests)
1184
	set -e; \
1185
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1186
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1187
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1188
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
1189
	$(python_tests)
1190

    
1191
.PHONY: hs-coverage
1192
hs-coverage: $(haskell_tests)
1193
	cd htools && rm -f *.tix *.mix && ./test
1194
	@mkdir_p@ $(COVERAGE_HS_DIR)
1195
	hpc markup --destdir=$(COVERAGE_HS_DIR) htools/test $(HPCEXCL)
1196
	hpc report htools/test $(HPCEXCL)
1197
	ln -sf hpc_index.html $(COVERAGE_HS_DIR)/index.html
1198

    
1199
# Special "kind-of-QA" target for htools, needs special setup (all
1200
# tools compiled with -fhpc)
1201
.PHONY: live-test
1202
live-test: all
1203
	set -e ; \
1204
	cd htools; \
1205
	rm -f .hpc; ln -s ../.hpc .hpc; \
1206
	rm -f *.tix *.mix; \
1207
	./live-test.sh; \
1208
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:htools/%=%)) \
1209
	  --output=live-test.tix ; \
1210
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1211
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1212
		--srcdir=.. $(HPCEXCL) ; \
1213
	hpc report --srcdir=.. live-test $(HPCEXCL)
1214

    
1215
commit-check: distcheck lint apidoc
1216

    
1217
-include ./Makefile.local
1218

    
1219
# vim: set noet :