FileStorage: abort creating over an existing file
[ganeti-local] / Makefile.am
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_RAPI_RESOURCE_DOC = $(top_srcdir)/doc/build-rapi-resources-doc
15 REPLACE_VARS_SED = autotools/replace_vars.sed
16
17 hypervisordir = $(pkgpythondir)/hypervisor
18 httpdir = $(pkgpythondir)/http
19 rapidir = $(pkgpythondir)/rapi
20 toolsdir = $(pkglibdir)/tools
21 docdir = $(datadir)/doc/$(PACKAGE)
22
23 DIRS = \
24         autotools \
25         daemons \
26         devel \
27         doc \
28         doc/examples \
29         lib \
30         lib/http \
31         lib/hypervisor \
32         lib/rapi \
33         man \
34         qa \
35         scripts \
36         test \
37         test/data \
38         tools
39
40 CLEANFILES = \
41         autotools/replace_vars.sed \
42         devel/upload \
43         doc/*.html \
44         doc/*.in \
45         doc/*.pdf \
46         $(patsubst %.dot,%.png,$(docdot)) \
47         doc/rapi-resources.sgml \
48         doc/examples/ganeti.initd \
49         doc/examples/ganeti.cron \
50         lib/*.py[co] \
51         lib/http/*.py[co] \
52         lib/hypervisor/*.py[co] \
53         lib/rapi/*.py[co] \
54         man/*.[78] \
55         man/*.in \
56         qa/*.py[co] \
57         test/*.py[co] \
58         stamp-directories \
59         $(nodist_pkgpython_PYTHON)
60
61 nodist_pkgpython_PYTHON = \
62         lib/_autoconf.py
63
64 pkgpython_PYTHON = \
65         lib/__init__.py \
66         lib/backend.py \
67         lib/bdev.py \
68         lib/bootstrap.py \
69         lib/cli.py \
70         lib/cmdlib.py \
71         lib/config.py \
72         lib/constants.py \
73         lib/daemon.py \
74         lib/errors.py \
75         lib/jqueue.py \
76         lib/jstore.py \
77         lib/locking.py \
78         lib/luxi.py \
79         lib/mcpu.py \
80         lib/objects.py \
81         lib/opcodes.py \
82         lib/rpc.py \
83         lib/serializer.py \
84         lib/ssconf.py \
85         lib/ssh.py \
86         lib/utils.py \
87         lib/workerpool.py
88
89 hypervisor_PYTHON = \
90         lib/hypervisor/__init__.py \
91         lib/hypervisor/hv_base.py \
92         lib/hypervisor/hv_fake.py \
93         lib/hypervisor/hv_kvm.py \
94         lib/hypervisor/hv_xen.py
95
96 rapi_PYTHON = \
97         lib/rapi/__init__.py \
98         lib/rapi/baserlib.py \
99         lib/rapi/connector.py \
100         lib/rapi/rlib2.py
101
102 http_PYTHON = \
103         lib/http/__init__.py \
104         lib/http/auth.py \
105         lib/http/client.py \
106         lib/http/server.py
107
108
109 docsgml = \
110         doc/hooks.sgml \
111         doc/install.sgml \
112         doc/admin.sgml \
113         doc/rapi.sgml \
114         doc/iallocator.sgml
115
116 docrst = \
117         doc/design-2.0.rst \
118         doc/security.rst
119
120 docdot = \
121         doc/arch-2.0.dot
122
123 doc_DATA = \
124         $(patsubst %.rst,%.html,$(docrst)) \
125         $(patsubst %.sgml,%.html,$(docsgml)) \
126         $(patsubst %.sgml,%.pdf,$(docsgml))
127
128 dist_sbin_SCRIPTS = \
129         daemons/ganeti-noded \
130         daemons/ganeti-watcher \
131         daemons/ganeti-masterd \
132         daemons/ganeti-rapi \
133         scripts/gnt-backup \
134         scripts/gnt-cluster \
135         scripts/gnt-debug \
136         scripts/gnt-instance \
137         scripts/gnt-job \
138         scripts/gnt-node \
139         scripts/gnt-os
140
141 dist_tools_SCRIPTS = \
142         tools/burnin \
143         tools/cfgshell \
144         tools/cfgupgrade \
145         tools/lvmstrap
146
147 EXTRA_DIST = \
148         NEWS \
149         DEVNOTES \
150         autotools/docbook-wrapper \
151         devel/upload.in \
152         $(docrst) \
153         $(docdot) \
154         $(docsgml) \
155         doc/build-rapi-resources-doc \
156         doc/examples/ganeti.initd.in \
157         doc/examples/ganeti.cron.in \
158         doc/examples/dumb-allocator \
159         doc/locking.txt \
160         test/testutils.py \
161         test/mocks.py \
162         $(dist_TESTS) \
163         $(TEST_FILES) \
164         man/footer.sgml \
165         $(mansgml) \
166         qa/ganeti-qa.py \
167         qa/qa-sample.json \
168         qa/qa_cluster.py \
169         qa/qa_config.py \
170         qa/qa_daemon.py \
171         qa/qa_env.py \
172         qa/qa_error.py \
173         qa/qa_instance.py \
174         qa/qa_node.py \
175         qa/qa_os.py \
176         qa/qa_rapi.py \
177         qa/qa_tags.py \
178         qa/qa_utils.py
179
180 man_MANS = \
181         man/ganeti.7 \
182         man/ganeti-noded.8 \
183         man/ganeti-os-interface.7 \
184         man/ganeti-watcher.8 \
185         man/gnt-backup.8 \
186         man/gnt-cluster.8 \
187         man/gnt-instance.8 \
188         man/gnt-node.8 \
189         man/gnt-os.8
190
191 maninput = $(patsubst %.7,%.in,$(patsubst %.8,%.in,$(man_MANS)))
192 mansgml = $(patsubst %.in,%.sgml,$(maninput))
193
194 TEST_FILES = \
195         test/data/bdev-both.txt \
196         test/data/bdev-disk.txt \
197         test/data/bdev-net.txt \
198         test/data/proc_drbd8.txt
199
200 dist_TESTS = \
201         test/ganeti.bdev_unittest.py \
202         test/ganeti.cli_unittest.py \
203         test/ganeti.cmdlib_unittest.py \
204         test/ganeti.config_unittest.py \
205         test/ganeti.constants_unittest.py \
206         test/ganeti.hooks_unittest.py \
207         test/ganeti.http_unittest.py \
208         test/ganeti.locking_unittest.py \
209         test/ganeti.rapi.resources_unittest.py \
210         test/ganeti.serializer_unittest.py \
211         test/ganeti.ssh_unittest.py \
212         test/ganeti.utils_unittest.py \
213         test/ganeti.workerpool_unittest.py
214
215 nodist_TESTS =
216
217 TESTS = $(dist_TESTS) $(nodist_TESTS)
218
219 TESTS_ENVIRONMENT = PYTHONPATH=.:$(top_builddir)
220
221
222 all-local: stamp-directories lib/_autoconf.py devel/upload \
223         doc/examples/ganeti.initd doc/examples/ganeti.cron
224
225 devel/upload: devel/upload.in stamp-directories $(REPLACE_VARS_SED)
226         sed -f $(REPLACE_VARS_SED) < $< > $@
227         chmod u+x $@
228
229 doc/examples/ganeti.%: doc/examples/ganeti.%.in stamp-directories \
230                 $(REPLACE_VARS_SED)
231         sed -f $(REPLACE_VARS_SED) < $< > $@
232
233 doc/%.in: doc/%.sgml stamp-directories $(REPLACE_VARS_SED)
234         sed -f $(REPLACE_VARS_SED) < $< > $@
235
236 man/%.in: man/%.sgml stamp-directories $(REPLACE_VARS_SED)
237         sed -f $(REPLACE_VARS_SED) < $< > $@
238
239 doc/%.pdf: doc/%.in $(DOCBOOK_WRAPPER)
240         $(DOCBOOK_WRAPPER) "$(DOCBOOK2PDF)" $< $@
241
242 doc/%.html: doc/%.in $(DOCBOOK_WRAPPER)
243         $(DOCBOOK_WRAPPER) "$(DOCBOOK2HTML) --nochunks" $< $@
244
245 doc/%.html: doc/%.rst
246         $(RST2HTML) $< $@
247
248 doc/%.png: doc/%.dot
249         $(DOT) -Tpng -o $@ $<
250
251 doc/design-2.0.html: doc/design-2.0.rst doc/arch-2.0.png
252
253 doc/rapi.pdf doc/rapi.html doc/rapi.in: doc/rapi-resources.sgml
254
255 doc/rapi-resources.sgml: $(BUILD_RAPI_RESOURCE_DOC) lib/rapi/connector.py
256         PYTHONPATH=.:$(top_builddir) $(BUILD_RAPI_RESOURCE_DOC) > $@ || rm -f $@
257
258 man/%.7: man/%.in man/footer.sgml $(DOCBOOK_WRAPPER)
259         $(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $@
260
261 man/%.8: man/%.in man/footer.sgml $(DOCBOOK_WRAPPER)
262         $(DOCBOOK_WRAPPER) "$(DOCBOOK2MAN)" $< $@
263
264 man/footer.sgml $(TESTS): srclinks
265
266 $(TESTS) $(BUILD_RAPI_RESOURCE_DOC): ganeti lib/_autoconf.py
267
268 lib/_autoconf.py: Makefile stamp-directories
269         set -e; \
270         { echo '# This file is automatically generated, do not edit!'; \
271           echo '#'; \
272           echo ''; \
273           echo '"""Build-time configuration for Ganeti.'; \
274           echo '';\
275           echo 'This file is autogenerated by the build process.'; \
276           echo 'For any changes you need to re-run ./configure (and'; \
277           echo 'not edit by hand).'; \
278           echo ''; \
279           echo '"""'; \
280           echo ''; \
281           echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
282           echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
283           echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
284           echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
285           echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
286           echo "VERSION_FULL = '$(VERSION_FULL)'"; \
287           echo "LOCALSTATEDIR = '$(localstatedir)'"; \
288           echo "SYSCONFDIR = '$(sysconfdir)'"; \
289           echo "SSH_INITD_SCRIPT = '$(SSH_INITD_SCRIPT)'"; \
290           echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
291           echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
292           echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
293           echo "XEN_INITRD = '$(XEN_INITRD)'"; \
294           echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
295           echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
296           echo "KVM_PATH = '$(KVM_PATH)'"; \
297           echo "KVM_MIGRATION_PORT = '$(KVM_MIGRATION_PORT)'"; \
298           echo "SOCAT_PATH = '$(SOCAT_PATH)'"; \
299         } > $@
300
301 $(REPLACE_VARS_SED): Makefile stamp-directories
302         set -e; \
303         { echo 's#@PREFIX@#$(prefix)#g'; \
304           echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
305           echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
306           echo 's#@SBINDIR@#$(sbindir)#g'; \
307           echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
308           echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
309           echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
310           echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
311           echo '/@INCLUDE_RAPI_RESOURCES@/ {'; \
312           echo '  r $(abs_top_builddir)/doc/rapi-resources.sgml'; \
313           echo '  d'; \
314           echo '}'; \
315         } > $@
316
317 # We need to create symlinks because "make distcheck" will not install Python
318 # files when building.
319 #.PHONY: srclinks
320 srclinks: stamp-directories
321         set -e; \
322         for i in man/footer.sgml $(pkgpython_PYTHON) $(hypervisor_PYTHON) \
323                         $(rapi_PYTHON) $(http_PYTHON); do \
324                 if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
325                         $(LN_S) $(abs_top_srcdir)/$$i $$i; \
326                 fi; \
327         done
328
329 .PHONY: ganeti
330 ganeti:
331         cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
332
333 # a dist hook rule for catching revision control directories
334 distcheck-hook:
335         if find $(top_distdir) | grep -F -e '.svn' -e '.git'; then \
336                 echo "Found revision control files in final archive" 1>&2 ; \
337                 exit 1; \
338         fi
339
340 install-exec-local:
341         @mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
342           "$(DESTDIR)${localstatedir}/log/ganeti" \
343           "$(DESTDIR)${localstatedir}/run/ganeti"
344
345 stamp-directories: Makefile
346         @mkdir_p@ $(DIRS)
347         touch $@
348
349 .PHONY: apidoc
350 apidoc:
351         test -e doc/api || mkdir doc/api
352         TMPDIR=`mktemp -d ` && { \
353                 cp -r scripts daemons lib $$TMPDIR && \
354                 ( \
355                         CDIR=`pwd` && \
356                         cd $$TMPDIR && \
357                         mv lib ganeti && \
358                         epydoc -v --conf $$CDIR/epydoc.conf -o $$CDIR/doc/api \
359                 ) ; \
360                 rm -rf $$TMPDIR ; \
361         }
362
363 # vim: set noet :