Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 571b34f8

History | View | Annotate | Download (14.2 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
confddir = $(pkgpythondir)/confd
23
rapidir = $(pkgpythondir)/rapi
24
toolsdir = $(pkglibdir)/tools
25
docdir = $(datadir)/doc/$(PACKAGE)
26

    
27
# Delete output file if an error occurred while building it
28
.DELETE_ON_ERROR:
29

    
30
DIRS = \
31
	autotools \
32
	daemons \
33
	devel \
34
	doc \
35
	doc/examples \
36
	doc/examples/hooks \
37
	lib \
38
	lib/build \
39
	lib/http \
40
	lib/hypervisor \
41
	lib/rapi \
42
	lib/confd \
43
	man \
44
	qa \
45
	scripts \
46
	test \
47
	test/data \
48
	tools
49

    
50
MAINTAINERCLEANFILES = \
51
	$(docpng) \
52
	$(maninput) \
53
	doc/install-quick.rst \
54
	doc/news.rst
55

    
56
maintainer-clean-local:
57
	rm -rf doc/api doc/html doc/coverage
58

    
59
CLEANFILES = \
60
	autotools/replace_vars.sed \
61
	daemons/daemon-util \
62
	daemons/ganeti-cleaner \
63
	devel/upload \
64
	doc/examples/bash_completion \
65
	doc/examples/ganeti.initd \
66
	doc/examples/ganeti.cron \
67
	doc/examples/gnt-config-backup \
68
	doc/examples/hooks/ipsec \
69
	lib/*.py[co] \
70
	lib/build/*.py[co] \
71
	lib/http/*.py[co] \
72
	lib/hypervisor/*.py[co] \
73
	lib/rapi/*.py[co] \
74
	$(man_MANS) \
75
	$(manhtml) \
76
	qa/*.py[co] \
77
	test/*.py[co] \
78
	stamp-directories \
79
	stamp-srclinks \
80
	$(nodist_pkgpython_PYTHON)
81

    
82
BUILT_SOURCES = \
83
	ganeti \
84
	stamp-srclinks \
85
	stamp-directories \
86
	lib/_autoconf.py
87

    
88
nodist_pkgpython_PYTHON = \
89
	lib/_autoconf.py
90

    
91
noinst_PYTHON = \
92
	lib/build/__init__.py
93

    
94
pkgpython_PYTHON = \
95
	lib/__init__.py \
96
	lib/asyncnotifier.py \
97
	lib/backend.py \
98
	lib/bdev.py \
99
	lib/bootstrap.py \
100
	lib/cli.py \
101
	lib/cmdlib.py \
102
	lib/config.py \
103
	lib/constants.py \
104
	lib/daemon.py \
105
	lib/errors.py \
106
	lib/jqueue.py \
107
	lib/jstore.py \
108
	lib/locking.py \
109
	lib/luxi.py \
110
	lib/mcpu.py \
111
	lib/objects.py \
112
	lib/opcodes.py \
113
	lib/rpc.py \
114
	lib/serializer.py \
115
	lib/ssconf.py \
116
	lib/ssh.py \
117
	lib/storage.py \
118
	lib/utils.py \
119
	lib/workerpool.py
120

    
121
hypervisor_PYTHON = \
122
	lib/hypervisor/__init__.py \
123
	lib/hypervisor/hv_base.py \
124
	lib/hypervisor/hv_chroot.py \
125
	lib/hypervisor/hv_fake.py \
126
	lib/hypervisor/hv_kvm.py \
127
	lib/hypervisor/hv_xen.py
128

    
129
rapi_PYTHON = \
130
	lib/rapi/__init__.py \
131
	lib/rapi/baserlib.py \
132
	lib/rapi/connector.py \
133
	lib/rapi/rlib2.py
134

    
135
http_PYTHON = \
136
	lib/http/__init__.py \
137
	lib/http/auth.py \
138
	lib/http/client.py \
139
	lib/http/server.py
140

    
141
confd_PYTHON = \
142
	lib/confd/__init__.py \
143
	lib/confd/client.py \
144
	lib/confd/server.py \
145
	lib/confd/querylib.py
146

    
147
docrst = \
148
	doc/admin.rst \
149
	doc/design-2.0.rst \
150
	doc/design-2.1.rst \
151
	doc/devnotes.rst \
152
	doc/glossary.rst \
153
	doc/hooks.rst \
154
	doc/iallocator.rst \
155
	doc/index.rst \
156
	doc/install-quick.rst \
157
	doc/install.rst \
158
	doc/locking.rst \
159
	doc/news.rst \
160
	doc/rapi.rst \
161
	doc/security.rst \
162
	doc/walkthrough.rst
163

    
164
doc/html/.stamp: $(docrst) $(docpng) doc/conf.py configure.ac
165
	@test -n "$(SPHINX)" || \
166
	    { echo 'sphinx-build' not found during configure; exit 1; }
167
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
168
	    -d . \
169
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
170
	    -D release="$(PACKAGE_VERSION)" \
171
	    $(abs_top_srcdir)/doc $(CURDIR)/doc/html
172
	rm -f doc/html/.buildinfo doc/html/objects.inv
173
	touch $@
174

    
175
doc/html: doc/html/.stamp
176

    
177
doc/news.rst: NEWS
178
	set -e; \
179
	{ echo '.. This file is automatically updated at build time from $<.'; \
180
	  echo '.. Do not edit.'; \
181
	  echo; \
182
	  cat $<; \
183
	} > $@
184

    
185
doc/install-quick.rst: INSTALL
186
	set -e; \
187
	{ echo '.. This file is automatically updated at build time from $<.'; \
188
	  echo '.. Do not edit.'; \
189
	  echo; \
190
	  cat $<; \
191
	} > $@
192

    
193
docdot = \
194
	doc/arch-2.0.dot \
195
	doc/design-2.1-lock-acquire.dot \
196
	doc/design-2.1-lock-release.dot
197

    
198
docpng = $(patsubst %.dot,%.png,$(docdot))
199

    
200
# Things to build but not to install (add it to EXTRA_DIST if it should be
201
# distributed)
202
noinst_DATA = \
203
	devel/upload \
204
	doc/html \
205
	doc/examples/bash_completion \
206
	doc/examples/ganeti.cron \
207
	doc/examples/ganeti.initd \
208
	doc/examples/gnt-config-backup \
209
	doc/examples/hooks/ipsec \
210
	$(manhtml)
211

    
212
gnt_scripts = \
213
	scripts/gnt-backup \
214
	scripts/gnt-cluster \
215
	scripts/gnt-debug \
216
	scripts/gnt-instance \
217
	scripts/gnt-job \
218
	scripts/gnt-node \
219
	scripts/gnt-os
220

    
221
dist_sbin_SCRIPTS = \
222
	daemons/ganeti-noded \
223
	daemons/ganeti-watcher \
224
	daemons/ganeti-masterd \
225
	daemons/ganeti-confd \
226
	daemons/ganeti-rapi \
227
	$(gnt_scripts)
228

    
229
nodist_sbin_SCRIPTS = \
230
	daemons/ganeti-cleaner
231

    
232
dist_tools_SCRIPTS = \
233
	tools/burnin \
234
	tools/cfgshell \
235
	tools/cfgupgrade \
236
	tools/cluster-merge \
237
	tools/lvmstrap
238

    
239
pkglib_SCRIPTS = \
240
	daemons/daemon-util
241

    
242
EXTRA_DIST = \
243
	NEWS \
244
	pylintrc \
245
	autotools/build-bash-completion \
246
	autotools/check-python-code \
247
	autotools/check-man \
248
	autotools/docbook-wrapper \
249
	autotools/gen-coverage \
250
	autotools/testrunner \
251
	$(RUN_IN_TEMPDIR) \
252
	daemons/daemon-util.in \
253
	daemons/ganeti-cleaner.in \
254
	devel/upload.in \
255
	$(docdot) \
256
	$(docpng) \
257
	$(docrst) \
258
	doc/conf.py \
259
	doc/html \
260
	doc/examples/ganeti.initd.in \
261
	doc/examples/ganeti.cron.in \
262
	doc/examples/gnt-config-backup.in \
263
	doc/examples/dumb-allocator \
264
	doc/examples/ganeti.default \
265
	doc/examples/ganeti.default-debug \
266
	doc/examples/hooks/ethers \
267
	doc/examples/hooks/ipsec.in \
268
	test/testutils.py \
269
	test/mocks.py \
270
	$(dist_TESTS) \
271
	$(TEST_FILES) \
272
	man/footer.sgml \
273
	$(mansgml) \
274
	$(maninput) \
275
	qa/ganeti-qa.py \
276
	qa/qa-sample.json \
277
	qa/qa_cluster.py \
278
	qa/qa_config.py \
279
	qa/qa_daemon.py \
280
	qa/qa_env.py \
281
	qa/qa_error.py \
282
	qa/qa_instance.py \
283
	qa/qa_node.py \
284
	qa/qa_os.py \
285
	qa/qa_rapi.py \
286
	qa/qa_tags.py \
287
	qa/qa_utils.py
288

    
289
man_MANS = \
290
	man/ganeti.7 \
291
	man/ganeti-cleaner.8 \
292
	man/ganeti-confd.8 \
293
	man/ganeti-masterd.8 \
294
	man/ganeti-noded.8 \
295
	man/ganeti-os-interface.7 \
296
	man/ganeti-rapi.8 \
297
	man/ganeti-watcher.8 \
298
	man/gnt-backup.8 \
299
	man/gnt-cluster.8 \
300
	man/gnt-debug.8 \
301
	man/gnt-instance.8 \
302
	man/gnt-job.8 \
303
	man/gnt-node.8 \
304
	man/gnt-os.8
305

    
306
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
307
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
308
maninput = \
309
	$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
310
	$(patsubst %.html,%.html.in,$(manhtml))
311

    
312
TEST_FILES = \
313
	test/data/bdev-both.txt \
314
	test/data/bdev-8.3-both.txt \
315
	test/data/bdev-disk.txt \
316
	test/data/bdev-net.txt \
317
	test/data/cert1.pem \
318
	test/data/proc_drbd8.txt \
319
	test/data/proc_drbd80-emptyline.txt \
320
	test/data/proc_drbd83.txt
321

    
322
python_tests = \
323
	test/ganeti.bdev_unittest.py \
324
	test/ganeti.cli_unittest.py \
325
	test/ganeti.cmdlib_unittest.py \
326
	test/ganeti.confd_client_unittest.py \
327
	test/ganeti.config_unittest.py \
328
	test/ganeti.constants_unittest.py \
329
	test/ganeti.errors_unittest.py \
330
	test/ganeti.hooks_unittest.py \
331
	test/ganeti.http_unittest.py \
332
	test/ganeti.locking_unittest.py \
333
	test/ganeti.mcpu_unittest.py \
334
	test/ganeti.objects_unittest.py \
335
	test/ganeti.opcodes_unittest.py \
336
	test/ganeti.rapi.resources_unittest.py \
337
	test/ganeti.serializer_unittest.py \
338
	test/ganeti.ssh_unittest.py \
339
	test/ganeti.utils_unittest.py \
340
	test/ganeti.workerpool_unittest.py \
341
	test/docs_unittest.py \
342
	test/tempfile_fork_unittest.py
343

    
344
dist_TESTS = \
345
	test/daemon-util_unittest.bash \
346
	$(python_tests)
347

    
348
nodist_TESTS =
349

    
350
TESTS = $(dist_TESTS) $(nodist_TESTS)
351

    
352
# Environment for all tests
353
PLAIN_TESTS_ENVIRONMENT = \
354
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
355

    
356
# Environment for tests run by automake
357
TESTS_ENVIRONMENT = \
358
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
359

    
360
all_python_code = \
361
	$(dist_sbin_SCRIPTS) \
362
	$(dist_tools_SCRIPTS) \
363
	$(python_tests) \
364
	$(pkgpython_PYTHON) \
365
	$(hypervisor_PYTHON) \
366
	$(rapi_PYTHON) \
367
	$(http_PYTHON) \
368
	$(confd_PYTHON) \
369
	$(noinst_PYTHON)
370

    
371
srclink_files = \
372
	man/footer.sgml \
373
	test/daemon-util_unittest.bash \
374
	$(all_python_code)
375

    
376
check_python_code = \
377
	$(BUILD_BASH_COMPLETION) \
378
	$(all_python_code)
379

    
380
lint_python_code = \
381
	ganeti \
382
	$(dist_sbin_SCRIPTS) \
383
	$(dist_tools_SCRIPTS) \
384
	$(BUILD_BASH_COMPLETION)
385

    
386
test/daemon-util_unittest.bash: daemons/daemon-util
387

    
388
devel/upload: devel/upload.in $(REPLACE_VARS_SED)
389
	sed -f $(REPLACE_VARS_SED) < $< > $@
390
	chmod u+x $@
391

    
392
daemons/%: daemons/%.in \
393
		$(REPLACE_VARS_SED)
394
	sed -f $(REPLACE_VARS_SED) < $< > $@
395
	chmod +x $@
396

    
397
doc/examples/%: doc/examples/%.in \
398
		$(REPLACE_VARS_SED)
399
	sed -f $(REPLACE_VARS_SED) < $< > $@
400

    
401
doc/examples/hooks/%: doc/examples/hooks/%.in \
402
		$(REPLACE_VARS_SED)
403
	sed -f $(REPLACE_VARS_SED) < $< > $@
404

    
405
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
406
	lib/cli.py $(gnt_scripts) tools/burnin
407
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
408

    
409
doc/%.png: doc/%.dot
410
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
411
	$(DOT) -Tpng -o $@ $<
412

    
413
man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
414
	@test -n "$(DOCBOOK2MAN)" || \
415
	  { echo 'docbook2man' not found during configure; exit 1; }
416
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $(notdir $(@:.in=)) $@
417

    
418
man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
419
	@test -n "$(DOCBOOK2HTML)" || \
420
	  { echo 'docbook2html' not found during configure; exit 1; }
421
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
422

    
423
man/%.7: man/%.7.in $(REPLACE_VARS_SED)
424
	sed -f $(REPLACE_VARS_SED) < $< > $@
425
	$(CHECK_MAN) $@
426

    
427
man/%.8: man/%.8.in $(REPLACE_VARS_SED)
428
	sed -f $(REPLACE_VARS_SED) < $< > $@
429
	$(CHECK_MAN) $@
430

    
431
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
432
	sed -f $(REPLACE_VARS_SED) < $< > $@
433

    
434
lib/_autoconf.py: Makefile stamp-directories
435
	set -e; \
436
	{ echo '# This file is automatically generated, do not edit!'; \
437
	  echo '#'; \
438
	  echo ''; \
439
	  echo '"""Build-time configuration for Ganeti.'; \
440
	  echo '';\
441
	  echo 'This file is autogenerated by the build process.'; \
442
	  echo 'For any changes you need to re-run ./configure (and'; \
443
	  echo 'not edit by hand).'; \
444
	  echo ''; \
445
	  echo '"""'; \
446
	  echo ''; \
447
	  echo '# pylint: disable-msg=C0301,C0324'; \
448
	  echo '# because this is autogenerated, we do not want'; \
449
	  echo '# style warnings' ; \
450
	  echo ''; \
451
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
452
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
453
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
454
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
455
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
456
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
457
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
458
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
459
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
460
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
461
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
462
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
463
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
464
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
465
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
466
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
467
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
468
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
469
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
470
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
471
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
472
	  echo "TOOLSDIR = '$(toolsdir)'"; \
473
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
474
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
475
	  echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
476
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
477
	} > $@
478

    
479
$(REPLACE_VARS_SED): Makefile
480
	set -e; \
481
	{ echo 's#@PREFIX@#$(prefix)#g'; \
482
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
483
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
484
	  echo 's#@BINDIR@#$(bindir)#g'; \
485
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
486
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
487
	  echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
488
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
489
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
490
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
491
	  echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
492
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
493
	} > $@
494

    
495
# We need to create symlinks because "make distcheck" will not install Python
496
# files when building.
497
stamp-srclinks: Makefile stamp-directories
498
	set -e; \
499
	for i in $(srclink_files); do \
500
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
501
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
502
		fi; \
503
	done
504
	touch $@
505

    
506
.PHONY: ganeti
507
ganeti:
508
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
509

    
510
check-local:
511
	$(CHECK_PYTHON_CODE) $(check_python_code)
512

    
513
.PHONY: lint
514
lint: ganeti $(BUILT_SOURCES)
515
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
516
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
517

    
518
# a dist hook rule for catching revision control directories
519
distcheck-hook:
520
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
521
		echo "Found revision control files in final archive." 1>&2; \
522
		exit 1; \
523
	fi
524
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
525
		echo "Found Python byte code in final archive." 1>&2; \
526
		exit 1; \
527
	fi
528
	if find $(top_distdir) -name '*~' | grep .; then \
529
		echo "Found backup files in final archive." 1>&2; \
530
		exit 1; \
531
	fi
532

    
533
install-exec-local:
534
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
535
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
536
	  "$(DESTDIR)${localstatedir}/run/ganeti"
537

    
538
stamp-directories: Makefile
539
	@mkdir_p@ $(DIRS)
540
	touch $@
541

    
542
.PHONY: apidoc
543
apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
544
	test -e doc/api || mkdir doc/api
545
	$(RUN_IN_TEMPDIR) epydoc -v \
546
		--conf $(CURDIR)/epydoc.conf \
547
		--output $(CURDIR)/doc/api
548

    
549
.PHONY: TAGS
550
TAGS: $(BUILT_SOURCES)
551
	rm -f TAGS
552
	find . -path './lib/*.py' -o -path 'scripts/gnt-*' -o \
553
	  -path 'daemons/ganeti-*' -o -path 'tools/*' | \
554
	  etags -
555

    
556
.PHONY: coverage
557
coverage: $(BUILT_SOURCES) $(python_tests)
558
	set -e; \
559
	mkdir -p doc/coverage; \
560
	COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
561
	TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
562
	HTML_COVERAGE=$(CURDIR)/doc/coverage \
563
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
564
	$(python_tests)
565

    
566
# vim: set noet :