Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 05cd934d

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/setup-ssh \
268
	tools/sanitize-config
269

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

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

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

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

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

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

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

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

    
412
nodist_TESTS =
413

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
698
commit-check: distcheck lint apidoc
699

    
700
-include ./Makefile.local
701

    
702
# vim: set noet :