Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 74554d66

History | View | Annotate | Download (11.3 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
REPLACE_VARS_SED = autotools/replace_vars.sed
18

    
19
hypervisordir = $(pkgpythondir)/hypervisor
20
httpdir = $(pkgpythondir)/http
21
confddir = $(pkgpythondir)/confd
22
rapidir = $(pkgpythondir)/rapi
23
toolsdir = $(pkglibdir)/tools
24
docdir = $(datadir)/doc/$(PACKAGE)
25

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

    
46
MAINTAINERCLEANFILES = \
47
	$(docpng) \
48
	$(maninput)
49

    
50
maintainer-clean-local:
51
	-rm -rf doc/api doc/build doc/html
52

    
53
CLEANFILES = \
54
	autotools/replace_vars.sed \
55
	daemons/ganeti-cleaner \
56
	devel/upload \
57
	doc/examples/bash_completion \
58
	doc/examples/ganeti.initd \
59
	doc/examples/ganeti.cron \
60
	doc/examples/hooks/ipsec \
61
	lib/*.py[co] \
62
	lib/build/*.py[co] \
63
	lib/http/*.py[co] \
64
	lib/hypervisor/*.py[co] \
65
	lib/rapi/*.py[co] \
66
	$(man_MANS) \
67
	$(manhtml) \
68
	qa/*.py[co] \
69
	test/*.py[co] \
70
	stamp-directories \
71
	$(nodist_pkgpython_PYTHON)
72

    
73
BUILT_SOURCES = \
74
	ganeti \
75
	srclinks \
76
	lib/_autoconf.py
77

    
78
nodist_pkgpython_PYTHON = \
79
	lib/_autoconf.py
80

    
81
noinst_PYTHON = \
82
	lib/build/__init__.py
83

    
84
pkgpython_PYTHON = \
85
	lib/__init__.py \
86
	lib/asyncnotifier.py \
87
	lib/backend.py \
88
	lib/bdev.py \
89
	lib/bootstrap.py \
90
	lib/cli.py \
91
	lib/cmdlib.py \
92
	lib/config.py \
93
	lib/constants.py \
94
	lib/daemon.py \
95
	lib/errors.py \
96
	lib/jqueue.py \
97
	lib/jstore.py \
98
	lib/locking.py \
99
	lib/luxi.py \
100
	lib/mcpu.py \
101
	lib/objects.py \
102
	lib/opcodes.py \
103
	lib/rpc.py \
104
	lib/serializer.py \
105
	lib/ssconf.py \
106
	lib/ssh.py \
107
	lib/storage.py \
108
	lib/utils.py \
109
	lib/workerpool.py
110

    
111
hypervisor_PYTHON = \
112
	lib/hypervisor/__init__.py \
113
	lib/hypervisor/hv_base.py \
114
	lib/hypervisor/hv_chroot.py \
115
	lib/hypervisor/hv_fake.py \
116
	lib/hypervisor/hv_kvm.py \
117
	lib/hypervisor/hv_xen.py
118

    
119
rapi_PYTHON = \
120
	lib/rapi/__init__.py \
121
	lib/rapi/baserlib.py \
122
	lib/rapi/connector.py \
123
	lib/rapi/rlib2.py
124

    
125
http_PYTHON = \
126
	lib/http/__init__.py \
127
	lib/http/auth.py \
128
	lib/http/client.py \
129
	lib/http/server.py
130

    
131
confd_PYTHON = \
132
	lib/confd/__init__.py \
133
	lib/confd/client.py \
134
	lib/confd/server.py \
135
	lib/confd/querylib.py
136

    
137
docrst = \
138
	doc/admin.rst \
139
	doc/design-2.0.rst \
140
	doc/design-2.1.rst \
141
	doc/devnotes.rst \
142
	doc/glossary.rst \
143
	doc/hooks.rst \
144
	doc/iallocator.rst \
145
	doc/index.rst \
146
	doc/install.rst \
147
	doc/locking.rst \
148
	doc/rapi.rst \
149
	doc/security.rst
150

    
151
doc/html: $(docrst) $(docpng) doc/conf.py configure.ac
152
	@test -n "$(SPHINX)" || \
153
	    { echo 'sphinx-build' not found during configure; exit 1; }
154
	mkdir -p doc/build/doctrees
155
	PYTHONPATH=.:$(top_builddir) sphinx-build -q -b html \
156
	    -d doc/build/doctrees \
157
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
158
	    -D release="$(PACKAGE_VERSION)" \
159
	    $(top_srcdir)/doc doc/html
160
	touch "$@"
161

    
162
docdot = \
163
	doc/arch-2.0.dot \
164
	doc/design-2.1-lock-acquire.dot \
165
	doc/design-2.1-lock-release.dot
166

    
167
docpng = $(patsubst %.dot,%.png,$(docdot))
168

    
169
noinst_DATA = $(manhtml) doc/html
170

    
171
gnt_scripts = \
172
	scripts/gnt-backup \
173
	scripts/gnt-cluster \
174
	scripts/gnt-debug \
175
	scripts/gnt-instance \
176
	scripts/gnt-job \
177
	scripts/gnt-node \
178
	scripts/gnt-os
179

    
180
dist_sbin_SCRIPTS = \
181
	daemons/ganeti-noded \
182
	daemons/ganeti-watcher \
183
	daemons/ganeti-masterd \
184
	daemons/ganeti-confd \
185
	daemons/ganeti-rapi \
186
	$(gnt_scripts)
187

    
188
nodist_sbin_SCRIPTS = \
189
	daemons/ganeti-cleaner
190

    
191
dist_tools_SCRIPTS = \
192
	tools/burnin \
193
	tools/cfgshell \
194
	tools/cfgupgrade \
195
	tools/lvmstrap
196

    
197
EXTRA_DIST = \
198
	$(MAINTAINERCLEANFILES) \
199
	NEWS \
200
	pylintrc \
201
	autotools/build-bash-completion \
202
	autotools/check-python-code \
203
	autotools/docbook-wrapper \
204
	autotools/run-in-tempdir \
205
	daemons/ganeti-cleaner.in \
206
	devel/upload.in \
207
	$(docdot) \
208
	$(docrst) \
209
	doc/conf.py \
210
	doc/html \
211
	doc/examples/ganeti.initd.in \
212
	doc/examples/ganeti.cron.in \
213
	doc/examples/dumb-allocator \
214
	doc/examples/hooks/ethers \
215
	doc/examples/hooks/ipsec.in \
216
	test/testutils.py \
217
	test/mocks.py \
218
	$(dist_TESTS) \
219
	$(TEST_FILES) \
220
	man/footer.sgml \
221
	$(mansgml) $(maninput) \
222
	qa/ganeti-qa.py \
223
	qa/qa-sample.json \
224
	qa/qa_cluster.py \
225
	qa/qa_config.py \
226
	qa/qa_daemon.py \
227
	qa/qa_env.py \
228
	qa/qa_error.py \
229
	qa/qa_instance.py \
230
	qa/qa_node.py \
231
	qa/qa_os.py \
232
	qa/qa_rapi.py \
233
	qa/qa_tags.py \
234
	qa/qa_utils.py
235

    
236
man_MANS = \
237
	man/ganeti.7 \
238
	man/ganeti-masterd.8 \
239
	man/ganeti-noded.8 \
240
	man/ganeti-os-interface.7 \
241
	man/ganeti-rapi.8 \
242
	man/ganeti-watcher.8 \
243
	man/gnt-backup.8 \
244
	man/gnt-cluster.8 \
245
	man/gnt-debug.8 \
246
	man/gnt-instance.8 \
247
	man/gnt-job.8 \
248
	man/gnt-node.8 \
249
	man/gnt-os.8
250

    
251
mansgml = $(patsubst %.7,%.sgml,$(patsubst %.8,%.sgml,$(man_MANS)))
252
manhtml = $(patsubst %.sgml,%.html,$(mansgml))
253
maninput = $(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) $(patsubst %.html,%.html.in,$(manhtml))
254

    
255
TEST_FILES = \
256
	test/data/bdev-both.txt \
257
	test/data/bdev-8.3-both.txt \
258
	test/data/bdev-disk.txt \
259
	test/data/bdev-net.txt \
260
	test/data/proc_drbd8.txt \
261
	test/data/proc_drbd83.txt
262

    
263
dist_TESTS = \
264
	test/ganeti.bdev_unittest.py \
265
	test/ganeti.cli_unittest.py \
266
	test/ganeti.cmdlib_unittest.py \
267
	test/ganeti.confd_client_unittest.py \
268
	test/ganeti.config_unittest.py \
269
	test/ganeti.constants_unittest.py \
270
	test/ganeti.hooks_unittest.py \
271
	test/ganeti.http_unittest.py \
272
	test/ganeti.locking_unittest.py \
273
	test/ganeti.objects_unittest.py \
274
	test/ganeti.rapi.resources_unittest.py \
275
	test/ganeti.serializer_unittest.py \
276
	test/ganeti.ssh_unittest.py \
277
	test/ganeti.utils_unittest.py \
278
	test/ganeti.workerpool_unittest.py \
279
	test/docs_unittest.py
280

    
281
nodist_TESTS =
282

    
283
TESTS = $(dist_TESTS) $(nodist_TESTS)
284

    
285
TESTS_ENVIRONMENT = \
286
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) \
287
	$(RUN_IN_TEMPDIR) $(PYTHON)
288

    
289
all_python_code = \
290
	$(dist_sbin_SCRIPTS) \
291
	$(dist_tools_SCRIPTS) \
292
	$(dist_TESTS) \
293
	$(pkgpython_PYTHON) \
294
	$(hypervisor_PYTHON) \
295
	$(rapi_PYTHON) \
296
	$(http_PYTHON) \
297
	$(confd_PYTHON) \
298
	$(noinst_PYTHON)
299

    
300
srclink_files = \
301
	man/footer.sgml \
302
	$(all_python_code)
303

    
304
check_python_code = \
305
	$(all_python_code)
306

    
307
all-local: stamp-directories devel/upload \
308
	doc/examples/bash_completion \
309
	doc/examples/ganeti.initd doc/examples/ganeti.cron \
310
	doc/examples/hooks/ipsec
311

    
312
devel/upload: devel/upload.in stamp-directories $(REPLACE_VARS_SED)
313
	sed -f $(REPLACE_VARS_SED) < $< > $@
314
	chmod u+x $@
315

    
316
daemons/ganeti-cleaner: daemons/ganeti-cleaner.in stamp-directories \
317
		$(REPLACE_VARS_SED)
318
	sed -f $(REPLACE_VARS_SED) < $< > $@
319
	chmod +x $@
320

    
321
doc/examples/%: doc/examples/%.in stamp-directories \
322
		$(REPLACE_VARS_SED)
323
	sed -f $(REPLACE_VARS_SED) < $< > $@
324

    
325
doc/examples/hooks/%: doc/examples/hooks/%.in stamp-directories \
326
		$(REPLACE_VARS_SED)
327
	sed -f $(REPLACE_VARS_SED) < $< > $@
328

    
329
doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
330
	lib/cli.py $(gnt_scripts) tools/burnin
331
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
332

    
333
doc/%.png: doc/%.dot
334
	@test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
335
	$(DOT) -Tpng -o $@ $<
336

    
337
man/%.7.in man/%.8.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
338
	@test -n "$(DOCBOOK2MAN)" || { echo 'docbook2man' not found during configure; exit 1; }
339
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $(notdir $(@:.in=)) $@
340

    
341
man/%.html.in: man/%.sgml man/footer.sgml $(DOCBOOK_WRAPPER)
342
	@test -n "$(DOCBOOK2HTML)" || { echo 'docbook2html' not found during configure; exit 1; }
343
	$(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $(notdir $(@:.in=)) $@
344

    
345
man/%.7: man/%.7.in stamp-directories $(REPLACE_VARS_SED)
346
	sed -f $(REPLACE_VARS_SED) < $< > $@
347

    
348
man/%.8: man/%.8.in stamp-directories $(REPLACE_VARS_SED)
349
	sed -f $(REPLACE_VARS_SED) < $< > $@
350

    
351
man/%.html: man/%.html.in stamp-directories $(REPLACE_VARS_SED)
352
	sed -f $(REPLACE_VARS_SED) < $< > $@
353

    
354
lib/_autoconf.py: Makefile stamp-directories
355
	set -e; \
356
	{ echo '# This file is automatically generated, do not edit!'; \
357
	  echo '#'; \
358
	  echo ''; \
359
	  echo '"""Build-time configuration for Ganeti.'; \
360
	  echo '';\
361
	  echo 'This file is autogenerated by the build process.'; \
362
	  echo 'For any changes you need to re-run ./configure (and'; \
363
	  echo 'not edit by hand).'; \
364
	  echo ''; \
365
	  echo '"""'; \
366
	  echo ''; \
367
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
368
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
369
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
370
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
371
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
372
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
373
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
374
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
375
	  echo "SSH_INITD_SCRIPT = '$(SSH_INITD_SCRIPT)'"; \
376
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
377
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
378
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
379
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
380
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
381
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
382
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
383
	  echo "KVM_MIGRATION_PORT = '$(KVM_MIGRATION_PORT)'"; \
384
	  echo "SOCAT_PATH = '$(SOCAT_PATH)'"; \
385
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
386
	  echo "TOOLSDIR = '$(toolsdir)'"; \
387
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
388
	} > $@
389

    
390
$(REPLACE_VARS_SED): Makefile stamp-directories
391
	set -e; \
392
	{ echo 's#@PREFIX@#$(prefix)#g'; \
393
	  echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
394
	  echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
395
	  echo 's#@BINDIR@#$(bindir)#g'; \
396
	  echo 's#@SBINDIR@#$(sbindir)#g'; \
397
	  echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
398
	  echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
399
	  echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
400
	  echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
401
	  echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
402
	} > $@
403

    
404
# We need to create symlinks because "make distcheck" will not install Python
405
# files when building.
406
srclinks: stamp-directories
407
	set -e; \
408
	for i in $(srclink_files); do \
409
		if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
410
			$(LN_S) $(abs_top_srcdir)/$$i $$i; \
411
		fi; \
412
	done
413

    
414
.PHONY: ganeti
415
ganeti:
416
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
417

    
418
check-local:
419
	$(CHECK_PYTHON_CODE) $(check_python_code)
420

    
421
# a dist hook rule for catching revision control directories
422
distcheck-hook:
423
	if find $(top_distdir) | grep -F -e '.svn' -e '.git'; then \
424
		echo "Found revision control files in final archive" 1>&2 ; \
425
		exit 1; \
426
	fi
427

    
428
install-exec-local:
429
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
430
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
431
	  "$(DESTDIR)${localstatedir}/run/ganeti"
432

    
433
stamp-directories: Makefile
434
	@mkdir_p@ $(DIRS)
435
	touch $@
436

    
437
.PHONY: apidoc
438
apidoc: epydoc.conf $(RUN_IN_TEMPDIR)
439
	test -e doc/api || mkdir doc/api
440
	$(RUN_IN_TEMPDIR) epydoc -v \
441
		--conf $(CURDIR)/epydoc.conf \
442
		--output $(CURDIR)/doc/api
443

    
444
.PHONY: TAGS
445
TAGS:
446
	rm -f TAGS
447
	find . -path './lib/*.py' -o -path 'scripts/gnt-*' -o \
448
	  -path 'daemons/ganeti-*' -o -path 'tools/*' | \
449
	  etags -
450

    
451
# vim: set noet :