Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 407339d0

History | View | Annotate | Download (11.5 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-cleaner.8 \
239
	man/ganeti-masterd.8 \
240
	man/ganeti-noded.8 \
241
	man/ganeti-os-interface.7 \
242
	man/ganeti-rapi.8 \
243
	man/ganeti-watcher.8 \
244
	man/gnt-backup.8 \
245
	man/gnt-cluster.8 \
246
	man/gnt-debug.8 \
247
	man/gnt-instance.8 \
248
	man/gnt-job.8 \
249
	man/gnt-node.8 \
250
	man/gnt-os.8
251

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

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

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

    
284
nodist_TESTS =
285

    
286
TESTS = $(dist_TESTS) $(nodist_TESTS)
287

    
288
TESTS_ENVIRONMENT = \
289
	PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) \
290
	$(RUN_IN_TEMPDIR) $(PYTHON)
291

    
292
all_python_code = \
293
	$(dist_sbin_SCRIPTS) \
294
	$(dist_tools_SCRIPTS) \
295
	$(dist_TESTS) \
296
	$(pkgpython_PYTHON) \
297
	$(hypervisor_PYTHON) \
298
	$(rapi_PYTHON) \
299
	$(http_PYTHON) \
300
	$(confd_PYTHON) \
301
	$(noinst_PYTHON)
302

    
303
srclink_files = \
304
	man/footer.sgml \
305
	$(all_python_code)
306

    
307
check_python_code = \
308
	$(all_python_code)
309

    
310
all-local: stamp-directories devel/upload \
311
	doc/examples/bash_completion \
312
	doc/examples/ganeti.initd doc/examples/ganeti.cron \
313
	doc/examples/hooks/ipsec
314

    
315
devel/upload: devel/upload.in stamp-directories $(REPLACE_VARS_SED)
316
	sed -f $(REPLACE_VARS_SED) < $< > $@
317
	chmod u+x $@
318

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

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

    
328
doc/examples/hooks/%: doc/examples/hooks/%.in stamp-directories \
329
		$(REPLACE_VARS_SED)
330
	sed -f $(REPLACE_VARS_SED) < $< > $@
331

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

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

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

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

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

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

    
354
man/%.html: man/%.html.in stamp-directories $(REPLACE_VARS_SED)
355
	sed -f $(REPLACE_VARS_SED) < $< > $@
356

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

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

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

    
419
.PHONY: ganeti
420
ganeti:
421
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
422

    
423
check-local:
424
	$(CHECK_PYTHON_CODE) $(check_python_code)
425

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

    
433
install-exec-local:
434
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
435
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
436
	  "$(DESTDIR)${localstatedir}/run/ganeti"
437

    
438
stamp-directories: Makefile
439
	@mkdir_p@ $(DIRS)
440
	touch $@
441

    
442
.PHONY: apidoc
443
apidoc: epydoc.conf $(RUN_IN_TEMPDIR)
444
	test -e doc/api || mkdir doc/api
445
	$(RUN_IN_TEMPDIR) epydoc -v \
446
		--conf $(CURDIR)/epydoc.conf \
447
		--output $(CURDIR)/doc/api
448

    
449
.PHONY: TAGS
450
TAGS:
451
	rm -f TAGS
452
	find . -path './lib/*.py' -o -path 'scripts/gnt-*' -o \
453
	  -path 'daemons/ganeti-*' -o -path 'tools/*' | \
454
	  etags -
455

    
456
# vim: set noet :