Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 84a12e40

History | View | Annotate | Download (18 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
ACLOCAL_AMFLAGS = -I autotools
13
DOCBOOK_WRAPPER = $(top_srcdir)/autotools/docbook-wrapper
14
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
15
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
16
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
17
CHECK_MAN = $(top_srcdir)/autotools/check-man
18
REPLACE_VARS_SED = autotools/replace_vars.sed
19

    
20
hypervisordir = $(pkgpythondir)/hypervisor
21
httpdir = $(pkgpythondir)/http
22
masterddir = $(pkgpythondir)/masterd
23
confddir = $(pkgpythondir)/confd
24
rapidir = $(pkgpythondir)/rapi
25
impexpddir = $(pkgpythondir)/impexpd
26
toolsdir = $(pkglibdir)/tools
27
docdir = $(datadir)/doc/$(PACKAGE)
28

    
29
# Delete output file if an error occurred while building it
30
.DELETE_ON_ERROR:
31

    
32
DIRS = \
33
	autotools \
34
	daemons \
35
	devel \
36
	doc \
37
	doc/examples \
38
	doc/examples/hooks \
39
	doc/examples/gnt-debug \
40
	lib \
41
	lib/build \
42
	lib/confd \
43
	lib/http \
44
	lib/hypervisor \
45
	lib/impexpd \
46
	lib/masterd \
47
	lib/rapi \
48
	man \
49
	qa \
50
	scripts \
51
	test \
52
	test/data \
53
	tools
54

    
55
BUILDTIME_DIRS = \
56
	doc/api \
57
	doc/coverage \
58
	doc/html
59

    
60
DIRCHECK_EXCLUDE = \
61
	$(BUILDTIME_DIRS) \
62
	ganeti-[0-9]*.[0-9]*.[0-9]* \
63
	doc/html/_*
64

    
65
MAINTAINERCLEANFILES = \
66
	$(docpng) \
67
	$(maninput) \
68
	doc/install-quick.rst \
69
	doc/news.rst \
70
	vcs-version
71

    
72
maintainer-clean-local:
73
	rm -rf $(BUILDTIME_DIRS)
74

    
75
CLEANFILES = \
76
	$(addsuffix /*.py[co],$(DIRS)) \
77
	autotools/replace_vars.sed \
78
	daemons/daemon-util \
79
	daemons/ensure-dirs \
80
	daemons/ganeti-cleaner \
81
	devel/upload \
82
	doc/examples/bash_completion \
83
	doc/examples/ganeti.initd \
84
	doc/examples/ganeti.cron \
85
	doc/examples/gnt-config-backup \
86
	doc/examples/hooks/ipsec \
87
	$(man_MANS) \
88
	$(manhtml) \
89
	stamp-directories \
90
	stamp-srclinks \
91
	$(nodist_pkgpython_PYTHON)
92

    
93
BUILT_SOURCES = \
94
	ganeti \
95
	stamp-srclinks \
96
	stamp-directories \
97
	lib/_autoconf.py
98

    
99
nodist_pkgpython_PYTHON = \
100
	lib/_autoconf.py
101

    
102
noinst_PYTHON = \
103
	lib/build/__init__.py
104

    
105
pkgpython_PYTHON = \
106
	lib/__init__.py \
107
	lib/asyncnotifier.py \
108
	lib/backend.py \
109
	lib/bdev.py \
110
	lib/bootstrap.py \
111
	lib/cli.py \
112
	lib/cmdlib.py \
113
	lib/compat.py \
114
	lib/config.py \
115
	lib/constants.py \
116
	lib/daemon.py \
117
	lib/errors.py \
118
	lib/jqueue.py \
119
	lib/jstore.py \
120
	lib/locking.py \
121
	lib/luxi.py \
122
	lib/mcpu.py \
123
	lib/netutils.py \
124
	lib/objects.py \
125
	lib/opcodes.py \
126
	lib/rpc.py \
127
	lib/serializer.py \
128
	lib/ssconf.py \
129
	lib/ssh.py \
130
	lib/storage.py \
131
	lib/utils.py \
132
	lib/uidpool.py \
133
	lib/workerpool.py
134

    
135
hypervisor_PYTHON = \
136
	lib/hypervisor/__init__.py \
137
	lib/hypervisor/hv_base.py \
138
	lib/hypervisor/hv_chroot.py \
139
	lib/hypervisor/hv_fake.py \
140
	lib/hypervisor/hv_kvm.py \
141
	lib/hypervisor/hv_lxc.py \
142
	lib/hypervisor/hv_xen.py
143

    
144
rapi_PYTHON = \
145
	lib/rapi/__init__.py \
146
	lib/rapi/baserlib.py \
147
	lib/rapi/client.py \
148
	lib/rapi/client_utils.py \
149
	lib/rapi/connector.py \
150
	lib/rapi/rlib2.py
151

    
152
http_PYTHON = \
153
	lib/http/__init__.py \
154
	lib/http/auth.py \
155
	lib/http/client.py \
156
	lib/http/server.py
157

    
158
confd_PYTHON = \
159
	lib/confd/__init__.py \
160
	lib/confd/client.py \
161
	lib/confd/querylib.py \
162
	lib/confd/server.py
163

    
164
masterd_PYTHON = \
165
	lib/masterd/__init__.py \
166
	lib/masterd/instance.py
167

    
168
impexpd_PYTHON = \
169
	lib/impexpd/__init__.py
170

    
171
docrst = \
172
	doc/admin.rst \
173
	doc/design-2.0.rst \
174
	doc/design-2.1.rst \
175
	doc/design-2.2.rst \
176
	doc/cluster-merge.rst \
177
	doc/devnotes.rst \
178
	doc/glossary.rst \
179
	doc/hooks.rst \
180
	doc/iallocator.rst \
181
	doc/index.rst \
182
	doc/install-quick.rst \
183
	doc/install.rst \
184
	doc/locking.rst \
185
	doc/move-instance.rst \
186
	doc/news.rst \
187
	doc/rapi.rst \
188
	doc/security.rst \
189
	doc/walkthrough.rst
190

    
191
doc/html/.stamp: $(docrst) $(docpng) doc/conf.py configure.ac
192
	@test -n "$(SPHINX)" || \
193
	    { echo 'sphinx-build' not found during configure; exit 1; }
194
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
195
	    -d . \
196
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
197
	    -D release="$(PACKAGE_VERSION)" \
198
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
199
	rm -f doc/html/.buildinfo doc/html/objects.inv
200
	touch $@
201

    
202
doc/html: doc/html/.stamp
203

    
204
doc/news.rst: NEWS
205
	set -e; \
206
	{ echo '.. This file is automatically updated at build time from $<.'; \
207
	  echo '.. Do not edit.'; \
208
	  echo; \
209
	  cat $<; \
210
	} > $@
211

    
212
doc/install-quick.rst: INSTALL
213
	set -e; \
214
	{ echo '.. This file is automatically updated at build time from $<.'; \
215
	  echo '.. Do not edit.'; \
216
	  echo; \
217
	  cat $<; \
218
	} > $@
219

    
220
docdot = \
221
	doc/arch-2.0.dot \
222
	doc/design-2.1-lock-acquire.dot \
223
	doc/design-2.1-lock-release.dot
224

    
225
docpng = $(patsubst %.dot,%.png,$(docdot))
226

    
227
# Things to build but not to install (add it to EXTRA_DIST if it should be
228
# distributed)
229
noinst_DATA = \
230
	devel/upload \
231
	doc/html \
232
	doc/examples/bash_completion \
233
	doc/examples/ganeti.cron \
234
	doc/examples/ganeti.initd \
235
	doc/examples/gnt-config-backup \
236
	doc/examples/hooks/ipsec \
237
	$(manhtml)
238

    
239
gnt_scripts = \
240
	scripts/gnt-backup \
241
	scripts/gnt-cluster \
242
	scripts/gnt-debug \
243
	scripts/gnt-instance \
244
	scripts/gnt-job \
245
	scripts/gnt-node \
246
	scripts/gnt-os
247

    
248
dist_sbin_SCRIPTS = \
249
	daemons/ganeti-noded \
250
	daemons/ganeti-watcher \
251
	daemons/ganeti-masterd \
252
	daemons/ganeti-confd \
253
	daemons/ganeti-rapi \
254
	$(gnt_scripts)
255

    
256
nodist_sbin_SCRIPTS = \
257
	daemons/ganeti-cleaner
258

    
259
dist_tools_SCRIPTS = \
260
	tools/burnin \
261
	tools/cfgshell \
262
	tools/cfgupgrade \
263
	tools/cfgupgrade12 \
264
	tools/cluster-merge \
265
	tools/lvmstrap \
266
	tools/move-instance \
267
	tools/sanitize-config
268

    
269
pkglib_python_scripts = \
270
	daemons/import-export \
271
	tools/check-cert-expired
272

    
273
pkglib_SCRIPTS = \
274
	daemons/daemon-util \
275
	daemons/ensure-dirs \
276
	$(pkglib_python_scripts)
277

    
278
EXTRA_DIST = \
279
	NEWS \
280
	pylintrc \
281
	autotools/build-bash-completion \
282
	autotools/check-python-code \
283
	autotools/check-man \
284
	autotools/docbook-wrapper \
285
	autotools/gen-coverage \
286
	autotools/testrunner \
287
	$(RUN_IN_TEMPDIR) \
288
	daemons/daemon-util.in \
289
	daemons/ensure-dirs.in \
290
	daemons/ganeti-cleaner.in \
291
	$(pkglib_python_scripts) \
292
	devel/upload.in \
293
	$(docdot) \
294
	$(docpng) \
295
	$(docrst) \
296
	doc/conf.py \
297
	doc/html \
298
	doc/examples/ganeti.initd.in \
299
	doc/examples/ganeti.cron.in \
300
	doc/examples/gnt-config-backup.in \
301
	doc/examples/dumb-allocator \
302
	doc/examples/ganeti.default \
303
	doc/examples/ganeti.default-debug \
304
	doc/examples/hooks/ethers \
305
	doc/examples/hooks/ipsec.in \
306
	doc/examples/gnt-debug/README \
307
	doc/examples/gnt-debug/delay0.json \
308
	doc/examples/gnt-debug/delay50.json \
309
	test/testutils.py \
310
	test/mocks.py \
311
	$(dist_TESTS) \
312
	$(TEST_FILES) \
313
	man/footer.sgml \
314
	$(mansgml) \
315
	$(maninput) \
316
	qa/ganeti-qa.py \
317
	qa/qa-sample.json \
318
	qa/qa_cluster.py \
319
	qa/qa_config.py \
320
	qa/qa_daemon.py \
321
	qa/qa_env.py \
322
	qa/qa_error.py \
323
	qa/qa_instance.py \
324
	qa/qa_node.py \
325
	qa/qa_os.py \
326
	qa/qa_rapi.py \
327
	qa/qa_tags.py \
328
	qa/qa_utils.py
329

    
330
man_MANS = \
331
	man/ganeti.7 \
332
	man/ganeti-cleaner.8 \
333
	man/ganeti-confd.8 \
334
	man/ganeti-masterd.8 \
335
	man/ganeti-noded.8 \
336
	man/ganeti-os-interface.7 \
337
	man/ganeti-rapi.8 \
338
	man/ganeti-watcher.8 \
339
	man/gnt-backup.8 \
340
	man/gnt-cluster.8 \
341
	man/gnt-debug.8 \
342
	man/gnt-instance.8 \
343
	man/gnt-job.8 \
344
	man/gnt-node.8 \
345
	man/gnt-os.8
346

    
347
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
348
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
349
maninput = \
350
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
351
	$(patsubst %.html,%.html.in,$(manhtml))
352

    
353
TEST_FILES = \
354
	test/data/bdev-drbd-8.0.txt \
355
	test/data/bdev-drbd-8.3.txt \
356
	test/data/bdev-drbd-disk.txt \
357
	test/data/bdev-drbd-net-ip4.txt \
358
	test/data/bdev-drbd-net-ip6.txt \
359
	test/data/cert1.pem \
360
	test/data/proc_drbd8.txt \
361
	test/data/proc_drbd80-emptyline.txt \
362
	test/data/proc_drbd83.txt \
363
	test/data/sys_drbd_usermode_helper.txt \
364
	test/import-export_unittest-helper
365

    
366
python_tests = \
367
	test/ganeti.asyncnotifier_unittest.py \
368
	test/ganeti.backend_unittest.py \
369
	test/ganeti.bdev_unittest.py \
370
	test/ganeti.cli_unittest.py \
371
	test/ganeti.daemon_unittest.py \
372
	test/ganeti.cmdlib_unittest.py \
373
	test/ganeti.compat_unittest.py \
374
	test/ganeti.confd.client_unittest.py \
375
	test/ganeti.config_unittest.py \
376
	test/ganeti.constants_unittest.py \
377
	test/ganeti.errors_unittest.py \
378
	test/ganeti.hooks_unittest.py \
379
	test/ganeti.http_unittest.py \
380
	test/ganeti.hypervisor.hv_kvm_unittest.py \
381
	test/ganeti.impexpd_unittest.py \
382
	test/ganeti.jqueue_unittest.py \
383
	test/ganeti.locking_unittest.py \
384
	test/ganeti.luxi_unittest.py \
385
	test/ganeti.masterd.instance_unittest.py \
386
	test/ganeti.mcpu_unittest.py \
387
	test/ganeti.netutils_unittest.py \
388
	test/ganeti.objects_unittest.py \
389
	test/ganeti.opcodes_unittest.py \
390
	test/ganeti.rapi.client_unittest.py \
391
	test/ganeti.rapi.resources_unittest.py \
392
	test/ganeti.rapi.rlib2_unittest.py \
393
	test/ganeti.rpc_unittest.py \
394
	test/ganeti.serializer_unittest.py \
395
	test/ganeti.ssh_unittest.py \
396
	test/ganeti.uidpool_unittest.py \
397
	test/ganeti.utils_unittest.py \
398
	test/ganeti.utils_mlockall_unittest.py \
399
	test/ganeti.workerpool_unittest.py \
400
	test/cfgupgrade_unittest.py \
401
	test/docs_unittest.py \
402
	test/tempfile_fork_unittest.py
403

    
404
dist_TESTS = \
405
	test/check-cert-expired_unittest.bash \
406
	test/daemon-util_unittest.bash \
407
	test/ganeti-cleaner_unittest.bash \
408
	test/import-export_unittest.bash \
409
	$(python_tests)
410

    
411
nodist_TESTS =
412

    
413
TESTS = $(dist_TESTS) $(nodist_TESTS)
414

    
415
# Environment for all tests
416
PLAIN_TESTS_ENVIRONMENT = \
417
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
418

    
419
# Environment for tests run by automake
420
TESTS_ENVIRONMENT = \
421
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
422

    
423
all_python_code = \
424
	$(dist_sbin_SCRIPTS) \
425
	$(dist_tools_SCRIPTS) \
426
	$(pkglib_python_scripts) \
427
	$(python_tests) \
428
	$(pkgpython_PYTHON) \
429
	$(hypervisor_PYTHON) \
430
	$(rapi_PYTHON) \
431
	$(http_PYTHON) \
432
	$(confd_PYTHON) \
433
	$(masterd_PYTHON) \
434
	$(impexpd_PYTHON) \
435
	$(noinst_PYTHON)
436

    
437
srclink_files = \
438
	man/footer.sgml \
439
	test/check-cert-expired_unittest.bash \
440
	test/daemon-util_unittest.bash \
441
	test/ganeti-cleaner_unittest.bash \
442
	test/import-export_unittest.bash \
443
	$(all_python_code)
444

    
445
check_python_code = \
446
	$(BUILD_BASH_COMPLETION) \
447
	$(all_python_code)
448

    
449
lint_python_code = \
450
	ganeti \
451
	$(dist_sbin_SCRIPTS) \
452
	$(dist_tools_SCRIPTS) \
453
	$(pkglib_python_scripts) \
454
	$(BUILD_BASH_COMPLETION)
455

    
456
test/daemon-util_unittest.bash: daemons/daemon-util
457

    
458
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
459

    
460
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
461
	sed -f $(REPLACE_VARS_SED) < $< > $@
462
	chmod u+x $@
463

    
464
daemons/%: daemons/%.in \
465
		$(REPLACE_VARS_SED)
466
	sed -f $(REPLACE_VARS_SED) < $< > $@
467
	chmod +x $@
468

    
469
doc/examples/%: doc/examples/%.in \
470
		$(REPLACE_VARS_SED)
471
	sed -f $(REPLACE_VARS_SED) < $< > $@
472

    
473
doc/examples/hooks/%: doc/examples/hooks/%.in \
474
		$(REPLACE_VARS_SED)
475
	sed -f $(REPLACE_VARS_SED) < $< > $@
476

    
477
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
478
	lib/cli.py $(gnt_scripts) tools/burnin
479
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
480

    
481
doc/%.png: doc/%.dot
482
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
483
	$(DOT) -Tpng -o $@ $<
484

    
485
man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
486
	@test -n "$(DOCBOOK2MAN)" || \
487
	  { echo 'docbook2man' not found during configure; exit 1; }
488
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $(notdir $(@:.in=)) $@
489
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
490

    
491
man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
492
	@test -n "$(DOCBOOK2HTML)" || \
493
	  { echo 'docbook2html' not found during configure; exit 1; }
494
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
495

    
496
man/%.7: man/%.7.in $(REPLACE_VARS_SED)
497
	sed -f $(REPLACE_VARS_SED) < $< > $@
498

    
499
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
500
	sed -f $(REPLACE_VARS_SED) < $< > $@
501

    
502
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
503
	sed -f $(REPLACE_VARS_SED) < $< > $@
504

    
505
vcs-version:
506
	if test -d .git; then \
507
	  git describe > $@; \
508
	elif test ! -f $@ ; then \
509
	  echo "Cannot auto-generate $@ file"; exit 1; \
510
	fi
511

    
512
.PHONY: regen-vcs-version
513
regen-vcs-version:
514
	set -e; \
515
	cd $(srcdir); \
516
	if test -d .git; then \
517
	  rm -f vcs-version; \
518
	  $(MAKE) vcs-version; \
519
	fi
520

    
521
lib/_autoconf.py: Makefile stamp-directories vcs-version
522
	set -e; \
523
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
524
	{ echo '# This file is automatically generated, do not edit!'; \
525
	  echo '#'; \
526
	  echo ''; \
527
	  echo '"""Build-time configuration for Ganeti.'; \
528
	  echo '';\
529
	  echo 'This file is autogenerated by the build process.'; \
530
	  echo 'For any changes you need to re-run ./configure (and'; \
531
	  echo 'not edit by hand).'; \
532
	  echo ''; \
533
	  echo '"""'; \
534
	  echo ''; \
535
	  echo '# pylint: disable-msg=C0301,C0324'; \
536
	  echo '# because this is autogenerated, we do not want'; \
537
	  echo '# style warnings' ; \
538
	  echo ''; \
539
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
540
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
541
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
542
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
543
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
544
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
545
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
546
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
547
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
548
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
549
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
550
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
551
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
552
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
553
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
554
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
555
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
556
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
557
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
558
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
559
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
560
	  echo "TOOLSDIR = '$(toolsdir)'"; \
561
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
562
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
563
	  echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
564
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
565
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
566
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
567
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
568
	  echo "VCS_VERSION = '$$VCSVER'"; \
569
	} > $@
570

    
571
$(REPLACE_VARS_SED): Makefile
572
	set -e; \
573
	{ echo 's#@PREFIX@#$(prefix)#g'; \
574
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
575
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
576
	  echo 's#@BINDIR@#$(bindir)#g'; \
577
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
578
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
579
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
580
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
581
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
582
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
583
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
584
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
585
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
586
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
587
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
588
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
589
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
590
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
591
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
592
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
593
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
594
	} > $@
595

    
596
# We need to create symlinks because "make distcheck" will not install Python
597
# files when building.
598
stamp-srclinks: Makefile stamp-directories
599
	set -e; \
600
	for i in $(srclink_files); do \
601
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
602
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
603
		fi; \
604
	done
605
	touch $@
606

    
607
.PHONY: ganeti
608
ganeti:
609
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
610

    
611
.PHONY: check-dirs
612
check-dirs: $(BUILT_SOURCES)
613
	@set -e; \
614
	find . -type d \( \( -name . \) -o \( \
615
		-name .git -o \
616
		-name autom4te.cache \
617
		\) -prune -o -print \) | { \
618
		error=; \
619
		while read dir; do \
620
			case "$$dir" in \
621
				$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
622
				*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
623
			esac; \
624
		done; \
625
		for dir in $(DIRS); do \
626
			if ! test -d "$$dir"; then \
627
				echo "Directory $$dir listed in DIRS does not exist" >&2; \
628
				error=1; \
629
			fi \
630
		done; \
631
		if test -n "$$error"; then exit 1; else exit 0; fi; \
632
	}
633

    
634
check-local: check-dirs
635
	$(CHECK_PYTHON_CODE) $(check_python_code)
636

    
637
.PHONY: lint
638
lint: ganeti $(BUILT_SOURCES)
639
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
640
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
641

    
642
# a dist hook rule for updating the vcs-version file; this is
643
# hardcoded due to where it needs to build the file...
644
dist-hook:
645
	$(MAKE) regen-vcs-version && \
646
	rm -f $(top_distdir)/vcs-version && \
647
	cp -p $(srcdir)/vcs-version $(top_distdir)
648

    
649
# a distcheck hook rule for catching revision control directories
650
distcheck-hook:
651
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
652
		echo "Found revision control files in final archive." 1>&2; \
653
		exit 1; \
654
	fi
655
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
656
		echo "Found Python byte code in final archive." 1>&2; \
657
		exit 1; \
658
	fi
659
	if find $(top_distdir) -name '*~' | grep .; then \
660
		echo "Found backup files in final archive." 1>&2; \
661
		exit 1; \
662
	fi
663

    
664
install-exec-local:
665
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
666
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
667
	  "$(DESTDIR)${localstatedir}/run/ganeti"
668

    
669
stamp-directories: Makefile
670
	@mkdir_p@ $(DIRS)
671
	touch $@
672

    
673
.PHONY: apidoc
674
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
675
	test -e doc/api || mkdir doc/api
676
	$(RUN_IN_TEMPDIR) epydoc -v \
677
		--conf $(CURDIR)/epydoc.conf \
678
		--output $(CURDIR)/doc/api
679

    
680
.PHONY: TAGS
681
TAGS: $(BUILT_SOURCES)
682
	rm -f TAGS
683
	find . -path './lib/*.py' -o -path 'scripts/gnt-*' -o \
684
	  -path 'daemons/ganeti-*' -o -path 'tools/*' | \
685
	  etags -
686

    
687
.PHONY: coverage
688
coverage: $(BUILT_SOURCES) $(python_tests)
689
	set -e; \
690
	mkdir -p doc/coverage; \
691
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
692
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
693
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
694
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
695
	$(python_tests)
696

    
697
commit-check: distcheck lint apidoc
698

    
699
-include ./Makefile.local
700

    
701
# vim: set noet :