Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 62e0e880

History | View | Annotate | Download (18.4 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/ht.py \
119
	lib/jqueue.py \
120
	lib/jstore.py \
121
	lib/locking.py \
122
	lib/luxi.py \
123
	lib/mcpu.py \
124
	lib/netutils.py \
125
	lib/objects.py \
126
	lib/opcodes.py \
127
	lib/rpc.py \
128
	lib/runtime.py \
129
	lib/serializer.py \
130
	lib/ssconf.py \
131
	lib/ssh.py \
132
	lib/storage.py \
133
	lib/utils.py \
134
	lib/uidpool.py \
135
	lib/workerpool.py
136

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

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

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

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

    
166
masterd_PYTHON = \
167
	lib/masterd/__init__.py \
168
	lib/masterd/instance.py
169

    
170
impexpd_PYTHON = \
171
	lib/impexpd/__init__.py
172

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

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

    
205
doc/html: doc/html/.stamp
206

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

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

    
223
docdot = \
224
	doc/arch-2.0.dot \
225
	doc/design-2.1-lock-acquire.dot \
226
	doc/design-2.1-lock-release.dot
227

    
228
docpng = $(patsubst %.dot,%.png,$(docdot))
229

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

    
242
gnt_scripts = \
243
	scripts/gnt-backup \
244
	scripts/gnt-cluster \
245
	scripts/gnt-debug \
246
	scripts/gnt-instance \
247
	scripts/gnt-job \
248
	scripts/gnt-node \
249
	scripts/gnt-os
250

    
251
dist_sbin_SCRIPTS = \
252
	daemons/ganeti-noded \
253
	daemons/ganeti-watcher \
254
	daemons/ganeti-masterd \
255
	daemons/ganeti-confd \
256
	daemons/ganeti-rapi \
257
	$(gnt_scripts)
258

    
259
nodist_sbin_SCRIPTS = \
260
	daemons/ganeti-cleaner
261

    
262
dist_tools_SCRIPTS = \
263
	tools/burnin \
264
	tools/cfgshell \
265
	tools/cfgupgrade \
266
	tools/cfgupgrade12 \
267
	tools/cluster-merge \
268
	tools/lvmstrap \
269
	tools/move-instance \
270
	tools/setup-ssh \
271
	tools/sanitize-config
272

    
273
pkglib_python_scripts = \
274
	daemons/import-export \
275
	tools/check-cert-expired
276

    
277
pkglib_SCRIPTS = \
278
	daemons/daemon-util \
279
	daemons/ensure-dirs \
280
	$(pkglib_python_scripts)
281

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

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

    
351
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
352
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
353
maninput = \
354
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
355
	$(patsubst %.html,%.html.in,$(manhtml))
356

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

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

    
409
dist_TESTS = \
410
	test/check-cert-expired_unittest.bash \
411
	test/daemon-util_unittest.bash \
412
	test/ganeti-cleaner_unittest.bash \
413
	test/import-export_unittest.bash \
414
	$(python_tests)
415

    
416
nodist_TESTS =
417

    
418
TESTS = $(dist_TESTS) $(nodist_TESTS)
419

    
420
# Environment for all tests
421
PLAIN_TESTS_ENVIRONMENT = \
422
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
423

    
424
# Environment for tests run by automake
425
TESTS_ENVIRONMENT = \
426
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
427

    
428
all_python_code = \
429
	$(dist_sbin_SCRIPTS) \
430
	$(dist_tools_SCRIPTS) \
431
	$(pkglib_python_scripts) \
432
	$(python_tests) \
433
	$(pkgpython_PYTHON) \
434
	$(hypervisor_PYTHON) \
435
	$(rapi_PYTHON) \
436
	$(http_PYTHON) \
437
	$(confd_PYTHON) \
438
	$(masterd_PYTHON) \
439
	$(impexpd_PYTHON) \
440
	$(noinst_PYTHON)
441

    
442
srclink_files = \
443
	man/footer.sgml \
444
	test/check-cert-expired_unittest.bash \
445
	test/daemon-util_unittest.bash \
446
	test/ganeti-cleaner_unittest.bash \
447
	test/import-export_unittest.bash \
448
	$(all_python_code)
449

    
450
check_python_code = \
451
	$(BUILD_BASH_COMPLETION) \
452
	$(all_python_code)
453

    
454
lint_python_code = \
455
	ganeti \
456
	$(dist_sbin_SCRIPTS) \
457
	$(dist_tools_SCRIPTS) \
458
	$(pkglib_python_scripts) \
459
	$(BUILD_BASH_COMPLETION)
460

    
461
test/daemon-util_unittest.bash: daemons/daemon-util
462

    
463
test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
464

    
465
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
466
	sed -f $(REPLACE_VARS_SED) < $< > $@
467
	chmod u+x $@
468

    
469
daemons/%: daemons/%.in \
470
		$(REPLACE_VARS_SED)
471
	sed -f $(REPLACE_VARS_SED) < $< > $@
472
	chmod +x $@
473

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

    
478
doc/examples/hooks/%: doc/examples/hooks/%.in \
479
		$(REPLACE_VARS_SED)
480
	sed -f $(REPLACE_VARS_SED) < $< > $@
481

    
482
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
483
	lib/cli.py $(gnt_scripts) tools/burnin
484
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
485

    
486
doc/%.png: doc/%.dot
487
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
488
	$(DOT) -Tpng -o $@ $<
489

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

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

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

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

    
507
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
508
	sed -f $(REPLACE_VARS_SED) < $< > $@
509

    
510
vcs-version:
511
	if test -d .git; then \
512
	  git describe > $@; \
513
	elif test ! -f $@ ; then \
514
	  echo "Cannot auto-generate $@ file"; exit 1; \
515
	fi
516

    
517
.PHONY: regen-vcs-version
518
regen-vcs-version:
519
	set -e; \
520
	cd $(srcdir); \
521
	if test -d .git; then \
522
	  rm -f vcs-version; \
523
	  $(MAKE) vcs-version; \
524
	fi
525

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

    
582
$(REPLACE_VARS_SED): Makefile
583
	set -e; \
584
	{ echo 's#@PREFIX@#$(prefix)#g'; \
585
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
586
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
587
	  echo 's#@BINDIR@#$(bindir)#g'; \
588
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
589
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
590
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
591
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
592
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
593
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
594
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
595
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
596
	  echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
597
	  echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
598
	  echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
599
	  echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
600
	  echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
601
	  echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
602
	  echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
603
	  echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
604
	  echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
605
	} > $@
606

    
607
# We need to create symlinks because "make distcheck" will not install Python
608
# files when building.
609
stamp-srclinks: Makefile stamp-directories
610
	set -e; \
611
	for i in $(srclink_files); do \
612
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
613
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
614
		fi; \
615
	done
616
	touch $@
617

    
618
.PHONY: ganeti
619
ganeti:
620
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
621

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

    
645
check-local: check-dirs
646
	$(CHECK_PYTHON_CODE) $(check_python_code)
647

    
648
.PHONY: lint
649
lint: ganeti $(BUILT_SOURCES)
650
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
651
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
652

    
653
# a dist hook rule for updating the vcs-version file; this is
654
# hardcoded due to where it needs to build the file...
655
dist-hook:
656
	$(MAKE) regen-vcs-version && \
657
	rm -f $(top_distdir)/vcs-version && \
658
	cp -p $(srcdir)/vcs-version $(top_distdir)
659

    
660
# a distcheck hook rule for catching revision control directories
661
distcheck-hook:
662
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
663
		echo "Found revision control files in final archive." 1>&2; \
664
		exit 1; \
665
	fi
666
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
667
		echo "Found Python byte code in final archive." 1>&2; \
668
		exit 1; \
669
	fi
670
	if find $(top_distdir) -name '*~' | grep .; then \
671
		echo "Found backup files in final archive." 1>&2; \
672
		exit 1; \
673
	fi
674

    
675
install-exec-local:
676
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
677
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
678
	  "$(DESTDIR)${localstatedir}/run/ganeti"
679

    
680
stamp-directories: Makefile
681
	@mkdir_p@ $(DIRS)
682
	touch $@
683

    
684
.PHONY: apidoc
685
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
686
	test -e doc/api || mkdir doc/api
687
	$(RUN_IN_TEMPDIR) epydoc -v \
688
		--conf $(CURDIR)/epydoc.conf \
689
		--output $(CURDIR)/doc/api
690

    
691
.PHONY: TAGS
692
TAGS: $(BUILT_SOURCES)
693
	rm -f TAGS
694
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
695
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
696
	  -path './qa/*.py' | \
697
	  etags -l python -
698

    
699
.PHONY: coverage
700
coverage: $(BUILT_SOURCES) $(python_tests)
701
	set -e; \
702
	mkdir -p doc/coverage; \
703
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
704
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
705
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
706
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
707
	$(python_tests)
708

    
709
commit-check: distcheck lint apidoc
710

    
711
-include ./Makefile.local
712

    
713
# vim: set noet :