Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 8a7738b9

History | View | Annotate | Download (73.4 kB)

1 e8230860 Michael Hanselmann
# Ganeti makefile
2 e8230860 Michael Hanselmann
# - Indent with tabs only.
3 e8230860 Michael Hanselmann
# - Keep files sorted; one line per file.
4 e8230860 Michael Hanselmann
# - Directories in lib/ must have their own *dir variable (see hypervisor).
5 e8230860 Michael Hanselmann
# - All directories must be listed DIRS.
6 0a7bed64 Michael Hanselmann
# - Use autogen.sh to generate Makefile.in and configure script.
7 e8230860 Michael Hanselmann
8 e8230860 Michael Hanselmann
# Automake doesn't export these variables before version 1.10.
9 e8230860 Michael Hanselmann
abs_top_builddir = @abs_top_builddir@
10 e8230860 Michael Hanselmann
abs_top_srcdir = @abs_top_srcdir@
11 e8230860 Michael Hanselmann
12 08366664 Michael Hanselmann
# Helper values for calling builtin functions
13 08366664 Michael Hanselmann
empty :=
14 08366664 Michael Hanselmann
space := $(empty) $(empty)
15 08366664 Michael Hanselmann
comma := ,
16 08366664 Michael Hanselmann
17 7ddd8e4c Iustin Pop
# Helper function to strip src/ and test/hs/ from a list
18 7ddd8e4c Iustin Pop
strip_hsroot = $(patsubst src/%,%,$(patsubst test/hs/%,%,$(1)))
19 7ddd8e4c Iustin Pop
20 a01dd3c6 Iustin Pop
# Use bash in order to be able to use pipefail
21 a01dd3c6 Iustin Pop
SHELL=/bin/bash
22 a01dd3c6 Iustin Pop
23 5f7d4181 Jose A. Lopes
# Enable colors in shelltest
24 5f7d4181 Jose A. Lopes
SHELLTESTARGS = "-c"
25 5f7d4181 Jose A. Lopes
26 6e06b36c Iustin Pop
ACLOCAL_AMFLAGS = -I autotools
27 4f3d5b76 Michael Hanselmann
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
28 b959138f Michael Hanselmann
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
29 eed5c5df Michael Hanselmann
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
30 5d3c30df Michael Hanselmann
CHECK_HEADER = $(top_srcdir)/autotools/check-header
31 c55cc346 Iustin Pop
CHECK_MAN_DASHES = $(top_srcdir)/autotools/check-man-dashes
32 58997abb Michael Hanselmann
CHECK_MAN_REFERENCES = $(top_srcdir)/autotools/check-man-references
33 73d0e218 Iustin Pop
CHECK_MAN_WARNINGS = $(top_srcdir)/autotools/check-man-warnings
34 96602be4 Michael Hanselmann
CHECK_VERSION = $(top_srcdir)/autotools/check-version
35 7385c51d Michael Hanselmann
CHECK_NEWS = $(top_srcdir)/autotools/check-news
36 f6cbcc06 Michael Hanselmann
CHECK_IMPORTS = $(top_srcdir)/autotools/check-imports
37 95eb4188 Michael Hanselmann
DOCPP = $(top_srcdir)/autotools/docpp
38 e8230860 Michael Hanselmann
REPLACE_VARS_SED = autotools/replace_vars.sed
39 2df8f530 Jose A. Lopes
PRINT_PY_CONSTANTS = $(top_srcdir)/autotools/print-py-constants
40 d5a2a550 Michael Hanselmann
BUILD_RPC = $(top_srcdir)/autotools/build-rpc
41 6e3bf290 Michael Hanselmann
SHELL_ENV_INIT = autotools/shell-env-init
42 e8230860 Michael Hanselmann
43 780060cb Klaus Aehlig
# starting as of Ganeti 2.10, all files are stored in two directories,
44 667e9959 Klaus Aehlig
# with only symbolic links added at other places.
45 780060cb Klaus Aehlig
#
46 780060cb Klaus Aehlig
# $(versiondir) contains most of Ganeti and all architecture-dependent files
47 780060cb Klaus Aehlig
# $(versionedsharedir) contains only architecture-independent files; all python
48 780060cb Klaus Aehlig
# executables need to go directly to $(versionedsharedir), as all ganeti python
49 780060cb Klaus Aehlig
# mdules are installed outside the usual python path, i.e., as private modules.
50 780060cb Klaus Aehlig
#
51 780060cb Klaus Aehlig
# $(defaultversiondir) and $(defaultversionedsharedir) are the corresponding
52 780060cb Klaus Aehlig
# directories for "the currently running" version of Ganeti. We never install
53 780060cb Klaus Aehlig
# there, but all symbolic links go there, rather than directory to $(versiondir)
54 780060cb Klaus Aehlig
# or $(versionedsharedir). Note that all links to $(default*dir) need to be stable;
55 780060cb Klaus Aehlig
# so, if some currently architecture-independent executable is replaced by an
56 780060cb Klaus Aehlig
# architecture-dependent one (and hence has to go under $(versiondir)), add a link
57 780060cb Klaus Aehlig
# under $(versionedsharedir) but do not change the external links.
58 838d26ef Klaus Aehlig
if USE_VERSION_FULL
59 a3f895e6 Klaus Aehlig
DIRVERSION=$(VERSION_FULL)
60 838d26ef Klaus Aehlig
else
61 838d26ef Klaus Aehlig
DIRVERSION=$(VERSION_MAJOR).$(VERSION_MINOR)
62 838d26ef Klaus Aehlig
endif
63 838d26ef Klaus Aehlig
versiondir = $(libdir)/ganeti/$(DIRVERSION)
64 eb875ff1 Klaus Aehlig
defaultversiondir = $(libdir)/ganeti/default
65 838d26ef Klaus Aehlig
versionedsharedir = $(prefix)/share/ganeti/$(DIRVERSION)
66 eb875ff1 Klaus Aehlig
defaultversionedsharedir = $(prefix)/share/ganeti/default
67 eb875ff1 Klaus Aehlig
68 22c5390d Iustin Pop
# Note: these are automake-specific variables, and must be named after
69 22c5390d Iustin Pop
# the directory + 'dir' suffix
70 667e9959 Klaus Aehlig
pkglibdir = $(versiondir)$(libdir)/ganeti
71 667e9959 Klaus Aehlig
myexeclibdir = $(pkglibdir)
72 ae6a0a7c Jose A. Lopes
bindir = $(versiondir)/$(BINDIR)
73 ae6a0a7c Jose A. Lopes
sbindir = $(versiondir)$(SBINDIR)
74 ae6a0a7c Jose A. Lopes
mandir = $(versionedsharedir)/root$(MANDIR)
75 780060cb Klaus Aehlig
pkgpythondir = $(versionedsharedir)/ganeti
76 780060cb Klaus Aehlig
gntpythondir = $(versionedsharedir)
77 780060cb Klaus Aehlig
pkgpython_bindir = $(versionedsharedir)
78 780060cb Klaus Aehlig
gnt_python_sbindir = $(versionedsharedir)
79 780060cb Klaus Aehlig
tools_pythondir = $(versionedsharedir)
80 667e9959 Klaus Aehlig
81 2d48a3a2 Michael Hanselmann
clientdir = $(pkgpythondir)/client
82 1da489e2 Guido Trotter
cmdlibdir = $(pkgpythondir)/cmdlib
83 e8230860 Michael Hanselmann
hypervisordir = $(pkgpythondir)/hypervisor
84 cde49218 Helga Velroyen
storagedir = $(pkgpythondir)/storage
85 ff9efc03 Michael Hanselmann
httpdir = $(pkgpythondir)/http
86 dc101ecc Michael Hanselmann
masterddir = $(pkgpythondir)/masterd
87 12426ae1 Guido Trotter
confddir = $(pkgpythondir)/confd
88 8c229cc7 Oleksiy Mishchenko
rapidir = $(pkgpythondir)/rapi
89 4869595d Petr Pudlak
rpcdir = $(pkgpythondir)/rpc
90 899c4d2c Michael Hanselmann
serverdir = $(pkgpythondir)/server
91 9f4bb951 Michael Hanselmann
watcherdir = $(pkgpythondir)/watcher
92 bb44b1ae Michael Hanselmann
impexpddir = $(pkgpythondir)/impexpd
93 c047a981 Michael Hanselmann
utilsdir = $(pkgpythondir)/utils
94 e8230860 Michael Hanselmann
toolsdir = $(pkglibdir)/tools
95 7617fd6b Iustin Pop
iallocatorsdir = $(pkglibdir)/iallocators
96 0d2bf835 René Nussbaumer
pytoolsdir = $(pkgpythondir)/tools
97 667e9959 Klaus Aehlig
docdir = $(versiondir)$(datadir)/doc/$(PACKAGE)
98 667e9959 Klaus Aehlig
99 9cf292af Klaus Aehlig
SYMLINK_TARGET_DIRS = \
100 eb875ff1 Klaus Aehlig
	$(sysconfdir)/ganeti \
101 9cf292af Klaus Aehlig
	$(libdir)/ganeti/iallocators \
102 eb875ff1 Klaus Aehlig
	$(libdir)/ganeti/tools \
103 eb875ff1 Klaus Aehlig
	$(prefix)/share/ganeti \
104 ae6a0a7c Jose A. Lopes
	$(BINDIR) \
105 ae6a0a7c Jose A. Lopes
	$(SBINDIR) \
106 ae6a0a7c Jose A. Lopes
	$(MANDIR)/man1 \
107 ae6a0a7c Jose A. Lopes
	$(MANDIR)/man7 \
108 ae6a0a7c Jose A. Lopes
	$(MANDIR)/man8
109 e8230860 Michael Hanselmann
110 a4f12da4 Michael Hanselmann
# Delete output file if an error occurred while building it
111 a4f12da4 Michael Hanselmann
.DELETE_ON_ERROR:
112 a4f12da4 Michael Hanselmann
113 d9a900dc Iustin Pop
HS_DIRS = \
114 3add7574 Iustin Pop
	src \
115 3add7574 Iustin Pop
	src/Ganeti \
116 3add7574 Iustin Pop
	src/Ganeti/Confd \
117 cc40185c Iustin Pop
	src/Ganeti/Curl \
118 f6d4b52d Spyros Trigazis
	src/Ganeti/Cpu \
119 3add7574 Iustin Pop
	src/Ganeti/DataCollectors \
120 f3e38e89 Jose A. Lopes
	src/Ganeti/Hs2Py \
121 3add7574 Iustin Pop
	src/Ganeti/HTools \
122 3add7574 Iustin Pop
	src/Ganeti/HTools/Backend \
123 3add7574 Iustin Pop
	src/Ganeti/HTools/Program \
124 b8585908 Michele Tartara
	src/Ganeti/Hypervisor \
125 b8585908 Michele Tartara
	src/Ganeti/Hypervisor/Xen \
126 13cc7b84 Michele Tartara
	src/Ganeti/Monitoring \
127 3add7574 Iustin Pop
	src/Ganeti/Query \
128 c5f6cba2 Helga Velroyen
	src/Ganeti/Storage \
129 c5f6cba2 Helga Velroyen
	src/Ganeti/Storage/Diskstats \
130 c5f6cba2 Helga Velroyen
	src/Ganeti/Storage/Drbd \
131 bdf51a05 Michele Tartara
	src/Ganeti/Storage/Lvm \
132 6897a51e Petr Pudlak
	src/Ganeti/THH \
133 83846468 Iustin Pop
	test/hs \
134 83846468 Iustin Pop
	test/hs/Test \
135 83846468 Iustin Pop
	test/hs/Test/Ganeti \
136 c5f6cba2 Helga Velroyen
	test/hs/Test/Ganeti/Storage \
137 c5f6cba2 Helga Velroyen
	test/hs/Test/Ganeti/Storage/Diskstats \
138 c5f6cba2 Helga Velroyen
	test/hs/Test/Ganeti/Storage/Drbd \
139 0cf8edad Michele Tartara
	test/hs/Test/Ganeti/Storage/Lvm \
140 83846468 Iustin Pop
	test/hs/Test/Ganeti/Confd \
141 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools \
142 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Backend \
143 b8585908 Michele Tartara
	test/hs/Test/Ganeti/Hypervisor \
144 b8585908 Michele Tartara
	test/hs/Test/Ganeti/Hypervisor/Xen \
145 83846468 Iustin Pop
	test/hs/Test/Ganeti/Query
146 d5506465 Iustin Pop
147 7ddd8e4c Iustin Pop
# Haskell directories without the roots (src, test/hs)
148 7ddd8e4c Iustin Pop
HS_DIRS_NOROOT = $(filter-out src,$(filter-out test/hs,$(HS_DIRS)))
149 7ddd8e4c Iustin Pop
150 e8230860 Michael Hanselmann
DIRS = \
151 d9a900dc Iustin Pop
	$(HS_DIRS) \
152 e8230860 Michael Hanselmann
	autotools \
153 e8230860 Michael Hanselmann
	daemons \
154 e8230860 Michael Hanselmann
	devel \
155 8b3f1f42 Michele Tartara
	devel/data \
156 e8230860 Michael Hanselmann
	doc \
157 596f913e Michael Hanselmann
	doc/css \
158 e8230860 Michael Hanselmann
	doc/examples \
159 c51580b3 Guido Trotter
	doc/examples/gnt-debug \
160 dad26941 Iustin Pop
	doc/examples/hooks \
161 d2f465dc Klaus Aehlig
	doc/users \
162 83846468 Iustin Pop
	test/data/htools \
163 83846468 Iustin Pop
	test/data/htools/rapi \
164 83846468 Iustin Pop
	test/hs/shelltests \
165 00734cae Michele Tartara
	test/autotools \
166 e8230860 Michael Hanselmann
	lib \
167 f9897b6d Michael Hanselmann
	lib/build \
168 dad26941 Iustin Pop
	lib/client \
169 1da489e2 Guido Trotter
	lib/cmdlib \
170 2f16ea8f Michael Hanselmann
	lib/confd \
171 ff9efc03 Michael Hanselmann
	lib/http \
172 e8230860 Michael Hanselmann
	lib/hypervisor \
173 bb44b1ae Michael Hanselmann
	lib/impexpd \
174 dc101ecc Michael Hanselmann
	lib/masterd \
175 8c229cc7 Oleksiy Mishchenko
	lib/rapi \
176 4869595d Petr Pudlak
	lib/rpc \
177 899c4d2c Michael Hanselmann
	lib/server \
178 cde49218 Helga Velroyen
	lib/storage \
179 0d2bf835 René Nussbaumer
	lib/tools \
180 c047a981 Michael Hanselmann
	lib/utils \
181 9f4bb951 Michael Hanselmann
	lib/watcher \
182 e8230860 Michael Hanselmann
	man \
183 e8230860 Michael Hanselmann
	qa \
184 e8230860 Michael Hanselmann
	test \
185 e8230860 Michael Hanselmann
	test/data \
186 2e076ede Stratos Psomadakis
	test/data/bdev-rbd \
187 1e6fab60 Agata Murawska
	test/data/ovfdata \
188 d92518d3 Agata Murawska
	test/data/ovfdata/other \
189 90066780 Iustin Pop
	test/py \
190 3efa7659 Thomas Thrainer
	test/py/cmdlib \
191 3efa7659 Thomas Thrainer
	test/py/cmdlib/testsupport \
192 e8230860 Michael Hanselmann
	tools
193 e8230860 Michael Hanselmann
194 cbcd9144 Michele Tartara
ALL_APIDOC_HS_DIRS = \
195 22c5390d Iustin Pop
	$(APIDOC_HS_DIR) \
196 7ddd8e4c Iustin Pop
	$(patsubst %,$(APIDOC_HS_DIR)/%,$(call strip_hsroot,$(HS_DIRS_NOROOT)))
197 cbcd9144 Michele Tartara
198 cbcd9144 Michele Tartara
BUILDTIME_DIR_AUTOCREATE = \
199 cbcd9144 Michele Tartara
	scripts \
200 cbcd9144 Michele Tartara
	$(APIDOC_DIR) \
201 cbcd9144 Michele Tartara
	$(ALL_APIDOC_HS_DIRS) \
202 dad26941 Iustin Pop
	$(APIDOC_PY_DIR) \
203 22c5390d Iustin Pop
	$(COVERAGE_DIR) \
204 22c5390d Iustin Pop
	$(COVERAGE_HS_DIR) \
205 dad26941 Iustin Pop
	$(COVERAGE_PY_DIR) \
206 b91e9518 Iustin Pop
	.hpc
207 2750b299 Michael Hanselmann
208 2750b299 Michael Hanselmann
BUILDTIME_DIRS = \
209 2750b299 Michael Hanselmann
	$(BUILDTIME_DIR_AUTOCREATE) \
210 41806ef4 Michael Hanselmann
	doc/html \
211 41806ef4 Michael Hanselmann
	doc/man-html
212 6b997854 Michael Hanselmann
213 6b997854 Michael Hanselmann
DIRCHECK_EXCLUDE = \
214 6b997854 Michael Hanselmann
	$(BUILDTIME_DIRS) \
215 6b997854 Michael Hanselmann
	ganeti-[0-9]*.[0-9]*.[0-9]* \
216 a2d7ea09 Iustin Pop
	doc/html/_* \
217 41806ef4 Michael Hanselmann
	doc/man-html/_* \
218 a2d7ea09 Iustin Pop
	autom4te.cache
219 6b997854 Michael Hanselmann
220 22c5390d Iustin Pop
# some helper vars
221 22c5390d Iustin Pop
COVERAGE_DIR = doc/coverage
222 22c5390d Iustin Pop
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
223 22c5390d Iustin Pop
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
224 22c5390d Iustin Pop
APIDOC_DIR = doc/api
225 22c5390d Iustin Pop
APIDOC_PY_DIR = $(APIDOC_DIR)/py
226 22c5390d Iustin Pop
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
227 22c5390d Iustin Pop
228 2ab2b9f5 Iustin Pop
MAINTAINERCLEANFILES = \
229 b76aac08 Michael Hanselmann
	$(maninput) \
230 cbf3d64b Michael Hanselmann
	doc/install-quick.rst \
231 84a12e40 Iustin Pop
	doc/news.rst \
232 7a03d293 Michael Hanselmann
	doc/upgrade.rst \
233 84a12e40 Iustin Pop
	vcs-version
234 2ab2b9f5 Iustin Pop
235 d17e74b4 Iustin Pop
maintainer-clean-local:
236 6b997854 Michael Hanselmann
	rm -rf $(BUILDTIME_DIRS)
237 d17e74b4 Iustin Pop
238 e8230860 Michael Hanselmann
CLEANFILES = \
239 2f16ea8f Michael Hanselmann
	$(addsuffix /*.py[co],$(DIRS)) \
240 d9a900dc Iustin Pop
	$(addsuffix /*.hi,$(HS_DIRS)) \
241 d9a900dc Iustin Pop
	$(addsuffix /*.o,$(HS_DIRS)) \
242 9b6d2d92 Petr Pudlak
	$(addsuffix /*.$(HTEST_SUFFIX)_hi,$(HS_DIRS)) \
243 9b6d2d92 Petr Pudlak
	$(addsuffix /*.$(HTEST_SUFFIX)_o,$(HS_DIRS)) \
244 9b6d2d92 Petr Pudlak
	Makefile.ghc \
245 9b6d2d92 Petr Pudlak
	Makefile.ghc.bak \
246 2d48a3a2 Michael Hanselmann
	$(PYTHON_BOOTSTRAP) \
247 780060cb Klaus Aehlig
	$(gnt_python_sbin_SCRIPTS) \
248 f774bd03 Michael Hanselmann
	epydoc.conf \
249 5098afd1 Iustin Pop
	$(REPLACE_VARS_SED) \
250 6e3bf290 Michael Hanselmann
	$(SHELL_ENV_INIT) \
251 f154a7a3 Michael Hanselmann
	daemons/daemon-util \
252 fc3fd894 Michael Hanselmann
	daemons/ganeti-cleaner \
253 8b3f1f42 Michele Tartara
	devel/squeeze-amd64.tar.gz \
254 8b3f1f42 Michele Tartara
	devel/squeeze-amd64.conf \
255 41806ef4 Michael Hanselmann
	$(mandocrst) \
256 41806ef4 Michael Hanselmann
	doc/manpages-enabled.rst \
257 656a7fdf Iustin Pop
	$(BUILT_EXAMPLES) \
258 f72f8622 Iustin Pop
	doc/examples/bash_completion \
259 e80aeb89 Michael Hanselmann
	doc/examples/bash_completion-debug \
260 d2f465dc Klaus Aehlig
	$(userspecs) \
261 d5a2a550 Michael Hanselmann
	lib/_generated_rpc.py \
262 2ab2b9f5 Iustin Pop
	$(man_MANS) \
263 2ab2b9f5 Iustin Pop
	$(manhtml) \
264 26916aad Apollon Oikonomopoulos
	tools/kvm-ifup \
265 4855760b Dimitris Aragiorgis
	tools/vif-ganeti \
266 4855760b Dimitris Aragiorgis
	tools/net-common \
267 cdd27f7f Michele Tartara
	tools/users-setup \
268 e5afb848 Michael Hanselmann
	tools/vcluster-setup \
269 3735787e Iustin Pop
	stamp-directories \
270 dd1dfd9a Michael Hanselmann
	stamp-srclinks \
271 d6159933 Iustin Pop
	$(nodist_pkgpython_PYTHON) \
272 780060cb Klaus Aehlig
	$(gnt_scripts) \
273 c3f67183 Iustin Pop
	$(HS_ALL_PROGS) $(HS_BUILT_SRCS) \
274 3096524e Iustin Pop
	$(HS_BUILT_TEST_HELPERS) \
275 3add7574 Iustin Pop
	src/ganeti-confd \
276 3695a4e0 Thomas Thrainer
	src/ganeti-luxid \
277 13cc7b84 Michele Tartara
	src/ganeti-mond \
278 3e5b34c3 Klaus Aehlig
	.hpc/*.mix src/*.tix test/hs/*.tix *.tix \
279 191ff68c Iustin Pop
	doc/hs-lint.html
280 e8230860 Michael Hanselmann
281 4c3d5fb6 Iustin Pop
GENERATED_FILES = \
282 5098afd1 Iustin Pop
	$(built_base_sources) \
283 96a7481d Michael Hanselmann
	$(BUILT_PYTHON_SOURCES) \
284 2f523522 Klaus Aehlig
	$(PYTHON_BOOTSTRAP) \
285 2f523522 Klaus Aehlig
	$(gnt_python_sbin_SCRIPTS)
286 96a7481d Michael Hanselmann
287 f4445f53 Petr Pudlak
HS_GENERATED_FILES = $(HS_PROGS) src/hluxid src/ganeti-luxid
288 04520998 Iustin Pop
if ENABLE_CONFD
289 f4445f53 Petr Pudlak
HS_GENERATED_FILES += src/hconfd src/ganeti-confd
290 ada0e680 Iustin Pop
endif
291 13cc7b84 Michele Tartara
if ENABLE_MOND
292 13cc7b84 Michele Tartara
HS_GENERATED_FILES += src/ganeti-mond
293 13cc7b84 Michele Tartara
endif
294 ada0e680 Iustin Pop
295 96a7481d Michael Hanselmann
built_base_sources = \
296 3735787e Iustin Pop
	stamp-directories \
297 3735787e Iustin Pop
	stamp-srclinks
298 2d1f248e Michael Hanselmann
299 96a7481d Michael Hanselmann
built_python_base_sources = \
300 1b2adaa6 Jose A. Lopes
	lib/_constants.py \
301 580b1fdd Jose A. Lopes
	lib/_vcsversion.py \
302 580b1fdd Jose A. Lopes
	lib/opcodes.py
303 96a7481d Michael Hanselmann
304 96a7481d Michael Hanselmann
BUILT_PYTHON_SOURCES = \
305 96a7481d Michael Hanselmann
	$(built_python_base_sources) \
306 d5a2a550 Michael Hanselmann
	lib/_generated_rpc.py
307 e8230860 Michael Hanselmann
308 5098afd1 Iustin Pop
# Generating the RPC wrappers depends on many things, so make sure
309 5098afd1 Iustin Pop
# it's built at the end of the built sources
310 96a7481d Michael Hanselmann
lib/_generated_rpc.py: | $(built_base_sources) $(built_python_base_sources)
311 96a7481d Michael Hanselmann
312 656a7fdf Iustin Pop
# these are all built from the underlying %.in sources
313 656a7fdf Iustin Pop
BUILT_EXAMPLES = \
314 656a7fdf Iustin Pop
	doc/examples/ganeti-kvm-poweroff.initd \
315 656a7fdf Iustin Pop
	doc/examples/ganeti.cron \
316 656a7fdf Iustin Pop
	doc/examples/ganeti.initd \
317 e48c3613 Apollon Oikonomopoulos
	doc/examples/ganeti.logrotate \
318 aa75500a Guido Trotter
	doc/examples/ganeti-master-role.ocf \
319 17071597 Guido Trotter
	doc/examples/ganeti-node-role.ocf \
320 656a7fdf Iustin Pop
	doc/examples/gnt-config-backup \
321 656a7fdf Iustin Pop
	doc/examples/hooks/ipsec
322 656a7fdf Iustin Pop
323 08366664 Michael Hanselmann
nodist_pkgpython_PYTHON = \
324 08366664 Michael Hanselmann
	$(BUILT_PYTHON_SOURCES)
325 08366664 Michael Hanselmann
326 780060cb Klaus Aehlig
nodist_pkgpython_bin_SCRIPTS = \
327 780060cb Klaus Aehlig
	$(nodist_pkglib_python_scripts)
328 780060cb Klaus Aehlig
329 780060cb Klaus Aehlig
pkgpython_bin_SCRIPTS = \
330 780060cb Klaus Aehlig
	$(pkglib_python_scripts)
331 780060cb Klaus Aehlig
332 f9897b6d Michael Hanselmann
noinst_PYTHON = \
333 5f43f393 Michael Hanselmann
	lib/build/__init__.py \
334 dad26941 Iustin Pop
	lib/build/shell_example_lexer.py \
335 dad26941 Iustin Pop
	lib/build/sphinx_ext.py
336 f9897b6d Michael Hanselmann
337 e8230860 Michael Hanselmann
pkgpython_PYTHON = \
338 e8230860 Michael Hanselmann
	lib/__init__.py \
339 a8a76bc2 Guido Trotter
	lib/asyncnotifier.py \
340 e8230860 Michael Hanselmann
	lib/backend.py \
341 e8230860 Michael Hanselmann
	lib/bootstrap.py \
342 e8230860 Michael Hanselmann
	lib/cli.py \
343 cea881e5 Michael Hanselmann
	lib/compat.py \
344 e8230860 Michael Hanselmann
	lib/config.py \
345 e8230860 Michael Hanselmann
	lib/constants.py \
346 821d9e43 Michael Hanselmann
	lib/daemon.py \
347 e8230860 Michael Hanselmann
	lib/errors.py \
348 68d95757 Guido Trotter
	lib/hooksmaster.py \
349 62e0e880 Iustin Pop
	lib/ht.py \
350 e8230860 Michael Hanselmann
	lib/jqueue.py \
351 8b537bb0 Michael Hanselmann
	lib/jstore.py \
352 e8230860 Michael Hanselmann
	lib/locking.py \
353 e8230860 Michael Hanselmann
	lib/luxi.py \
354 e8230860 Michael Hanselmann
	lib/mcpu.py \
355 a744b676 Manuel Franceschini
	lib/netutils.py \
356 e8230860 Michael Hanselmann
	lib/objects.py \
357 580b1fdd Jose A. Lopes
	lib/opcodes_base.py \
358 473d87a3 Iustin Pop
	lib/outils.py \
359 ced78a66 Agata Murawska
	lib/ovf.py \
360 3329f4de Michael Hanselmann
	lib/pathutils.py \
361 a123dc19 Michael Hanselmann
	lib/qlang.py \
362 4ca96421 Michael Hanselmann
	lib/query.py \
363 6648cb36 Michael Hanselmann
	lib/rpc_defs.py \
364 f12e1736 René Nussbaumer
	lib/runtime.py \
365 e8230860 Michael Hanselmann
	lib/serializer.py \
366 e8230860 Michael Hanselmann
	lib/ssconf.py \
367 e8230860 Michael Hanselmann
	lib/ssh.py \
368 1338f2b4 Balazs Lecz
	lib/uidpool.py \
369 05e733b4 Michael Hanselmann
	lib/vcluster.py \
370 4e4b6b7a Apollon Oikonomopoulos
	lib/network.py \
371 76094e37 Michael Hanselmann
	lib/workerpool.py
372 e8230860 Michael Hanselmann
373 2d48a3a2 Michael Hanselmann
client_PYTHON = \
374 c2855a12 Michael Hanselmann
	lib/client/__init__.py \
375 02266fe0 Michael Hanselmann
	lib/client/gnt_backup.py \
376 7b3e7d41 Michael Hanselmann
	lib/client/gnt_cluster.py \
377 6d50f5f9 Michael Hanselmann
	lib/client/gnt_debug.py \
378 667dbd6b Adeodato Simo
	lib/client/gnt_group.py \
379 e792102d Michael Hanselmann
	lib/client/gnt_instance.py \
380 a09b9e3d Michael Hanselmann
	lib/client/gnt_job.py \
381 37494fa4 Michael Hanselmann
	lib/client/gnt_node.py \
382 4e4b6b7a Apollon Oikonomopoulos
	lib/client/gnt_network.py \
383 b954f097 Constantinos Venetsanopoulos
	lib/client/gnt_os.py \
384 b954f097 Constantinos Venetsanopoulos
	lib/client/gnt_storage.py
385 2d48a3a2 Michael Hanselmann
386 1da489e2 Guido Trotter
cmdlib_PYTHON = \
387 1a732a74 Thomas Thrainer
	lib/cmdlib/__init__.py \
388 aad242d2 Thomas Thrainer
	lib/cmdlib/backup.py \
389 fb3891d0 Thomas Thrainer
	lib/cmdlib/base.py \
390 7352d33b Thomas Thrainer
	lib/cmdlib/cluster.py \
391 aad242d2 Thomas Thrainer
	lib/cmdlib/common.py \
392 f380d53c Thomas Thrainer
	lib/cmdlib/group.py \
393 22b7f6f8 Thomas Thrainer
	lib/cmdlib/instance.py \
394 87e25be1 Thomas Thrainer
	lib/cmdlib/instance_migration.py \
395 13f6af81 Thomas Thrainer
	lib/cmdlib/instance_operation.py \
396 8aa8f6b1 Thomas Thrainer
	lib/cmdlib/instance_query.py \
397 aad242d2 Thomas Thrainer
	lib/cmdlib/instance_storage.py \
398 22b7f6f8 Thomas Thrainer
	lib/cmdlib/instance_utils.py \
399 aad242d2 Thomas Thrainer
	lib/cmdlib/misc.py \
400 aad242d2 Thomas Thrainer
	lib/cmdlib/network.py \
401 aad242d2 Thomas Thrainer
	lib/cmdlib/node.py \
402 1be6b00e Thomas Thrainer
	lib/cmdlib/operating_system.py \
403 aad242d2 Thomas Thrainer
	lib/cmdlib/query.py \
404 37dc17e3 Thomas Thrainer
	lib/cmdlib/tags.py \
405 1d870e0d Thomas Thrainer
	lib/cmdlib/test.py
406 1da489e2 Guido Trotter
407 e8230860 Michael Hanselmann
hypervisor_PYTHON = \
408 e8230860 Michael Hanselmann
	lib/hypervisor/__init__.py \
409 e8230860 Michael Hanselmann
	lib/hypervisor/hv_base.py \
410 48297fa2 Iustin Pop
	lib/hypervisor/hv_chroot.py \
411 e8230860 Michael Hanselmann
	lib/hypervisor/hv_fake.py \
412 eb58f9b1 Guido Trotter
	lib/hypervisor/hv_kvm.py \
413 4b5e40a5 Iustin Pop
	lib/hypervisor/hv_lxc.py \
414 e8230860 Michael Hanselmann
	lib/hypervisor/hv_xen.py
415 e8230860 Michael Hanselmann
416 cde49218 Helga Velroyen
storage_PYTHON = \
417 cde49218 Helga Velroyen
	lib/storage/__init__.py \
418 cde49218 Helga Velroyen
	lib/storage/bdev.py \
419 cde49218 Helga Velroyen
	lib/storage/base.py \
420 8f096849 Helga Velroyen
	lib/storage/container.py \
421 cde49218 Helga Velroyen
	lib/storage/drbd.py \
422 cde49218 Helga Velroyen
	lib/storage/drbd_info.py \
423 820bade9 Helga Velroyen
	lib/storage/drbd_cmdgen.py \
424 8106dd64 Santi Raffa
	lib/storage/filestorage.py \
425 8106dd64 Santi Raffa
	lib/storage/gluster.py
426 ce9283c1 Thomas Thrainer
427 8c229cc7 Oleksiy Mishchenko
rapi_PYTHON = \
428 8c229cc7 Oleksiy Mishchenko
	lib/rapi/__init__.py \
429 10b207d4 Oleksiy Mishchenko
	lib/rapi/baserlib.py \
430 95ab4de9 David Knowles
	lib/rapi/client.py \
431 20b509de Michael Hanselmann
	lib/rapi/client_utils.py \
432 10b207d4 Oleksiy Mishchenko
	lib/rapi/connector.py \
433 a85f23fa Michael Hanselmann
	lib/rapi/rlib2.py \
434 a85f23fa Michael Hanselmann
	lib/rapi/testutils.py
435 8c229cc7 Oleksiy Mishchenko
436 ff9efc03 Michael Hanselmann
http_PYTHON = \
437 02cab3e7 Michael Hanselmann
	lib/http/__init__.py \
438 be500c29 Michael Hanselmann
	lib/http/auth.py \
439 02cab3e7 Michael Hanselmann
	lib/http/client.py \
440 02cab3e7 Michael Hanselmann
	lib/http/server.py
441 ff9efc03 Michael Hanselmann
442 12426ae1 Guido Trotter
confd_PYTHON = \
443 71f27d19 Guido Trotter
	lib/confd/__init__.py \
444 b0dcdc10 Iustin Pop
	lib/confd/client.py
445 8c229cc7 Oleksiy Mishchenko
446 dc101ecc Michael Hanselmann
masterd_PYTHON = \
447 033a1d00 Michael Hanselmann
	lib/masterd/__init__.py \
448 0fcd0cad René Nussbaumer
	lib/masterd/iallocator.py \
449 033a1d00 Michael Hanselmann
	lib/masterd/instance.py
450 dc101ecc Michael Hanselmann
451 bb44b1ae Michael Hanselmann
impexpd_PYTHON = \
452 bb44b1ae Michael Hanselmann
	lib/impexpd/__init__.py
453 bb44b1ae Michael Hanselmann
454 9f4bb951 Michael Hanselmann
watcher_PYTHON = \
455 9ca87fb3 Michael Hanselmann
	lib/watcher/__init__.py \
456 adf6301e Michael Hanselmann
	lib/watcher/nodemaint.py \
457 adf6301e Michael Hanselmann
	lib/watcher/state.py
458 9f4bb951 Michael Hanselmann
459 899c4d2c Michael Hanselmann
server_PYTHON = \
460 29d91329 Michael Hanselmann
	lib/server/__init__.py \
461 5119f2ec Michael Hanselmann
	lib/server/masterd.py \
462 d9c82a4e Michael Hanselmann
	lib/server/noded.py \
463 d9c82a4e Michael Hanselmann
	lib/server/rapi.py
464 899c4d2c Michael Hanselmann
465 4869595d Petr Pudlak
rpc_PYTHON = \
466 4869595d Petr Pudlak
	lib/rpc/__init__.py \
467 912b2278 Petr Pudlak
	lib/rpc/client.py \
468 ff1012ef Petr Pudlak
	lib/rpc/errors.py \
469 ff1012ef Petr Pudlak
	lib/rpc/node.py \
470 ff1012ef Petr Pudlak
	lib/rpc/transport.py
471 4869595d Petr Pudlak
472 0d2bf835 René Nussbaumer
pytools_PYTHON = \
473 0d2bf835 René Nussbaumer
	lib/tools/__init__.py \
474 8e55e20f Michael Hanselmann
	lib/tools/burnin.py \
475 d12b9f66 Michael Hanselmann
	lib/tools/ensure_dirs.py \
476 d5fe5fa9 Michael Hanselmann
	lib/tools/node_cleanup.py \
477 69e5fefc Michael Hanselmann
	lib/tools/node_daemon_setup.py \
478 d12b9f66 Michael Hanselmann
	lib/tools/prepare_node_join.py
479 0d2bf835 René Nussbaumer
480 c047a981 Michael Hanselmann
utils_PYTHON = \
481 4fd029cf Michael Hanselmann
	lib/utils/__init__.py \
482 79d22269 Michael Hanselmann
	lib/utils/algo.py \
483 9d1b963f Michael Hanselmann
	lib/utils/filelock.py \
484 f21bb4b7 Michael Hanselmann
	lib/utils/hash.py \
485 3865ca48 Michael Hanselmann
	lib/utils/io.py \
486 1ae4c5a1 Michael Hanselmann
	lib/utils/log.py \
487 59726e15 Bernardo Dal Seno
	lib/utils/lvm.py \
488 8dc76d54 Guido Trotter
	lib/utils/mlock.py \
489 17b97ab3 Michael Hanselmann
	lib/utils/nodesetup.py \
490 a4ccecf6 Michael Hanselmann
	lib/utils/process.py \
491 7fcffe27 Michael Hanselmann
	lib/utils/retry.py \
492 3338a9ce Helga Velroyen
	lib/utils/security.py \
493 59ef0f15 Helga Velroyen
	lib/utils/storage.py \
494 7831fc5f Michael Hanselmann
	lib/utils/text.py \
495 effc1b86 Jose A. Lopes
	lib/utils/version.py \
496 c50645c0 Michael Hanselmann
	lib/utils/wrapper.py \
497 c50645c0 Michael Hanselmann
	lib/utils/x509.py
498 c047a981 Michael Hanselmann
499 7cf58cad Michael Hanselmann
docinput = \
500 ffa6869f Iustin Pop
	doc/admin.rst \
501 bced76fd Jose A. Lopes
	doc/cluster-keys-replacement.rst \
502 dad26941 Iustin Pop
	doc/cluster-merge.rst \
503 ff37391a Jose A. Lopes
	doc/conf.py \
504 ff37391a Jose A. Lopes
	doc/css/style.css \
505 5c0c1eeb Iustin Pop
	doc/design-2.0.rst \
506 4f366caf Michael Hanselmann
	doc/design-2.1.rst \
507 e56bb0e8 Guido Trotter
	doc/design-2.2.rst \
508 1eb85930 Guido Trotter
	doc/design-2.3.rst \
509 78b40c5e Michael Hanselmann
	doc/design-2.4.rst \
510 d774ce92 Michael Hanselmann
	doc/design-2.5.rst \
511 40309ed7 Michael Hanselmann
	doc/design-2.6.rst \
512 97aac894 Michael Hanselmann
	doc/design-2.7.rst \
513 fab0cf66 Michele Tartara
	doc/design-2.8.rst \
514 036744e2 Klaus Aehlig
	doc/design-2.9.rst \
515 adb36960 Thomas Thrainer
	doc/design-2.10.rst \
516 711897ae Jose A. Lopes
	doc/design-2.11.rst \
517 dad26941 Iustin Pop
	doc/design-autorepair.rst \
518 dad26941 Iustin Pop
	doc/design-bulk-create.rst \
519 a50b5ba3 Jose A. Lopes
	doc/design-ceph-ganeti-support.rst \
520 dad26941 Iustin Pop
	doc/design-chained-jobs.rst \
521 a50b5ba3 Jose A. Lopes
	doc/design-cmdlib-unittests.rst \
522 ae9b5e0f Tsachy Shacham
	doc/design-cpu-pinning.rst \
523 ff37391a Jose A. Lopes
	doc/design-daemons.rst \
524 f1a84264 Christos Stavrakakis
	doc/design-device-uuid-name.rst \
525 dad26941 Iustin Pop
	doc/design-draft.rst \
526 bced76fd Jose A. Lopes
	doc/design-file-based-storage.rst \
527 dde3b0d5 Robin H. Johnson
	doc/design-glusterfs-ganeti-support.rst \
528 ff37391a Jose A. Lopes
	doc/design-hotplug.rst \
529 ff37391a Jose A. Lopes
	doc/design-hroller.rst \
530 ff37391a Jose A. Lopes
	doc/design-hsqueeze.rst \
531 dad26941 Iustin Pop
	doc/design-htools-2.3.rst \
532 278ddaa9 Michael Hanselmann
	doc/design-http-server.rst \
533 ff37391a Jose A. Lopes
	doc/design-hugepages-support.rst \
534 1375e1d9 Michael Hanselmann
	doc/design-impexp2.rst \
535 ca93ea0a Michele Tartara
	doc/design-internal-shutdown.rst \
536 333bd799 Jose A. Lopes
	doc/design-kvmd.rst \
537 d55b80b0 Guido Trotter
	doc/design-linuxha.rst \
538 ff37391a Jose A. Lopes
	doc/design-lu-generated-jobs.rst \
539 ff37391a Jose A. Lopes
	doc/design-monitoring-agent.rst \
540 4055b109 Adeodato Simo
	doc/design-multi-reloc.rst \
541 a4417db4 Thomas Thrainer
	doc/design-multi-version-tests.rst \
542 eec83a95 Apollon Oikonomopoulos
	doc/design-network.rst \
543 7742b03c Michael Hanselmann
	doc/design-node-add.rst \
544 dad26941 Iustin Pop
	doc/design-oob.rst \
545 dde3b0d5 Robin H. Johnson
	doc/design-openvswitch.rst \
546 0cc3f0d7 Michael Hanselmann
	doc/design-opportunistic-locking.rst \
547 e408eb8a Klaus Aehlig
	doc/design-optables.rst \
548 2cb36124 Jose A. Lopes
	doc/design-os.rst \
549 ff37391a Jose A. Lopes
	doc/design-ovf-support.rst \
550 dad26941 Iustin Pop
	doc/design-partitioned.rst \
551 dad26941 Iustin Pop
	doc/design-query2.rst \
552 a4417db4 Thomas Thrainer
	doc/design-query-splitting.rst \
553 6d2e1c12 Michele Tartara
	doc/design-reason-trail.rst \
554 d85f01e7 Iustin Pop
	doc/design-resource-model.rst \
555 45bc4635 Iustin Pop
	doc/design-restricted-commands.rst \
556 a997cec5 Apollon Oikonomopoulos
	doc/design-shared-storage.rst \
557 a4417db4 Thomas Thrainer
	doc/design-ssh-ports.rst \
558 ff37391a Jose A. Lopes
	doc/design-storagetypes.rst \
559 ff37391a Jose A. Lopes
	doc/design-upgrade.rst \
560 6b898285 Iustin Pop
	doc/design-virtual-clusters.rst \
561 dad26941 Iustin Pop
	doc/design-x509-ca.rst \
562 9110fb4a Santi Raffa
	doc/dev-codestyle.rst \
563 62947ebb Michael Hanselmann
	doc/devnotes.rst \
564 e2078d28 Iustin Pop
	doc/glossary.rst \
565 4d6443f4 Iustin Pop
	doc/hooks.rst \
566 876860a3 Iustin Pop
	doc/iallocator.rst \
567 d17e74b4 Iustin Pop
	doc/index.rst \
568 cbf3d64b Michael Hanselmann
	doc/install-quick.rst \
569 28e15341 Iustin Pop
	doc/install.rst \
570 9725b53d Michael Hanselmann
	doc/locking.rst \
571 41806ef4 Michael Hanselmann
	doc/manpages-disabled.rst \
572 4a52945f Apollon Oikonomopoulos
	doc/monitoring-query-format.rst \
573 6bf273d5 Michael Hanselmann
	doc/move-instance.rst \
574 c71a1a3d Iustin Pop
	doc/news.rst \
575 a47dc554 René Nussbaumer
	doc/ovfconverter.rst \
576 6d81475c Iustin Pop
	doc/rapi.rst \
577 b76aac08 Michael Hanselmann
	doc/security.rst \
578 35dd762d Michael Hanselmann
	doc/upgrade.rst \
579 ab171697 Michael Hanselmann
	doc/virtual-cluster.rst \
580 c71a1a3d Iustin Pop
	doc/walkthrough.rst
581 f05c99f3 Michael Hanselmann
582 41806ef4 Michael Hanselmann
# Generates file names such as "doc/man-gnt-instance.rst"
583 41806ef4 Michael Hanselmann
mandocrst = $(addprefix doc/man-,$(notdir $(manrst)))
584 41806ef4 Michael Hanselmann
585 6249f1c2 Michele Tartara
# Haskell programs to be installed in $PREFIX/bin
586 6249f1c2 Michele Tartara
HS_BIN_PROGS=src/htools
587 6249f1c2 Michele Tartara
588 6249f1c2 Michele Tartara
# Haskell programs to be installed in the MYEXECLIB dir
589 bcba4e01 Michele Tartara
if ENABLE_MOND
590 6249f1c2 Michele Tartara
HS_MYEXECLIB_PROGS=src/mon-collector
591 b43e836f Michele Tartara
else
592 b43e836f Michele Tartara
HS_MYEXECLIB_PROGS=
593 b43e836f Michele Tartara
endif
594 6249f1c2 Michele Tartara
595 13cc7b84 Michele Tartara
# Haskell programs to be compiled by "make really-all"
596 7959b875 Petr Pudlak
HS_COMPILE_PROGS = \
597 d6769989 Jose A. Lopes
	src/ganeti-kvmd \
598 3695a4e0 Thomas Thrainer
	src/hluxid \
599 580b1fdd Jose A. Lopes
	src/hs2py \
600 6249f1c2 Michele Tartara
	src/rpc-test
601 7959b875 Petr Pudlak
if ENABLE_CONFD
602 7959b875 Petr Pudlak
HS_COMPILE_PROGS += src/hconfd
603 7959b875 Petr Pudlak
endif
604 7959b875 Petr Pudlak
if ENABLE_MOND
605 7959b875 Petr Pudlak
HS_COMPILE_PROGS += src/ganeti-mond
606 7959b875 Petr Pudlak
endif
607 6249f1c2 Michele Tartara
608 6249f1c2 Michele Tartara
# All Haskell non-test programs to be compiled but not automatically installed
609 6249f1c2 Michele Tartara
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
610 6249f1c2 Michele Tartara
611 5f6e9cb9 Klaus Aehlig
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller hsqueeze
612 ada0e680 Iustin Pop
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
613 d6159933 Iustin Pop
614 e4940da5 Jose A. Lopes
# Haskell programs that cannot be disabled at configure (e.g., unlike
615 e4940da5 Jose A. Lopes
# 'mon-collector')
616 e4940da5 Jose A. Lopes
HS_DEFAULT_PROGS = \
617 e4940da5 Jose A. Lopes
	$(HS_BIN_PROGS) \
618 83846468 Iustin Pop
	test/hs/hpc-htools \
619 83846468 Iustin Pop
	test/hs/hpc-mon-collector \
620 3e16567e Iustin Pop
	test/hs/htest \
621 6249f1c2 Michele Tartara
	$(HS_COMPILE_PROGS)
622 19e21a6c Iustin Pop
623 e4940da5 Jose A. Lopes
HS_ALL_PROGS = $(HS_DEFAULT_PROGS) $(HS_MYEXECLIB_PROGS)
624 e4940da5 Jose A. Lopes
625 9b6d2d92 Petr Pudlak
HS_TEST_PROGS = $(filter test/%,$(HS_ALL_PROGS))
626 9b6d2d92 Petr Pudlak
HS_SRC_PROGS = $(filter-out test/%,$(HS_ALL_PROGS))
627 9b6d2d92 Petr Pudlak
628 88a0e24b Jose A. Lopes
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_DEFAULT_PROGS)) src/mon-collector.hs
629 83846468 Iustin Pop
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
630 3096524e Iustin Pop
631 39f0eea5 Iustin Pop
HFLAGS = \
632 3add7574 Iustin Pop
	-O -Wall -Werror -isrc \
633 39f0eea5 Iustin Pop
	-fwarn-monomorphism-restriction \
634 39f0eea5 Iustin Pop
	-fwarn-tabs \
635 39f0eea5 Iustin Pop
	$(GHC_BYVERSION_FLAGS)
636 39f0eea5 Iustin Pop
637 9b6d2d92 Petr Pudlak
if HPROFILE
638 9b6d2d92 Petr Pudlak
HFLAGS += -prof -auto-all
639 9b6d2d92 Petr Pudlak
endif
640 9b6d2d92 Petr Pudlak
if HCOVERAGE
641 9b6d2d92 Petr Pudlak
HFLAGS += -fhpc
642 9b6d2d92 Petr Pudlak
endif
643 9b6d2d92 Petr Pudlak
if HTEST
644 9b6d2d92 Petr Pudlak
HFLAGS += -DTEST
645 9b6d2d92 Petr Pudlak
endif
646 9b6d2d92 Petr Pudlak
647 9b6d2d92 Petr Pudlak
HTEST_SUFFIX = hpc
648 9b6d2d92 Petr Pudlak
649 9b6d2d92 Petr Pudlak
HTEST_FLAGS = $(HFLAGS) -fhpc -itest/hs \
650 9b6d2d92 Petr Pudlak
	-osuf .$(HTEST_SUFFIX)_o \
651 9b6d2d92 Petr Pudlak
	-hisuf .$(HTEST_SUFFIX)_hi
652 9b6d2d92 Petr Pudlak
653 74e60746 Iustin Pop
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
654 d6159933 Iustin Pop
HEXTRA =
655 3e16567e Iustin Pop
# internal extra flags (used for test/hs/htest mainly)
656 c7ec3025 Iustin Pop
HEXTRA_INT =
657 b91e9518 Iustin Pop
# exclude options for coverage reports
658 9822b1dd Iustin Pop
HPCEXCL = --exclude Main \
659 98b33d0e Iustin Pop
	--exclude Ganeti.Constants \
660 9822b1dd Iustin Pop
	--exclude Ganeti.HTools.QC \
661 dad26941 Iustin Pop
	--exclude Ganeti.THH \
662 2997cb0a Iustin Pop
	--exclude Ganeti.Version \
663 4349c24d Michele Tartara
	--exclude Test.Ganeti.Attoparsec \
664 2733df51 Iustin Pop
	--exclude Test.Ganeti.TestCommon \
665 e1ee7d5a Iustin Pop
	--exclude Test.Ganeti.TestHTools \
666 e1ee7d5a Iustin Pop
	--exclude Test.Ganeti.TestHelper \
667 b88fcdd0 Iustin Pop
	--exclude Test.Ganeti.TestImports \
668 3add7574 Iustin Pop
	$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
669 d6159933 Iustin Pop
670 c3f67183 Iustin Pop
HS_LIB_SRCS = \
671 3add7574 Iustin Pop
	src/Ganeti/BasicTypes.hs \
672 3add7574 Iustin Pop
	src/Ganeti/Common.hs \
673 3add7574 Iustin Pop
	src/Ganeti/Compat.hs \
674 3add7574 Iustin Pop
	src/Ganeti/Confd/Client.hs \
675 9611c32e Michele Tartara
	src/Ganeti/Confd/ClientFunctions.hs \
676 3add7574 Iustin Pop
	src/Ganeti/Confd/Server.hs \
677 3add7574 Iustin Pop
	src/Ganeti/Confd/Types.hs \
678 3add7574 Iustin Pop
	src/Ganeti/Confd/Utils.hs \
679 3add7574 Iustin Pop
	src/Ganeti/Config.hs \
680 218e3b0f Thomas Thrainer
	src/Ganeti/ConfigReader.hs \
681 fec1fac1 Jose A. Lopes
	src/Ganeti/Constants.hs \
682 f2b6e7d4 Jose A. Lopes
	src/Ganeti/ConstantUtils.hs \
683 f6d4b52d Spyros Trigazis
	src/Ganeti/Cpu/LoadParser.hs \
684 f6d4b52d Spyros Trigazis
	src/Ganeti/Cpu/Types.hs \
685 cc40185c Iustin Pop
	src/Ganeti/Curl/Multi.hs \
686 3add7574 Iustin Pop
	src/Ganeti/Daemon.hs \
687 3add7574 Iustin Pop
	src/Ganeti/DataCollectors/CLI.hs \
688 2da679f7 Spyros Trigazis
	src/Ganeti/DataCollectors/CPUload.hs \
689 1a99d6a2 Michele Tartara
	src/Ganeti/DataCollectors/Diskstats.hs \
690 3add7574 Iustin Pop
	src/Ganeti/DataCollectors/Drbd.hs \
691 d7e9323b Michele Tartara
	src/Ganeti/DataCollectors/InstStatus.hs \
692 d7e9323b Michele Tartara
	src/Ganeti/DataCollectors/InstStatusTypes.hs \
693 1a9d864c Michele Tartara
	src/Ganeti/DataCollectors/Lv.hs \
694 3add7574 Iustin Pop
	src/Ganeti/DataCollectors/Program.hs \
695 13d3acab Michele Tartara
	src/Ganeti/DataCollectors/Types.hs \
696 3add7574 Iustin Pop
	src/Ganeti/Errors.hs \
697 3add7574 Iustin Pop
	src/Ganeti/HTools/Backend/IAlloc.hs \
698 3add7574 Iustin Pop
	src/Ganeti/HTools/Backend/Luxi.hs \
699 3add7574 Iustin Pop
	src/Ganeti/HTools/Backend/Rapi.hs \
700 3add7574 Iustin Pop
	src/Ganeti/HTools/Backend/Simu.hs \
701 3add7574 Iustin Pop
	src/Ganeti/HTools/Backend/Text.hs \
702 3add7574 Iustin Pop
	src/Ganeti/HTools/CLI.hs \
703 3add7574 Iustin Pop
	src/Ganeti/HTools/Cluster.hs \
704 3add7574 Iustin Pop
	src/Ganeti/HTools/Container.hs \
705 3add7574 Iustin Pop
	src/Ganeti/HTools/ExtLoader.hs \
706 3add7574 Iustin Pop
	src/Ganeti/HTools/Graph.hs \
707 3add7574 Iustin Pop
	src/Ganeti/HTools/Group.hs \
708 3add7574 Iustin Pop
	src/Ganeti/HTools/Instance.hs \
709 3add7574 Iustin Pop
	src/Ganeti/HTools/Loader.hs \
710 908c2f67 Thomas Thrainer
	src/Ganeti/HTools/Nic.hs \
711 3add7574 Iustin Pop
	src/Ganeti/HTools/Node.hs \
712 3add7574 Iustin Pop
	src/Ganeti/HTools/PeerMap.hs \
713 3add7574 Iustin Pop
	src/Ganeti/HTools/Program/Hail.hs \
714 b6d9bec8 Dato Simó
	src/Ganeti/HTools/Program/Harep.hs \
715 3add7574 Iustin Pop
	src/Ganeti/HTools/Program/Hbal.hs \
716 3add7574 Iustin Pop
	src/Ganeti/HTools/Program/Hcheck.hs \
717 3add7574 Iustin Pop
	src/Ganeti/HTools/Program/Hinfo.hs \
718 3add7574 Iustin Pop
	src/Ganeti/HTools/Program/Hscan.hs \
719 3add7574 Iustin Pop
	src/Ganeti/HTools/Program/Hspace.hs \
720 5f6e9cb9 Klaus Aehlig
	src/Ganeti/HTools/Program/Hsqueeze.hs \
721 3add7574 Iustin Pop
	src/Ganeti/HTools/Program/Hroller.hs \
722 2fd5a116 Iustin Pop
	src/Ganeti/HTools/Program/Main.hs \
723 3add7574 Iustin Pop
	src/Ganeti/HTools/Types.hs \
724 45ee8676 Michele Tartara
	src/Ganeti/Hypervisor/Xen.hs \
725 b8585908 Michele Tartara
	src/Ganeti/Hypervisor/Xen/XmParser.hs \
726 b8585908 Michele Tartara
	src/Ganeti/Hypervisor/Xen/Types.hs \
727 3add7574 Iustin Pop
	src/Ganeti/Hash.hs \
728 d34c79b6 Jose A. Lopes
	src/Ganeti/Hs2Py/GenConstants.hs \
729 f3e38e89 Jose A. Lopes
	src/Ganeti/Hs2Py/GenOpCodes.hs \
730 580b1fdd Jose A. Lopes
	src/Ganeti/Hs2Py/OpDoc.hs \
731 3add7574 Iustin Pop
	src/Ganeti/JQueue.hs \
732 48e4da5c Klaus Aehlig
	src/Ganeti/JQScheduler.hs \
733 3add7574 Iustin Pop
	src/Ganeti/JSON.hs \
734 3add7574 Iustin Pop
	src/Ganeti/Jobs.hs \
735 db519e20 Jose A. Lopes
	src/Ganeti/Kvmd.hs \
736 3add7574 Iustin Pop
	src/Ganeti/Logging.hs \
737 3add7574 Iustin Pop
	src/Ganeti/Luxi.hs \
738 13cc7b84 Michele Tartara
	src/Ganeti/Monitoring/Server.hs \
739 3add7574 Iustin Pop
	src/Ganeti/Network.hs \
740 3add7574 Iustin Pop
	src/Ganeti/Objects.hs \
741 3add7574 Iustin Pop
	src/Ganeti/OpCodes.hs \
742 3add7574 Iustin Pop
	src/Ganeti/OpParams.hs \
743 3add7574 Iustin Pop
	src/Ganeti/Path.hs \
744 f5bbddb5 Spyros Trigazis
	src/Ganeti/Parsers.hs \
745 b711450c Petr Pudlak
	src/Ganeti/PyValue.hs \
746 1c3231aa Thomas Thrainer
	src/Ganeti/Query/Cluster.hs \
747 3add7574 Iustin Pop
	src/Ganeti/Query/Common.hs \
748 c4bf507b Iustin Pop
	src/Ganeti/Query/Export.hs \
749 3add7574 Iustin Pop
	src/Ganeti/Query/Filter.hs \
750 3add7574 Iustin Pop
	src/Ganeti/Query/Group.hs \
751 1df0266e Hrvoje Ribicic
	src/Ganeti/Query/Instance.hs \
752 3add7574 Iustin Pop
	src/Ganeti/Query/Job.hs \
753 3add7574 Iustin Pop
	src/Ganeti/Query/Language.hs \
754 014eaaa0 Klaus Aehlig
	src/Ganeti/Query/Locks.hs \
755 05092772 Helga Velroyen
	src/Ganeti/Query/Network.hs \
756 3add7574 Iustin Pop
	src/Ganeti/Query/Node.hs \
757 3add7574 Iustin Pop
	src/Ganeti/Query/Query.hs \
758 3add7574 Iustin Pop
	src/Ganeti/Query/Server.hs \
759 3add7574 Iustin Pop
	src/Ganeti/Query/Types.hs \
760 3add7574 Iustin Pop
	src/Ganeti/Rpc.hs \
761 3add7574 Iustin Pop
	src/Ganeti/Runtime.hs \
762 3add7574 Iustin Pop
	src/Ganeti/Ssconf.hs \
763 c5f6cba2 Helga Velroyen
	src/Ganeti/Storage/Diskstats/Parser.hs \
764 c5f6cba2 Helga Velroyen
	src/Ganeti/Storage/Diskstats/Types.hs \
765 c5f6cba2 Helga Velroyen
	src/Ganeti/Storage/Drbd/Parser.hs \
766 c5f6cba2 Helga Velroyen
	src/Ganeti/Storage/Drbd/Types.hs \
767 bdf51a05 Michele Tartara
	src/Ganeti/Storage/Lvm/LVParser.hs \
768 bdf51a05 Michele Tartara
	src/Ganeti/Storage/Lvm/Types.hs \
769 00839a42 Helga Velroyen
	src/Ganeti/Storage/Utils.hs \
770 3add7574 Iustin Pop
	src/Ganeti/THH.hs \
771 6897a51e Petr Pudlak
	src/Ganeti/THH/PyType.hs \
772 3add7574 Iustin Pop
	src/Ganeti/Types.hs \
773 71a4c605 Petr Pudlak
	src/Ganeti/UDSServer.hs \
774 4a43365c Klaus Aehlig
	src/Ganeti/Utils.hs\
775 4a43365c Klaus Aehlig
	src/Ganeti/VCluster.hs
776 51309138 Iustin Pop
777 51309138 Iustin Pop
HS_TEST_SRCS = \
778 e4dac3e1 Jose A. Lopes
	test/hs/Test/AutoConf.hs \
779 83846468 Iustin Pop
	test/hs/Test/Ganeti/Attoparsec.hs \
780 83846468 Iustin Pop
	test/hs/Test/Ganeti/BasicTypes.hs \
781 83846468 Iustin Pop
	test/hs/Test/Ganeti/Common.hs \
782 83846468 Iustin Pop
	test/hs/Test/Ganeti/Confd/Types.hs \
783 83846468 Iustin Pop
	test/hs/Test/Ganeti/Confd/Utils.hs \
784 285d04a1 Jose A. Lopes
	test/hs/Test/Ganeti/Constants.hs \
785 83846468 Iustin Pop
	test/hs/Test/Ganeti/Daemon.hs \
786 83846468 Iustin Pop
	test/hs/Test/Ganeti/Errors.hs \
787 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
788 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Backend/Text.hs \
789 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/CLI.hs \
790 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Cluster.hs \
791 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Container.hs \
792 33ce4d2d Spyros Trigazis
	test/hs/Test/Ganeti/HTools/ExtLoader.hs \
793 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Graph.hs \
794 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Instance.hs \
795 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Loader.hs \
796 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Node.hs \
797 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/PeerMap.hs \
798 83846468 Iustin Pop
	test/hs/Test/Ganeti/HTools/Types.hs \
799 b8585908 Michele Tartara
	test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \
800 83846468 Iustin Pop
	test/hs/Test/Ganeti/JSON.hs \
801 83846468 Iustin Pop
	test/hs/Test/Ganeti/Jobs.hs \
802 83846468 Iustin Pop
	test/hs/Test/Ganeti/JQueue.hs \
803 588d0ee4 Jose A. Lopes
	test/hs/Test/Ganeti/Kvmd.hs \
804 83846468 Iustin Pop
	test/hs/Test/Ganeti/Luxi.hs \
805 83846468 Iustin Pop
	test/hs/Test/Ganeti/Network.hs \
806 83846468 Iustin Pop
	test/hs/Test/Ganeti/Objects.hs \
807 83846468 Iustin Pop
	test/hs/Test/Ganeti/OpCodes.hs \
808 3fd38382 Hrvoje Ribicic
	test/hs/Test/Ganeti/Query/Aliases.hs \
809 83846468 Iustin Pop
	test/hs/Test/Ganeti/Query/Filter.hs \
810 efa0d4fd Hrvoje Ribicic
	test/hs/Test/Ganeti/Query/Instance.hs \
811 83846468 Iustin Pop
	test/hs/Test/Ganeti/Query/Language.hs \
812 834bea99 Helga Velroyen
	test/hs/Test/Ganeti/Query/Network.hs \
813 83846468 Iustin Pop
	test/hs/Test/Ganeti/Query/Query.hs \
814 83846468 Iustin Pop
	test/hs/Test/Ganeti/Rpc.hs \
815 ca7b4f48 Iustin Pop
	test/hs/Test/Ganeti/Runtime.hs \
816 83846468 Iustin Pop
	test/hs/Test/Ganeti/Ssconf.hs \
817 c5f6cba2 Helga Velroyen
	test/hs/Test/Ganeti/Storage/Diskstats/Parser.hs \
818 c5f6cba2 Helga Velroyen
	test/hs/Test/Ganeti/Storage/Drbd/Parser.hs \
819 c5f6cba2 Helga Velroyen
	test/hs/Test/Ganeti/Storage/Drbd/Types.hs \
820 0cf8edad Michele Tartara
	test/hs/Test/Ganeti/Storage/Lvm/LVParser.hs \
821 83846468 Iustin Pop
	test/hs/Test/Ganeti/THH.hs \
822 83846468 Iustin Pop
	test/hs/Test/Ganeti/TestCommon.hs \
823 83846468 Iustin Pop
	test/hs/Test/Ganeti/TestHTools.hs \
824 83846468 Iustin Pop
	test/hs/Test/Ganeti/TestHelper.hs \
825 83846468 Iustin Pop
	test/hs/Test/Ganeti/Types.hs \
826 83846468 Iustin Pop
	test/hs/Test/Ganeti/Utils.hs
827 e4cc4c11 Iustin Pop
828 51309138 Iustin Pop
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
829 d6159933 Iustin Pop
830 b88fcdd0 Iustin Pop
HS_BUILT_SRCS = \
831 83846468 Iustin Pop
	test/hs/Test/Ganeti/TestImports.hs \
832 ca2d5dcc Jose A. Lopes
	src/AutoConf.hs \
833 1b2adaa6 Jose A. Lopes
	src/Ganeti/Hs2Py/ListConstants.hs \
834 cc40185c Iustin Pop
	src/Ganeti/Curl/Internal.hs \
835 3add7574 Iustin Pop
	src/Ganeti/Version.hs
836 cc40185c Iustin Pop
HS_BUILT_SRCS_IN = \
837 cc40185c Iustin Pop
	$(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \
838 580b1fdd Jose A. Lopes
	src/Ganeti/Curl/Internal.hsc \
839 1b2adaa6 Jose A. Lopes
	lib/_constants.py.in \
840 580b1fdd Jose A. Lopes
	lib/opcodes.py.in_after \
841 580b1fdd Jose A. Lopes
	lib/opcodes.py.in_before
842 d6159933 Iustin Pop
843 7ddd8e4c Iustin Pop
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
844 7ddd8e4c Iustin Pop
845 3735787e Iustin Pop
$(RUN_IN_TEMPDIR): | stamp-directories
846 c964d962 Michael Hanselmann
847 41806ef4 Michael Hanselmann
doc/html/index.html: ENABLE_MANPAGES =
848 41806ef4 Michael Hanselmann
doc/man-html/index.html: ENABLE_MANPAGES = 1
849 41806ef4 Michael Hanselmann
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
850 41806ef4 Michael Hanselmann
851 a2d917f3 Iustin Pop
# Note: we use here an order-only prerequisite, as the contents of
852 5b2983dd Jose A. Lopes
# _constants.py are not actually influencing the html build output: it
853 a2d917f3 Iustin Pop
# has to exist in order for the sphinx module to be loaded
854 a2d917f3 Iustin Pop
# successfully, but we certainly don't want the docs to be rebuilt if
855 a2d917f3 Iustin Pop
# it changes
856 41806ef4 Michael Hanselmann
doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \
857 41806ef4 Michael Hanselmann
	configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
858 580b1fdd Jose A. Lopes
	lib/build/shell_example_lexer.py lib/ht.py \
859 d6ee0e41 Michael Hanselmann
	doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \
860 405ee200 Jose A. Lopes
	autotools/sphinx-wrapper | $(BUILT_PYTHON_SOURCES)
861 d17e74b4 Iustin Pop
	@test -n "$(SPHINX)" || \
862 d17e74b4 Iustin Pop
	    { echo 'sphinx-build' not found during configure; exit 1; }
863 41806ef4 Michael Hanselmann
if !MANPAGES_IN_DOC
864 41806ef4 Michael Hanselmann
	if test -n '$(ENABLE_MANPAGES)'; then \
865 41806ef4 Michael Hanselmann
	  echo 'Man pages in documentation were disabled at configure time' >&2; \
866 41806ef4 Michael Hanselmann
	  exit 1; \
867 41806ef4 Michael Hanselmann
	fi
868 41806ef4 Michael Hanselmann
endif
869 06a6f2cc Michael Hanselmann
## Sphinx provides little control over what content should be included. Some
870 06a6f2cc Michael Hanselmann
## mechanisms exist, but they all have drawbacks or actual issues. Since we
871 06a6f2cc Michael Hanselmann
## build two different versions of the documentation--once without man pages and
872 06a6f2cc Michael Hanselmann
## once, if enabled, with them--some control is necessary. xmpp-wrapper provides
873 06a6f2cc Michael Hanselmann
## us with this, but requires running in a temporary directory. It moves the
874 06a6f2cc Michael Hanselmann
## correct files into place depending on environment variables.
875 41806ef4 Michael Hanselmann
	dir=$(dir $@) && \
876 41806ef4 Michael Hanselmann
	@mkdir_p@ $$dir && \
877 06a6f2cc Michael Hanselmann
	PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \
878 06a6f2cc Michael Hanselmann
	$(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \
879 13de7d59 Michael Hanselmann
	    -d . \
880 d17e74b4 Iustin Pop
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
881 d17e74b4 Iustin Pop
	    -D release="$(PACKAGE_VERSION)" \
882 f8e233a3 Iustin Pop
	    -D graphviz_dot="$(DOT)" \
883 41806ef4 Michael Hanselmann
	    -D enable_manpages="$(ENABLE_MANPAGES)" \
884 41806ef4 Michael Hanselmann
	    doc $(CURDIR)/$$dir && \
885 41806ef4 Michael Hanselmann
	rm -f $$dir/.buildinfo $$dir/objects.inv
886 13de7d59 Michael Hanselmann
	touch $@
887 13de7d59 Michael Hanselmann
888 c964d962 Michael Hanselmann
doc/html: doc/html/index.html
889 2ab2b9f5 Iustin Pop
890 41806ef4 Michael Hanselmann
doc/man-html: doc/man-html/index.html
891 41806ef4 Michael Hanselmann
892 cbf3d64b Michael Hanselmann
doc/install-quick.rst: INSTALL
893 b76aac08 Michael Hanselmann
doc/news.rst: NEWS
894 7a03d293 Michael Hanselmann
doc/upgrade.rst: UPGRADE
895 b76aac08 Michael Hanselmann
896 e8deef56 Michael Hanselmann
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
897 cbf3d64b Michael Hanselmann
	set -e; \
898 cbf3d64b Michael Hanselmann
	{ echo '.. This file is automatically updated at build time from $<.'; \
899 cbf3d64b Michael Hanselmann
	  echo '.. Do not edit.'; \
900 cbf3d64b Michael Hanselmann
	  echo; \
901 cbf3d64b Michael Hanselmann
	  cat $<; \
902 cbf3d64b Michael Hanselmann
	} > $@
903 cbf3d64b Michael Hanselmann
904 41806ef4 Michael Hanselmann
doc/manpages-enabled.rst: Makefile | $(built_base_sources)
905 41806ef4 Michael Hanselmann
	{ echo '.. This file is automatically generated, do not edit!'; \
906 41806ef4 Michael Hanselmann
	  echo ''; \
907 41806ef4 Michael Hanselmann
	  echo 'Man pages'; \
908 41806ef4 Michael Hanselmann
	  echo '========='; \
909 41806ef4 Michael Hanselmann
	  echo; \
910 41806ef4 Michael Hanselmann
	  echo '.. toctree::'; \
911 41806ef4 Michael Hanselmann
	  echo '   :maxdepth: 1'; \
912 41806ef4 Michael Hanselmann
	  echo; \
913 41806ef4 Michael Hanselmann
	  for i in $(notdir $(mandocrst)); do \
914 41806ef4 Michael Hanselmann
	    echo "   $$i"; \
915 41806ef4 Michael Hanselmann
	  done | LC_ALL=C sort; \
916 41806ef4 Michael Hanselmann
	} > $@
917 41806ef4 Michael Hanselmann
918 41806ef4 Michael Hanselmann
doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources)
919 41806ef4 Michael Hanselmann
if MANPAGES_IN_DOC
920 41806ef4 Michael Hanselmann
	{ echo '.. This file is automatically updated at build time from $<.'; \
921 41806ef4 Michael Hanselmann
	  echo '.. Do not edit.'; \
922 41806ef4 Michael Hanselmann
	  echo; \
923 41806ef4 Michael Hanselmann
	  echo "$*"; \
924 41806ef4 Michael Hanselmann
	  echo '=========================================='; \
925 41806ef4 Michael Hanselmann
	  tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \
926 41806ef4 Michael Hanselmann
	} > $@
927 41806ef4 Michael Hanselmann
else
928 41806ef4 Michael Hanselmann
	echo 'Man pages in documentation were disabled at configure time' >&2; \
929 41806ef4 Michael Hanselmann
	exit 1;
930 41806ef4 Michael Hanselmann
endif
931 41806ef4 Michael Hanselmann
932 d2f465dc Klaus Aehlig
doc/users/%: doc/users/%.in Makefile $(REPLACE_VARS_SED)
933 d2f465dc Klaus Aehlig
	cat $< | sed -f $(REPLACE_VARS_SED) | LC_ALL=C sort | uniq | (grep -v '^root' || true) > $@
934 d2f465dc Klaus Aehlig
935 d2f465dc Klaus Aehlig
userspecs = \
936 d2f465dc Klaus Aehlig
	doc/users/users \
937 d2f465dc Klaus Aehlig
	doc/users/groups \
938 d2f465dc Klaus Aehlig
	doc/users/groupmemberships
939 d2f465dc Klaus Aehlig
940 7e1ccbe0 Michael Hanselmann
# Things to build but not to install (add it to EXTRA_DIST if it should be
941 7e1ccbe0 Michael Hanselmann
# distributed)
942 7e1ccbe0 Michael Hanselmann
noinst_DATA = \
943 656a7fdf Iustin Pop
	$(BUILT_EXAMPLES) \
944 7e1ccbe0 Michael Hanselmann
	doc/examples/bash_completion \
945 e80aeb89 Michael Hanselmann
	doc/examples/bash_completion-debug \
946 d2f465dc Klaus Aehlig
	$(userspecs) \
947 7e1ccbe0 Michael Hanselmann
	$(manhtml)
948 f29266b4 Iustin Pop
949 d99dd9c7 Michele Tartara
if HAS_SPHINX
950 41806ef4 Michael Hanselmann
if MANPAGES_IN_DOC
951 41806ef4 Michael Hanselmann
noinst_DATA += doc/man-html
952 d99dd9c7 Michele Tartara
else
953 d99dd9c7 Michele Tartara
noinst_DATA += doc/html
954 d99dd9c7 Michele Tartara
endif
955 41806ef4 Michael Hanselmann
endif
956 41806ef4 Michael Hanselmann
957 4f3d5b76 Michael Hanselmann
gnt_scripts = \
958 e8230860 Michael Hanselmann
	scripts/gnt-backup \
959 e8230860 Michael Hanselmann
	scripts/gnt-cluster \
960 e8230860 Michael Hanselmann
	scripts/gnt-debug \
961 667dbd6b Adeodato Simo
	scripts/gnt-group \
962 e8230860 Michael Hanselmann
	scripts/gnt-instance \
963 e8230860 Michael Hanselmann
	scripts/gnt-job \
964 4e4b6b7a Apollon Oikonomopoulos
	scripts/gnt-network \
965 e8230860 Michael Hanselmann
	scripts/gnt-node \
966 b954f097 Constantinos Venetsanopoulos
	scripts/gnt-os \
967 b954f097 Constantinos Venetsanopoulos
	scripts/gnt-storage
968 e8230860 Michael Hanselmann
969 780060cb Klaus Aehlig
gnt_scripts_basenames = \
970 eb875ff1 Klaus Aehlig
	$(patsubst scripts/%,%,$(patsubst daemons/%,%,$(gnt_scripts) $(gnt_python_sbin_SCRIPTS)))
971 780060cb Klaus Aehlig
972 780060cb Klaus Aehlig
gnt_python_sbin_SCRIPTS = \
973 780060cb Klaus Aehlig
	$(PYTHON_BOOTSTRAP_SBIN)
974 780060cb Klaus Aehlig
975 780060cb Klaus Aehlig
gntpython_SCRIPTS = $(gnt_scripts)
976 780060cb Klaus Aehlig
977 0d2bf835 René Nussbaumer
PYTHON_BOOTSTRAP_SBIN = \
978 29d91329 Michael Hanselmann
	daemons/ganeti-masterd \
979 5119f2ec Michael Hanselmann
	daemons/ganeti-noded \
980 d9c82a4e Michael Hanselmann
	daemons/ganeti-rapi \
981 780060cb Klaus Aehlig
	daemons/ganeti-watcher
982 2d48a3a2 Michael Hanselmann
983 0d2bf835 René Nussbaumer
PYTHON_BOOTSTRAP = \
984 8e55e20f Michael Hanselmann
	tools/burnin \
985 d12b9f66 Michael Hanselmann
	tools/ensure-dirs \
986 d5fe5fa9 Michael Hanselmann
	tools/node-cleanup \
987 69e5fefc Michael Hanselmann
	tools/node-daemon-setup \
988 d12b9f66 Michael Hanselmann
	tools/prepare-node-join
989 0d2bf835 René Nussbaumer
990 a8c68e44 Michael Hanselmann
qa_scripts = \
991 a0c3e726 Michael Hanselmann
	qa/__init__.py \
992 a8c68e44 Michael Hanselmann
	qa/ganeti-qa.py \
993 a8c68e44 Michael Hanselmann
	qa/qa_cluster.py \
994 a8c68e44 Michael Hanselmann
	qa/qa_config.py \
995 a8c68e44 Michael Hanselmann
	qa/qa_daemon.py \
996 a8c68e44 Michael Hanselmann
	qa/qa_env.py \
997 a8c68e44 Michael Hanselmann
	qa/qa_error.py \
998 21bf2e2e Andrea Spadaccini
	qa/qa_group.py \
999 a8c68e44 Michael Hanselmann
	qa/qa_instance.py \
1000 8fada090 Michele Tartara
	qa/qa_instance_utils.py \
1001 09470dd8 Michael Hanselmann
	qa/qa_job.py \
1002 a5877534 Michele Tartara
	qa/qa_monitoring.py \
1003 a8c68e44 Michael Hanselmann
	qa/qa_node.py \
1004 a8c68e44 Michael Hanselmann
	qa/qa_os.py \
1005 a8c68e44 Michael Hanselmann
	qa/qa_rapi.py \
1006 a8c68e44 Michael Hanselmann
	qa/qa_tags.py \
1007 56803e14 Hrvoje Ribicic
	qa/qa_utils.py \
1008 56803e14 Hrvoje Ribicic
        qa/rapi-workload.py
1009 a8c68e44 Michael Hanselmann
1010 f4445f53 Petr Pudlak
bin_SCRIPTS = $(HS_BIN_PROGS)
1011 458a286a Iustin Pop
install-exec-hook:
1012 458a286a Iustin Pop
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
1013 7fa52acd Iustin Pop
# FIXME: this is a hardcoded logic, instead of auto-resolving
1014 7fa52acd Iustin Pop
	$(LN_S) -f ../../../bin/htools \
1015 a2d7ea09 Iustin Pop
	  $(DESTDIR)$(iallocatorsdir)/hail
1016 201b6c34 Iustin Pop
	for role in $(HS_BIN_ROLES); do \
1017 a2d7ea09 Iustin Pop
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
1018 201b6c34 Iustin Pop
	done
1019 d6159933 Iustin Pop
1020 9b6d2d92 Petr Pudlak
HS_SRCS = $(HS_LIBTESTBUILT_SRCS)
1021 d16e3ce4 Jose A. Lopes
1022 8a7738b9 Petr Pudlak
HS_MAKEFILE_GHC_SRCS = $(HS_SRC_PROGS:%=%.hs)
1023 8a7738b9 Petr Pudlak
if WANT_HSTESTS
1024 8a7738b9 Petr Pudlak
HS_MAKEFILE_GHC_SRCS += $(HS_TEST_PROGS:%=%.hs)
1025 8a7738b9 Petr Pudlak
endif
1026 8a7738b9 Petr Pudlak
Makefile.ghc: $(HS_MAKEFILE_GHC_SRCS) Makefile \
1027 8a7738b9 Petr Pudlak
              | $(built_base_sources) $(HS_BUILT_SRCS)
1028 8a7738b9 Petr Pudlak
	$(GHC) -M -dep-makefile $@ -dep-suffix $(HTEST_SUFFIX) $(HFLAGS) -itest/hs \
1029 8a7738b9 Petr Pudlak
		$(HS_PARALLEL3) $(HS_REGEX_PCRE) $(HEXTRA) $(HS_MAKEFILE_GHC_SRCS)
1030 d16e3ce4 Jose A. Lopes
1031 9b6d2d92 Petr Pudlak
@include_makefile_ghc@
1032 d16e3ce4 Jose A. Lopes
1033 9b6d2d92 Petr Pudlak
%.o:
1034 f0ac917e Petr Pudlak
	@echo '[GHC]: $@ <- $^'
1035 f0ac917e Petr Pudlak
	@$(GHC) -c $(HFLAGS) \
1036 9b6d2d92 Petr Pudlak
		$(HS_PARALLEL3) $(HS_REGEX_PCRE) $(HEXTRA) $(@:%.o=%.hs)
1037 9b6d2d92 Petr Pudlak
1038 9b6d2d92 Petr Pudlak
%.$(HTEST_SUFFIX)_o:
1039 f0ac917e Petr Pudlak
	@echo '[GHC]: $@ <- $^'
1040 f0ac917e Petr Pudlak
	@$(GHC) -c $(HTEST_FLAGS) \
1041 9b6d2d92 Petr Pudlak
		$(HS_PARALLEL3) $(HS_REGEX_PCRE) $(HEXTRA) $(@:%.$(HTEST_SUFFIX)_o=%.hs)
1042 d16e3ce4 Jose A. Lopes
1043 9b6d2d92 Petr Pudlak
%.hi: %.o ;
1044 9b6d2d92 Petr Pudlak
%.$(HTEST_SUFFIX)_hi: %.$(HTEST_SUFFIX)_o ;
1045 9b6d2d92 Petr Pudlak
1046 9b6d2d92 Petr Pudlak
$(HS_SRC_PROGS): %: %.o | stamp-directories
1047 9b6d2d92 Petr Pudlak
	$(GHC) $(HFLAGS) \
1048 9b6d2d92 Petr Pudlak
		$(HS_PARALLEL3) $(HS_REGEX_PCRE) $(HEXTRA) --make $(@:%=%.hs)
1049 9b6d2d92 Petr Pudlak
	@rm -f $(notdir $@).tix
1050 9b6d2d92 Petr Pudlak
	@touch "$@"
1051 9b6d2d92 Petr Pudlak
1052 9b6d2d92 Petr Pudlak
$(HS_TEST_PROGS): %: %.$(HTEST_SUFFIX)_o \
1053 9b6d2d92 Petr Pudlak
	                   | stamp-directories $(BUILT_PYTHON_SOURCES)
1054 9b6d2d92 Petr Pudlak
	@if [ "$(HS_NODEV)" ]; then \
1055 21a5e56c Iustin Pop
	  echo "Error: cannot run unittests without the development" \
1056 21a5e56c Iustin Pop
	       " libraries (see devnotes.rst)" 1>&2; \
1057 fd0bc853 Iustin Pop
	  exit 1; \
1058 49e11c49 Iustin Pop
	fi
1059 9b6d2d92 Petr Pudlak
	$(GHC) $(HTEST_FLAGS) \
1060 9b6d2d92 Petr Pudlak
		$(HS_PARALLEL3) $(HS_REGEX_PCRE) $(HEXTRA) --make $(@:%=%.hs)
1061 f0f3a6df Iustin Pop
	@rm -f $(notdir $@).tix
1062 70b6c284 Iustin Pop
	@touch "$@"
1063 70b6c284 Iustin Pop
1064 da7e44ee Michael Hanselmann
dist_sbin_SCRIPTS = \
1065 da7e44ee Michael Hanselmann
	tools/ganeti-listrunner
1066 4f3d5b76 Michael Hanselmann
1067 fc3fd894 Michael Hanselmann
nodist_sbin_SCRIPTS = \
1068 46118ed2 Iustin Pop
	daemons/ganeti-cleaner
1069 fc3fd894 Michael Hanselmann
1070 9cf292af Klaus Aehlig
# strip path prefixes off the sbin scripts
1071 9cf292af Klaus Aehlig
all_sbin_scripts = \
1072 9cf292af Klaus Aehlig
	$(patsubst tools/%,%,$(patsubst daemons/%,%,$(patsubst scripts/%,%,\
1073 9cf292af Klaus Aehlig
	$(patsubst src/%,%,$(dist_sbin_SCRIPTS) $(nodist_sbin_SCRIPTS)))))
1074 9cf292af Klaus Aehlig
1075 04520998 Iustin Pop
if ENABLE_CONFD
1076 3add7574 Iustin Pop
src/ganeti-confd: src/hconfd
1077 b0dcdc10 Iustin Pop
	cp -f $< $@
1078 b0dcdc10 Iustin Pop
1079 3695a4e0 Thomas Thrainer
src/ganeti-luxid: src/hluxid
1080 670e954a Thomas Thrainer
	cp -f $< $@
1081 670e954a Thomas Thrainer
1082 3add7574 Iustin Pop
nodist_sbin_SCRIPTS += src/ganeti-confd
1083 3695a4e0 Thomas Thrainer
nodist_sbin_SCRIPTS += src/ganeti-luxid
1084 d6769989 Jose A. Lopes
nodist_sbin_SCRIPTS += src/ganeti-kvmd
1085 73b0fa69 Iustin Pop
endif
1086 73b0fa69 Iustin Pop
1087 13cc7b84 Michele Tartara
if ENABLE_MOND
1088 13cc7b84 Michele Tartara
nodist_sbin_SCRIPTS += src/ganeti-mond
1089 13cc7b84 Michele Tartara
endif
1090 13cc7b84 Michele Tartara
1091 cc120286 Bernardo Dal Seno
python_scripts = \
1092 e8230860 Michael Hanselmann
	tools/cfgshell \
1093 e8230860 Michael Hanselmann
	tools/cfgupgrade \
1094 b5672ea0 Iustin Pop
	tools/cfgupgrade12 \
1095 1f7d3f7d René Nussbaumer
	tools/cluster-merge \
1096 4ef0399b Iustin Pop
	tools/confd-client \
1097 d62cbd3a Michael Hanselmann
	tools/fmtjson \
1098 ea5fd476 Iustin Pop
	tools/lvmstrap \
1099 6bf273d5 Michael Hanselmann
	tools/move-instance \
1100 ced78a66 Agata Murawska
	tools/ovfconverter \
1101 fba59beb Klaus Aehlig
	tools/post-upgrade \
1102 8a670753 Michael Hanselmann
	tools/sanitize-config
1103 e8230860 Michael Hanselmann
1104 61631293 Stephen Shirley
dist_tools_SCRIPTS = \
1105 2f4c951e Stephen Shirley
	tools/kvm-console-wrapper \
1106 dad26941 Iustin Pop
	tools/master-ip-setup \
1107 b9612abb Iustin Pop
	tools/xen-console-wrapper
1108 61631293 Stephen Shirley
1109 90015bdd Klaus Aehlig
dist_tools_python_SCRIPTS = \
1110 90015bdd Klaus Aehlig
	$(python_scripts) \
1111 90015bdd Klaus Aehlig
	tools/burnin
1112 90015bdd Klaus Aehlig
1113 780060cb Klaus Aehlig
nodist_tools_python_SCRIPTS = \
1114 d5fe5fa9 Michael Hanselmann
	tools/node-cleanup
1115 d5fe5fa9 Michael Hanselmann
1116 90015bdd Klaus Aehlig
tools_python_basenames = $(patsubst tools/%,%,\
1117 90015bdd Klaus Aehlig
	$(dist_tools_python_SCRIPTS) $(nodist_tools_python_SCRIPTS))
1118 eb875ff1 Klaus Aehlig
1119 29386d3e Michael Hanselmann
nodist_tools_SCRIPTS = \
1120 cdd27f7f Michele Tartara
	tools/users-setup \
1121 29386d3e Michael Hanselmann
	tools/vcluster-setup
1122 29386d3e Michael Hanselmann
1123 eb875ff1 Klaus Aehlig
tools_basenames = $(patsubst tools/%,%,$(nodist_tools_SCRIPTS) $(dist_tools_SCRIPTS))
1124 eb875ff1 Klaus Aehlig
1125 2d76b580 Michael Hanselmann
pkglib_python_scripts = \
1126 c6ccba7e Michael Hanselmann
	daemons/import-export \
1127 c6ccba7e Michael Hanselmann
	tools/check-cert-expired
1128 2d76b580 Michael Hanselmann
1129 0d2bf835 René Nussbaumer
nodist_pkglib_python_scripts = \
1130 d12b9f66 Michael Hanselmann
	tools/ensure-dirs \
1131 69e5fefc Michael Hanselmann
	tools/node-daemon-setup \
1132 d12b9f66 Michael Hanselmann
	tools/prepare-node-join
1133 0d2bf835 René Nussbaumer
1134 eb875ff1 Klaus Aehlig
pkglib_python_basenames = \
1135 eb875ff1 Klaus Aehlig
	$(patsubst daemons/%,%,$(patsubst tools/%,%,\
1136 eb875ff1 Klaus Aehlig
	$(pkglib_python_scripts) $(nodist_pkglib_python_scripts)))
1137 eb875ff1 Klaus Aehlig
1138 b8fe7ca6 Iustin Pop
myexeclib_SCRIPTS = \
1139 2d76b580 Michael Hanselmann
	daemons/daemon-util \
1140 26916aad Apollon Oikonomopoulos
	tools/kvm-ifup \
1141 4855760b Dimitris Aragiorgis
	tools/vif-ganeti \
1142 4855760b Dimitris Aragiorgis
	tools/net-common \
1143 6249f1c2 Michele Tartara
	$(HS_MYEXECLIB_PROGS)
1144 f154a7a3 Michael Hanselmann
1145 eb875ff1 Klaus Aehlig
# compute the basenames of the myexeclib_scripts
1146 eb875ff1 Klaus Aehlig
myexeclib_scripts_basenames = \
1147 eb875ff1 Klaus Aehlig
	$(patsubst tools/%,%,$(patsubst daemons/%,%,$(patsubst src/%,%,$(myexeclib_SCRIPTS))))
1148 eb0413c6 Klaus Aehlig
1149 e8230860 Michael Hanselmann
EXTRA_DIST = \
1150 e8230860 Michael Hanselmann
	NEWS \
1151 7a03d293 Michael Hanselmann
	UPGRADE \
1152 f774bd03 Michael Hanselmann
	epydoc.conf.in \
1153 70c771f6 Michael Hanselmann
	pylintrc \
1154 bd39b6bb Thomas Thrainer
	pylintrc-test \
1155 bb46a96c Michael Hanselmann
	autotools/build-bash-completion \
1156 d5a2a550 Michael Hanselmann
	autotools/build-rpc \
1157 5d3c30df Michael Hanselmann
	autotools/check-header \
1158 f6cbcc06 Michael Hanselmann
	autotools/check-imports \
1159 c55cc346 Iustin Pop
	autotools/check-man-dashes \
1160 58997abb Michael Hanselmann
	autotools/check-man-references \
1161 73d0e218 Iustin Pop
	autotools/check-man-warnings \
1162 c81ed2b2 Michael Hanselmann
	autotools/check-news \
1163 dad26941 Iustin Pop
	autotools/check-python-code \
1164 e627fe09 Michael Hanselmann
	autotools/check-tar \
1165 96602be4 Michael Hanselmann
	autotools/check-version \
1166 95eb4188 Michael Hanselmann
	autotools/docpp \
1167 208b02e3 Iustin Pop
	autotools/gen-py-coverage \
1168 08a8acda Jose A. Lopes
	autotools/print-py-constants \
1169 41806ef4 Michael Hanselmann
	autotools/sphinx-wrapper \
1170 df69e0a0 Bernardo Dal Seno
	autotools/testrunner \
1171 387863a5 Iustin Pop
	autotools/wrong-hardcoded-paths \
1172 f3313af5 Guido Trotter
	$(RUN_IN_TEMPDIR) \
1173 f154a7a3 Michael Hanselmann
	daemons/daemon-util.in \
1174 fc3fd894 Michael Hanselmann
	daemons/ganeti-cleaner.in \
1175 2d76b580 Michael Hanselmann
	$(pkglib_python_scripts) \
1176 f9435bdc Iustin Pop
	devel/upload \
1177 c46a9ffb Michael Hanselmann
	devel/webserver \
1178 26916aad Apollon Oikonomopoulos
	tools/kvm-ifup.in \
1179 4855760b Dimitris Aragiorgis
	tools/vif-ganeti.in \
1180 4855760b Dimitris Aragiorgis
	tools/net-common.in \
1181 29386d3e Michael Hanselmann
	tools/vcluster-setup.in \
1182 7cf58cad Michael Hanselmann
	$(docinput) \
1183 d17e74b4 Iustin Pop
	doc/html \
1184 656a7fdf Iustin Pop
	$(BUILT_EXAMPLES:%=%.in) \
1185 752a8ca8 Michael Hanselmann
	doc/examples/ganeti.default \
1186 752a8ca8 Michael Hanselmann
	doc/examples/ganeti.default-debug \
1187 d6d9ce45 Guido Trotter
	doc/examples/hooks/ethers \
1188 89c04c2d Guido Trotter
	doc/examples/gnt-debug/README \
1189 89c04c2d Guido Trotter
	doc/examples/gnt-debug/delay0.json \
1190 89c04c2d Guido Trotter
	doc/examples/gnt-debug/delay50.json \
1191 d2f465dc Klaus Aehlig
	doc/users/groupmemberships.in \
1192 d2f465dc Klaus Aehlig
	doc/users/groups.in \
1193 d2f465dc Klaus Aehlig
	doc/users/users.in \
1194 e8230860 Michael Hanselmann
	$(dist_TESTS) \
1195 e8230860 Michael Hanselmann
	$(TEST_FILES) \
1196 3efa7659 Thomas Thrainer
	$(python_test_support) \
1197 6be8e2bf Iustin Pop
	man/footer.rst \
1198 6be8e2bf Iustin Pop
	$(manrst) \
1199 f727d134 Michael Hanselmann
	$(maninput) \
1200 39e0d19e Michael Hanselmann
	qa/qa-sample.json \
1201 d6159933 Iustin Pop
	$(qa_scripts) \
1202 51309138 Iustin Pop
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
1203 5a1e31b4 Iustin Pop
	$(HS_PROG_SRCS) \
1204 3add7574 Iustin Pop
	src/lint-hints.hs \
1205 83846468 Iustin Pop
	test/hs/cli-tests-defs.sh \
1206 83846468 Iustin Pop
	test/hs/offline-test.sh \
1207 7a07475f Iustin Pop
	.ghci
1208 e8230860 Michael Hanselmann
1209 e8230860 Michael Hanselmann
man_MANS = \
1210 bae7e531 Michael Hanselmann
	man/ganeti-cleaner.8 \
1211 b7b7cda6 Guido Trotter
	man/ganeti-confd.8 \
1212 3695a4e0 Thomas Thrainer
	man/ganeti-luxid.8 \
1213 da7e44ee Michael Hanselmann
	man/ganeti-listrunner.8 \
1214 f0caa4be Jose A. Lopes
	man/ganeti-kvmd.8 \
1215 320d986d Iustin Pop
	man/ganeti-masterd.8 \
1216 13cc7b84 Michele Tartara
	man/ganeti-mond.8 \
1217 e8230860 Michael Hanselmann
	man/ganeti-noded.8 \
1218 e8230860 Michael Hanselmann
	man/ganeti-os-interface.7 \
1219 95b92c34 Constantinos Venetsanopoulos
	man/ganeti-extstorage-interface.7 \
1220 320d986d Iustin Pop
	man/ganeti-rapi.8 \
1221 e8230860 Michael Hanselmann
	man/ganeti-watcher.8 \
1222 dad26941 Iustin Pop
	man/ganeti.7 \
1223 e8230860 Michael Hanselmann
	man/gnt-backup.8 \
1224 e8230860 Michael Hanselmann
	man/gnt-cluster.8 \
1225 d3b4cf9f Iustin Pop
	man/gnt-debug.8 \
1226 667dbd6b Adeodato Simo
	man/gnt-group.8 \
1227 4e4b6b7a Apollon Oikonomopoulos
	man/gnt-network.8 \
1228 e8230860 Michael Hanselmann
	man/gnt-instance.8 \
1229 d3b4cf9f Iustin Pop
	man/gnt-job.8 \
1230 e8230860 Michael Hanselmann
	man/gnt-node.8 \
1231 5a19bd35 Iustin Pop
	man/gnt-os.8 \
1232 95b92c34 Constantinos Venetsanopoulos
	man/gnt-storage.8 \
1233 5a19bd35 Iustin Pop
	man/hail.1 \
1234 a755f3a0 Michele Tartara
	man/harep.1 \
1235 5a19bd35 Iustin Pop
	man/hbal.1 \
1236 f18e4168 Iustin Pop
	man/hcheck.1 \
1237 e2bdaf25 René Nussbaumer
	man/hinfo.1 \
1238 5a19bd35 Iustin Pop
	man/hscan.1 \
1239 d26d808a Iustin Pop
	man/hspace.1 \
1240 9e354be4 Klaus Aehlig
	man/hsqueeze.1 \
1241 3504d6c8 Guido Trotter
	man/hroller.1 \
1242 332b1340 Michele Tartara
	man/htools.1 \
1243 332b1340 Michele Tartara
	man/mon-collector.7
1244 e8230860 Michael Hanselmann
1245 5ce58234 Michael Hanselmann
# Remove extensions from all filenames in man_MANS
1246 5ce58234 Michael Hanselmann
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
1247 5ce58234 Michael Hanselmann
1248 5ce58234 Michael Hanselmann
manrst = $(patsubst %,%.rst,$(mannoext))
1249 6be8e2bf Iustin Pop
manhtml = $(patsubst %.rst,%.html,$(manrst))
1250 fcdb582d Michael Hanselmann
mangen = $(patsubst %.rst,%.gen,$(manrst))
1251 25c92bc5 Michael Hanselmann
maninput = \
1252 5a19bd35 Iustin Pop
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
1253 de8eea3e Iustin Pop
	$(patsubst %.html,%.html.in,$(manhtml)) \
1254 6aff0514 Iustin Pop
	$(mangen)
1255 e8230860 Michael Hanselmann
1256 9cf292af Klaus Aehlig
manfullpath = $(patsubst man/%.1,man1/%.1,\
1257 9cf292af Klaus Aehlig
	$(patsubst man/%.7,man7/%.7,\
1258 9cf292af Klaus Aehlig
	$(patsubst man/%.8,man8/%.8,$(man_MANS))))
1259 9cf292af Klaus Aehlig
1260 e8230860 Michael Hanselmann
TEST_FILES = \
1261 00734cae Michele Tartara
	test/autotools/autotools-check-news.test \
1262 83846468 Iustin Pop
	test/data/htools/clean-nonzero-score.data \
1263 83846468 Iustin Pop
	test/data/htools/common-suffix.data \
1264 83846468 Iustin Pop
	test/data/htools/empty-cluster.data \
1265 83846468 Iustin Pop
	test/data/htools/hail-alloc-drbd.json \
1266 017160ed Thomas Thrainer
	test/data/htools/hail-alloc-invalid-network.json \
1267 e0d15aae Klaus Aehlig
	test/data/htools/hail-alloc-invalid-twodisks.json \
1268 017160ed Thomas Thrainer
	test/data/htools/hail-alloc-restricted-network.json \
1269 d7976f54 Bernardo Dal Seno
	test/data/htools/hail-alloc-spindles.json \
1270 e0d15aae Klaus Aehlig
	test/data/htools/hail-alloc-twodisks.json \
1271 83846468 Iustin Pop
	test/data/htools/hail-change-group.json \
1272 83846468 Iustin Pop
	test/data/htools/hail-invalid-reloc.json \
1273 83846468 Iustin Pop
	test/data/htools/hail-node-evac.json \
1274 83846468 Iustin Pop
	test/data/htools/hail-reloc-drbd.json \
1275 f8d4db63 Klaus Aehlig
	test/data/htools/hbal-dyn.data \
1276 83846468 Iustin Pop
	test/data/htools/hbal-excl-tags.data \
1277 83846468 Iustin Pop
	test/data/htools/hbal-split-insts.data \
1278 a93e5814 Bernardo Dal Seno
	test/data/htools/hspace-tiered-dualspec-exclusive.data \
1279 8abeb641 Bernardo Dal Seno
	test/data/htools/hspace-tiered-dualspec.data \
1280 a93e5814 Bernardo Dal Seno
	test/data/htools/hspace-tiered-exclusive.data \
1281 6b502fa3 Klaus Aehlig
	test/data/htools/hspace-tiered-ipolicy.data \
1282 a93e5814 Bernardo Dal Seno
	test/data/htools/hspace-tiered-mixed.data \
1283 f624a8eb Klaus Aehlig
	test/data/htools/hspace-tiered-resourcetypes.data \
1284 d90b69f6 Bernardo Dal Seno
	test/data/htools/hspace-tiered-vcpu.data \
1285 8abeb641 Bernardo Dal Seno
	test/data/htools/hspace-tiered.data \
1286 83846468 Iustin Pop
	test/data/htools/invalid-node.data \
1287 83846468 Iustin Pop
	test/data/htools/missing-resources.data \
1288 754b9b1c Klaus Aehlig
	test/data/htools/multiple-master.data \
1289 62441832 Klaus Aehlig
	test/data/htools/multiple-tags.data \
1290 83846468 Iustin Pop
	test/data/htools/n1-failure.data \
1291 83846468 Iustin Pop
	test/data/htools/rapi/groups.json \
1292 83846468 Iustin Pop
	test/data/htools/rapi/info.json \
1293 83846468 Iustin Pop
	test/data/htools/rapi/instances.json \
1294 83846468 Iustin Pop
	test/data/htools/rapi/nodes.json \
1295 ed74dde5 Klaus Aehlig
	test/data/htools/hroller-full.data \
1296 dd0b06d0 Klaus Aehlig
	test/data/htools/hroller-nodegroups.data \
1297 8840de6f Klaus Aehlig
	test/data/htools/hroller-nonredundant.data \
1298 2a1737eb Klaus Aehlig
	test/data/htools/hroller-online.data \
1299 25b2392b Klaus Aehlig
	test/data/htools/hsqueeze-mixed-instances.data \
1300 65d356d2 Klaus Aehlig
	test/data/htools/hsqueeze-overutilized.data \
1301 1c912fd2 Klaus Aehlig
	test/data/htools/hsqueeze-underutilized.data \
1302 754b9b1c Klaus Aehlig
	test/data/htools/unique-reboot-order.data \
1303 83846468 Iustin Pop
	test/hs/shelltests/htools-balancing.test \
1304 83846468 Iustin Pop
	test/hs/shelltests/htools-basic.test \
1305 83846468 Iustin Pop
	test/hs/shelltests/htools-dynutil.test \
1306 83846468 Iustin Pop
	test/hs/shelltests/htools-excl.test \
1307 83846468 Iustin Pop
	test/hs/shelltests/htools-hail.test \
1308 754b9b1c Klaus Aehlig
	test/hs/shelltests/htools-hroller.test \
1309 83846468 Iustin Pop
	test/hs/shelltests/htools-hspace.test \
1310 1c912fd2 Klaus Aehlig
	test/hs/shelltests/htools-hsqueeze.test \
1311 83846468 Iustin Pop
	test/hs/shelltests/htools-invalid.test \
1312 83846468 Iustin Pop
	test/hs/shelltests/htools-multi-group.test \
1313 83846468 Iustin Pop
	test/hs/shelltests/htools-no-backend.test \
1314 83846468 Iustin Pop
	test/hs/shelltests/htools-rapi.test \
1315 83846468 Iustin Pop
	test/hs/shelltests/htools-single-group.test \
1316 83846468 Iustin Pop
	test/hs/shelltests/htools-text-backend.test \
1317 83846468 Iustin Pop
	test/hs/shelltests/htools-mon-collector.test \
1318 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-8.0.txt \
1319 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-8.3.txt \
1320 5520d04d Thomas Thrainer
	test/data/bdev-drbd-8.4.txt \
1321 8520f4b9 Thomas Thrainer
	test/data/bdev-drbd-8.4-no-disk-params.txt \
1322 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-disk.txt \
1323 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-net-ip4.txt \
1324 5a672c30 Manuel Franceschini
	test/data/bdev-drbd-net-ip6.txt \
1325 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/json_output_empty.txt \
1326 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/json_output_extra_matches.txt \
1327 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/json_output_no_matches.txt \
1328 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/json_output_ok.txt \
1329 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/plain_output_new_extra_matches.txt \
1330 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/plain_output_new_no_matches.txt \
1331 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/plain_output_new_ok.txt \
1332 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/plain_output_old_empty.txt \
1333 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/plain_output_old_extra_matches.txt \
1334 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/plain_output_old_no_matches.txt \
1335 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/plain_output_old_ok.txt \
1336 2e076ede Stratos Psomadakis
	test/data/bdev-rbd/output_invalid.txt \
1337 27e46076 Michael Hanselmann
	test/data/cert1.pem \
1338 d12b9f66 Michael Hanselmann
	test/data/cert2.pem \
1339 cd315ad9 Bernardo Dal Seno
	test/data/cluster_config_2.7.json \
1340 c294f84e Bernardo Dal Seno
	test/data/cluster_config_2.8.json \
1341 bcab7a50 Michele Tartara
	test/data/cluster_config_2.9.json \
1342 c7a02959 Thomas Thrainer
	test/data/cluster_config_2.10.json \
1343 d78970ba Michele Tartara
	test/data/instance-minor-pairing.txt \
1344 820ca72d Michele Tartara
	test/data/instance-prim-sec.txt \
1345 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-dummy0.txt \
1346 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-ipv4.txt \
1347 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-ipv6.txt \
1348 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
1349 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
1350 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo-oneline.txt \
1351 e5d1d1b5 Andrea Spadaccini
	test/data/ip-addr-show-lo.txt \
1352 585c8187 Guido Trotter
	test/data/kvm_0.12.5_help.txt \
1353 dad26941 Iustin Pop
	test/data/kvm_0.15.90_help.txt \
1354 585c8187 Guido Trotter
	test/data/kvm_0.9.1_help.txt \
1355 eb7a6965 Guido Trotter
	test/data/kvm_0.9.1_help_boot_test.txt \
1356 dad26941 Iustin Pop
	test/data/kvm_1.0_help.txt \
1357 eb7a6965 Guido Trotter
	test/data/kvm_1.1.2_help.txt \
1358 fda3d987 Dimitris Aragiorgis
	test/data/kvm_runtime.json \
1359 0cf8edad Michele Tartara
	test/data/lvs_lv.txt \
1360 00734cae Michele Tartara
	test/data/NEWS_OK.txt \
1361 00734cae Michele Tartara
	test/data/NEWS_previous_unreleased.txt \
1362 1e6fab60 Agata Murawska
	test/data/ovfdata/compr_disk.vmdk.gz \
1363 d92518d3 Agata Murawska
	test/data/ovfdata/config.ini \
1364 1e6fab60 Agata Murawska
	test/data/ovfdata/corrupted_resources.ovf \
1365 d92518d3 Agata Murawska
	test/data/ovfdata/empty.ini \
1366 1e6fab60 Agata Murawska
	test/data/ovfdata/empty.ovf \
1367 1e6fab60 Agata Murawska
	test/data/ovfdata/ganeti.mf \
1368 1e6fab60 Agata Murawska
	test/data/ovfdata/ganeti.ovf \
1369 1e6fab60 Agata Murawska
	test/data/ovfdata/gzip_disk.ovf \
1370 1e6fab60 Agata Murawska
	test/data/ovfdata/new_disk.vmdk \
1371 d92518d3 Agata Murawska
	test/data/ovfdata/no_disk.ini \
1372 1e6fab60 Agata Murawska
	test/data/ovfdata/no_disk_in_ref.ovf \
1373 d92518d3 Agata Murawska
	test/data/ovfdata/no_os.ini \
1374 1e6fab60 Agata Murawska
	test/data/ovfdata/no_ovf.ova \
1375 dad26941 Iustin Pop
	test/data/ovfdata/other/rawdisk.raw \
1376 1e6fab60 Agata Murawska
	test/data/ovfdata/ova.ova \
1377 d92518d3 Agata Murawska
	test/data/ovfdata/rawdisk.raw \
1378 dad26941 Iustin Pop
	test/data/ovfdata/second_disk.vmdk \
1379 d92518d3 Agata Murawska
	test/data/ovfdata/unsafe_path.ini \
1380 1e6fab60 Agata Murawska
	test/data/ovfdata/virtualbox.ovf \
1381 d92518d3 Agata Murawska
	test/data/ovfdata/wrong_config.ini \
1382 dad26941 Iustin Pop
	test/data/ovfdata/wrong_extension.ovd \
1383 1e6fab60 Agata Murawska
	test/data/ovfdata/wrong_manifest.mf \
1384 1e6fab60 Agata Murawska
	test/data/ovfdata/wrong_manifest.ovf \
1385 1e6fab60 Agata Murawska
	test/data/ovfdata/wrong_ova.ova \
1386 1e6fab60 Agata Murawska
	test/data/ovfdata/wrong_xml.ovf \
1387 3ed5cd7e Michele Tartara
	test/data/proc_diskstats.txt \
1388 dad26941 Iustin Pop
	test/data/proc_drbd8.txt \
1389 dad26941 Iustin Pop
	test/data/proc_drbd80-emptyline.txt \
1390 d41efc42 Thomas Thrainer
	test/data/proc_drbd80-emptyversion.txt \
1391 dad26941 Iustin Pop
	test/data/proc_drbd83.txt \
1392 dad26941 Iustin Pop
	test/data/proc_drbd83_sync.txt \
1393 a52f8e72 Michele Tartara
	test/data/proc_drbd83_sync_want.txt \
1394 dad26941 Iustin Pop
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
1395 efa6dd08 Thomas Thrainer
	test/data/proc_drbd84.txt \
1396 efa6dd08 Thomas Thrainer
	test/data/proc_drbd84_sync.txt \
1397 902eb29f Michele Tartara
	test/data/proc_meminfo.txt \
1398 902eb29f Michele Tartara
	test/data/proc_cpuinfo.txt \
1399 a08e181f Michael Hanselmann
	test/data/qa-minimal-nodes-instances-only.json \
1400 dad26941 Iustin Pop
	test/data/sys_drbd_usermode_helper.txt \
1401 1a1e7ab3 Iustin Pop
	test/data/vgreduce-removemissing-2.02.02.txt \
1402 1a1e7ab3 Iustin Pop
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
1403 1a1e7ab3 Iustin Pop
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
1404 1a1e7ab3 Iustin Pop
	test/data/vgs-missing-pvs-2.02.02.txt \
1405 1a1e7ab3 Iustin Pop
	test/data/vgs-missing-pvs-2.02.66.txt \
1406 06c9a520 Michael Hanselmann
	test/data/xen-xm-info-4.0.1.txt \
1407 b255379d Michael Hanselmann
	test/data/xen-xm-list-4.0.1-dom0-only.txt \
1408 b255379d Michael Hanselmann
	test/data/xen-xm-list-4.0.1-four-instances.txt \
1409 b8585908 Michele Tartara
	test/data/xen-xm-list-long-4.0.1.txt \
1410 c5a957c3 Michele Tartara
	test/data/xen-xm-uptime-4.0.1.txt \
1411 90066780 Iustin Pop
	test/py/ganeti-cli.test \
1412 90066780 Iustin Pop
	test/py/gnt-cli.test \
1413 90066780 Iustin Pop
	test/py/import-export_unittest-helper
1414 e8230860 Michael Hanselmann
1415 00734cae Michele Tartara
1416 e8c8cf1a Michael Hanselmann
python_tests = \
1417 3ade0e0e Michael Hanselmann
	doc/examples/rapi_testutils.py \
1418 a80e802a Thomas Thrainer
	test/py/cmdlib/backup_unittest.py \
1419 19830e88 Thomas Thrainer
	test/py/cmdlib/cluster_unittest.py \
1420 1fa88aa6 Thomas Thrainer
	test/py/cmdlib/cmdlib_unittest.py \
1421 66222813 Thomas Thrainer
	test/py/cmdlib/group_unittest.py \
1422 66222813 Thomas Thrainer
	test/py/cmdlib/instance_unittest.py \
1423 d1b2ffe8 Thomas Thrainer
	test/py/cmdlib/instance_migration_unittest.py \
1424 2f3230f6 Thomas Thrainer
	test/py/cmdlib/instance_query_unittest.py \
1425 1fa88aa6 Thomas Thrainer
	test/py/cmdlib/instance_storage_unittest.py \
1426 55ba3ad6 Sebastian Gebhard
	test/py/cmdlib/node_unittest.py \
1427 66222813 Thomas Thrainer
	test/py/cmdlib/test_unittest.py \
1428 90066780 Iustin Pop
	test/py/cfgupgrade_unittest.py \
1429 90066780 Iustin Pop
	test/py/docs_unittest.py \
1430 90066780 Iustin Pop
	test/py/ganeti.asyncnotifier_unittest.py \
1431 90066780 Iustin Pop
	test/py/ganeti.backend_unittest-runasroot.py \
1432 90066780 Iustin Pop
	test/py/ganeti.backend_unittest.py \
1433 5030cff3 Helga Velroyen
	test/py/ganeti.bootstrap_unittest.py \
1434 90066780 Iustin Pop
	test/py/ganeti.cli_unittest.py \
1435 90066780 Iustin Pop
	test/py/ganeti.client.gnt_cluster_unittest.py \
1436 90066780 Iustin Pop
	test/py/ganeti.client.gnt_instance_unittest.py \
1437 90066780 Iustin Pop
	test/py/ganeti.client.gnt_job_unittest.py \
1438 90066780 Iustin Pop
	test/py/ganeti.compat_unittest.py \
1439 90066780 Iustin Pop
	test/py/ganeti.confd.client_unittest.py \
1440 90066780 Iustin Pop
	test/py/ganeti.config_unittest.py \
1441 90066780 Iustin Pop
	test/py/ganeti.constants_unittest.py \
1442 90066780 Iustin Pop
	test/py/ganeti.daemon_unittest.py \
1443 90066780 Iustin Pop
	test/py/ganeti.errors_unittest.py \
1444 90066780 Iustin Pop
	test/py/ganeti.hooks_unittest.py \
1445 90066780 Iustin Pop
	test/py/ganeti.ht_unittest.py \
1446 90066780 Iustin Pop
	test/py/ganeti.http_unittest.py \
1447 90066780 Iustin Pop
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
1448 90066780 Iustin Pop
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
1449 90066780 Iustin Pop
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1450 90066780 Iustin Pop
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1451 90066780 Iustin Pop
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
1452 90066780 Iustin Pop
	test/py/ganeti.hypervisor_unittest.py \
1453 90066780 Iustin Pop
	test/py/ganeti.impexpd_unittest.py \
1454 90066780 Iustin Pop
	test/py/ganeti.jqueue_unittest.py \
1455 90066780 Iustin Pop
	test/py/ganeti.jstore_unittest.py \
1456 90066780 Iustin Pop
	test/py/ganeti.locking_unittest.py \
1457 90066780 Iustin Pop
	test/py/ganeti.luxi_unittest.py \
1458 90066780 Iustin Pop
	test/py/ganeti.masterd.iallocator_unittest.py \
1459 90066780 Iustin Pop
	test/py/ganeti.masterd.instance_unittest.py \
1460 90066780 Iustin Pop
	test/py/ganeti.mcpu_unittest.py \
1461 90066780 Iustin Pop
	test/py/ganeti.netutils_unittest.py \
1462 90066780 Iustin Pop
	test/py/ganeti.objects_unittest.py \
1463 90066780 Iustin Pop
	test/py/ganeti.opcodes_unittest.py \
1464 473d87a3 Iustin Pop
	test/py/ganeti.outils_unittest.py \
1465 90066780 Iustin Pop
	test/py/ganeti.ovf_unittest.py \
1466 90066780 Iustin Pop
	test/py/ganeti.qlang_unittest.py \
1467 90066780 Iustin Pop
	test/py/ganeti.query_unittest.py \
1468 90066780 Iustin Pop
	test/py/ganeti.rapi.baserlib_unittest.py \
1469 90066780 Iustin Pop
	test/py/ganeti.rapi.client_unittest.py \
1470 90066780 Iustin Pop
	test/py/ganeti.rapi.resources_unittest.py \
1471 90066780 Iustin Pop
	test/py/ganeti.rapi.rlib2_unittest.py \
1472 90066780 Iustin Pop
	test/py/ganeti.rapi.testutils_unittest.py \
1473 90066780 Iustin Pop
	test/py/ganeti.rpc_unittest.py \
1474 912b2278 Petr Pudlak
	test/py/ganeti.rpc.client_unittest.py \
1475 90066780 Iustin Pop
	test/py/ganeti.runtime_unittest.py \
1476 90066780 Iustin Pop
	test/py/ganeti.serializer_unittest.py \
1477 90066780 Iustin Pop
	test/py/ganeti.server.rapi_unittest.py \
1478 90066780 Iustin Pop
	test/py/ganeti.ssconf_unittest.py \
1479 90066780 Iustin Pop
	test/py/ganeti.ssh_unittest.py \
1480 f08b1a00 Helga Velroyen
	test/py/ganeti.storage.bdev_unittest.py \
1481 f08b1a00 Helga Velroyen
	test/py/ganeti.storage.container_unittest.py \
1482 f08b1a00 Helga Velroyen
	test/py/ganeti.storage.drbd_unittest.py \
1483 820bade9 Helga Velroyen
	test/py/ganeti.storage.filestorage_unittest.py \
1484 8106dd64 Santi Raffa
	test/py/ganeti.storage.gluster_unittest.py \
1485 43a840a3 Michael Hanselmann
	test/py/ganeti.tools.burnin_unittest.py \
1486 90066780 Iustin Pop
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1487 90066780 Iustin Pop
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1488 90066780 Iustin Pop
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1489 90066780 Iustin Pop
	test/py/ganeti.uidpool_unittest.py \
1490 90066780 Iustin Pop
	test/py/ganeti.utils.algo_unittest.py \
1491 90066780 Iustin Pop
	test/py/ganeti.utils.filelock_unittest.py \
1492 90066780 Iustin Pop
	test/py/ganeti.utils.hash_unittest.py \
1493 90066780 Iustin Pop
	test/py/ganeti.utils.io_unittest-runasroot.py \
1494 90066780 Iustin Pop
	test/py/ganeti.utils.io_unittest.py \
1495 90066780 Iustin Pop
	test/py/ganeti.utils.log_unittest.py \
1496 23d95cff Bernardo Dal Seno
	test/py/ganeti.utils.lvm_unittest.py \
1497 90066780 Iustin Pop
	test/py/ganeti.utils.mlock_unittest.py \
1498 90066780 Iustin Pop
	test/py/ganeti.utils.nodesetup_unittest.py \
1499 90066780 Iustin Pop
	test/py/ganeti.utils.process_unittest.py \
1500 90066780 Iustin Pop
	test/py/ganeti.utils.retry_unittest.py \
1501 3338a9ce Helga Velroyen
	test/py/ganeti.utils.security_unittest.py \
1502 683335b3 Helga Velroyen
	test/py/ganeti.utils.storage_unittest.py \
1503 90066780 Iustin Pop
	test/py/ganeti.utils.text_unittest.py \
1504 1eda3dd3 Klaus Aehlig
	test/py/ganeti.utils.version_unittest.py \
1505 90066780 Iustin Pop
	test/py/ganeti.utils.wrapper_unittest.py \
1506 90066780 Iustin Pop
	test/py/ganeti.utils.x509_unittest.py \
1507 90066780 Iustin Pop
	test/py/ganeti.utils_unittest.py \
1508 90066780 Iustin Pop
	test/py/ganeti.vcluster_unittest.py \
1509 90066780 Iustin Pop
	test/py/ganeti.workerpool_unittest.py \
1510 90066780 Iustin Pop
	test/py/pycurl_reset_unittest.py \
1511 90066780 Iustin Pop
	test/py/qa.qa_config_unittest.py \
1512 90066780 Iustin Pop
	test/py/tempfile_fork_unittest.py
1513 e8230860 Michael Hanselmann
1514 3efa7659 Thomas Thrainer
python_test_support = \
1515 3efa7659 Thomas Thrainer
	test/py/__init__.py \
1516 3efa7659 Thomas Thrainer
	test/py/lockperf.py \
1517 3efa7659 Thomas Thrainer
	test/py/testutils.py \
1518 3efa7659 Thomas Thrainer
	test/py/mocks.py \
1519 3efa7659 Thomas Thrainer
	test/py/cmdlib/__init__.py \
1520 3efa7659 Thomas Thrainer
	test/py/cmdlib/testsupport/__init__.py \
1521 3efa7659 Thomas Thrainer
	test/py/cmdlib/testsupport/cmdlib_testcase.py \
1522 3efa7659 Thomas Thrainer
	test/py/cmdlib/testsupport/config_mock.py \
1523 3efa7659 Thomas Thrainer
	test/py/cmdlib/testsupport/iallocator_mock.py \
1524 3efa7659 Thomas Thrainer
	test/py/cmdlib/testsupport/lock_manager_mock.py \
1525 08cef8fc Thomas Thrainer
	test/py/cmdlib/testsupport/netutils_mock.py \
1526 3efa7659 Thomas Thrainer
	test/py/cmdlib/testsupport/processor_mock.py \
1527 08cef8fc Thomas Thrainer
	test/py/cmdlib/testsupport/rpc_runner_mock.py \
1528 08cef8fc Thomas Thrainer
	test/py/cmdlib/testsupport/ssh_mock.py \
1529 3388debb Thomas Thrainer
	test/py/cmdlib/testsupport/utils_mock.py \
1530 08cef8fc Thomas Thrainer
	test/py/cmdlib/testsupport/util.py
1531 3efa7659 Thomas Thrainer
1532 3e16567e Iustin Pop
haskell_tests = test/hs/htest
1533 b91e9518 Iustin Pop
1534 e8c8cf1a Michael Hanselmann
dist_TESTS = \
1535 90066780 Iustin Pop
	test/py/check-cert-expired_unittest.bash \
1536 90066780 Iustin Pop
	test/py/daemon-util_unittest.bash \
1537 90066780 Iustin Pop
	test/py/ganeti-cleaner_unittest.bash \
1538 90066780 Iustin Pop
	test/py/import-export_unittest.bash \
1539 90066780 Iustin Pop
	test/py/cli-test.bash \
1540 e03e445c Michele Tartara
	test/py/bash_completion.bash
1541 e03e445c Michele Tartara
1542 d14d93b0 Helga Velroyen
if PY_UNIT
1543 d14d93b0 Helga Velroyen
dist_TESTS += $(python_tests)
1544 e03e445c Michele Tartara
endif
1545 e8c8cf1a Michael Hanselmann
1546 e8230860 Michael Hanselmann
nodist_TESTS =
1547 d3cd5a3f Iustin Pop
check_SCRIPTS =
1548 d3cd5a3f Iustin Pop
1549 d9a900dc Iustin Pop
if WANT_HSTESTS
1550 b91e9518 Iustin Pop
nodist_TESTS += $(haskell_tests)
1551 5ac4e986 Petr Pudlak
# test dependency
1552 5ac4e986 Petr Pudlak
test/hs/offline-test.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
1553 83846468 Iustin Pop
dist_TESTS += test/hs/offline-test.sh
1554 cefd4a4a Michele Tartara
check_SCRIPTS += \
1555 83846468 Iustin Pop
	test/hs/hpc-htools \
1556 83846468 Iustin Pop
	test/hs/hpc-mon-collector \
1557 cefd4a4a Michele Tartara
	$(HS_BUILT_TEST_HELPERS)
1558 b91e9518 Iustin Pop
endif
1559 e8230860 Michael Hanselmann
1560 e8230860 Michael Hanselmann
TESTS = $(dist_TESTS) $(nodist_TESTS)
1561 e8230860 Michael Hanselmann
1562 27e336af Michael Hanselmann
# Environment for all tests
1563 27e336af Michael Hanselmann
PLAIN_TESTS_ENVIRONMENT = \
1564 3efa7659 Thomas Thrainer
	PYTHONPATH=.:./test/py \
1565 30f2802f Iustin Pop
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1566 30f2802f Iustin Pop
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1567 30f2802f Iustin Pop
	$(RUN_IN_TEMPDIR)
1568 27e336af Michael Hanselmann
1569 27e336af Michael Hanselmann
# Environment for tests run by automake
1570 f848ac00 Michael Hanselmann
TESTS_ENVIRONMENT = \
1571 e8c8cf1a Michael Hanselmann
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1572 6e06b36c Iustin Pop
1573 eed5c5df Michael Hanselmann
all_python_code = \
1574 01a3a718 Michael Hanselmann
	$(dist_sbin_SCRIPTS) \
1575 cc120286 Bernardo Dal Seno
	$(python_scripts) \
1576 2d76b580 Michael Hanselmann
	$(pkglib_python_scripts) \
1577 0d2bf835 René Nussbaumer
	$(nodist_pkglib_python_scripts) \
1578 d5fe5fa9 Michael Hanselmann
	$(nodist_tools_python_scripts) \
1579 01a3a718 Michael Hanselmann
	$(pkgpython_PYTHON) \
1580 2d48a3a2 Michael Hanselmann
	$(client_PYTHON) \
1581 1da489e2 Guido Trotter
	$(cmdlib_PYTHON) \
1582 01a3a718 Michael Hanselmann
	$(hypervisor_PYTHON) \
1583 cde49218 Helga Velroyen
	$(storage_PYTHON) \
1584 01a3a718 Michael Hanselmann
	$(rapi_PYTHON) \
1585 899c4d2c Michael Hanselmann
	$(server_PYTHON) \
1586 4869595d Petr Pudlak
	$(rpc_PYTHON) \
1587 0d2bf835 René Nussbaumer
	$(pytools_PYTHON) \
1588 01a3a718 Michael Hanselmann
	$(http_PYTHON) \
1589 01a3a718 Michael Hanselmann
	$(confd_PYTHON) \
1590 dc101ecc Michael Hanselmann
	$(masterd_PYTHON) \
1591 bb44b1ae Michael Hanselmann
	$(impexpd_PYTHON) \
1592 c047a981 Michael Hanselmann
	$(utils_PYTHON) \
1593 9f4bb951 Michael Hanselmann
	$(watcher_PYTHON) \
1594 a8c68e44 Michael Hanselmann
	$(noinst_PYTHON) \
1595 a8c68e44 Michael Hanselmann
	$(qa_scripts)
1596 01a3a718 Michael Hanselmann
1597 d14d93b0 Helga Velroyen
if PY_UNIT
1598 d14d93b0 Helga Velroyen
all_python_code += $(python_tests)
1599 3efa7659 Thomas Thrainer
all_python_code += $(python_test_support)
1600 e03e445c Michele Tartara
endif
1601 e03e445c Michele Tartara
1602 eed5c5df Michael Hanselmann
srclink_files = \
1603 6be8e2bf Iustin Pop
	man/footer.rst \
1604 90066780 Iustin Pop
	test/py/check-cert-expired_unittest.bash \
1605 90066780 Iustin Pop
	test/py/daemon-util_unittest.bash \
1606 90066780 Iustin Pop
	test/py/ganeti-cleaner_unittest.bash \
1607 90066780 Iustin Pop
	test/py/import-export_unittest.bash \
1608 90066780 Iustin Pop
	test/py/cli-test.bash \
1609 90066780 Iustin Pop
	test/py/bash_completion.bash \
1610 83846468 Iustin Pop
	test/hs/offline-test.sh \
1611 83846468 Iustin Pop
	test/hs/cli-tests-defs.sh \
1612 d6159933 Iustin Pop
	$(all_python_code) \
1613 7cf58cad Michael Hanselmann
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1614 7cf58cad Michael Hanselmann
	$(docinput)
1615 eed5c5df Michael Hanselmann
1616 eed5c5df Michael Hanselmann
check_python_code = \
1617 e4e7c7df Michael Hanselmann
	$(BUILD_BASH_COMPLETION) \
1618 f6cbcc06 Michael Hanselmann
	$(CHECK_IMPORTS) \
1619 5d3c30df Michael Hanselmann
	$(CHECK_HEADER) \
1620 95eb4188 Michael Hanselmann
	$(DOCPP) \
1621 eed5c5df Michael Hanselmann
	$(all_python_code)
1622 eed5c5df Michael Hanselmann
1623 e4e7c7df Michael Hanselmann
lint_python_code = \
1624 f60d352e Michael Hanselmann
	ganeti \
1625 f1763373 Iustin Pop
	ganeti/http/server.py \
1626 f60d352e Michael Hanselmann
	$(dist_sbin_SCRIPTS) \
1627 cc120286 Bernardo Dal Seno
	$(python_scripts) \
1628 2d76b580 Michael Hanselmann
	$(pkglib_python_scripts) \
1629 2cc8bdd0 Michael Hanselmann
	$(BUILD_BASH_COMPLETION) \
1630 f6cbcc06 Michael Hanselmann
	$(CHECK_IMPORTS) \
1631 5d3c30df Michael Hanselmann
	$(CHECK_HEADER) \
1632 95eb4188 Michael Hanselmann
	$(DOCPP) \
1633 780060cb Klaus Aehlig
	$(gnt_python_sbin_SCRIPTS) \
1634 2cc8bdd0 Michael Hanselmann
	$(PYTHON_BOOTSTRAP)
1635 eed5c5df Michael Hanselmann
1636 f6cbcc06 Michael Hanselmann
standalone_python_modules = \
1637 f6cbcc06 Michael Hanselmann
	lib/rapi/client.py \
1638 f6cbcc06 Michael Hanselmann
	tools/ganeti-listrunner
1639 f6cbcc06 Michael Hanselmann
1640 21bf2e2e Andrea Spadaccini
pep8_python_code = \
1641 21bf2e2e Andrea Spadaccini
	ganeti \
1642 21bf2e2e Andrea Spadaccini
	ganeti/http/server.py \
1643 21bf2e2e Andrea Spadaccini
	$(dist_sbin_SCRIPTS) \
1644 cc120286 Bernardo Dal Seno
	$(python_scripts) \
1645 21bf2e2e Andrea Spadaccini
	$(pkglib_python_scripts) \
1646 21bf2e2e Andrea Spadaccini
	$(BUILD_BASH_COMPLETION) \
1647 5d3c30df Michael Hanselmann
	$(CHECK_HEADER) \
1648 21bf2e2e Andrea Spadaccini
	$(DOCPP) \
1649 21bf2e2e Andrea Spadaccini
	$(PYTHON_BOOTSTRAP) \
1650 780060cb Klaus Aehlig
	$(gnt_python_sbin_SCRIPTS) \
1651 bd39b6bb Thomas Thrainer
	qa \
1652 bd39b6bb Thomas Thrainer
	$(python_test_support)
1653 21bf2e2e Andrea Spadaccini
1654 90066780 Iustin Pop
test/py/daemon-util_unittest.bash: daemons/daemon-util
1655 571b34f8 Michael Hanselmann
1656 90066780 Iustin Pop
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1657 7172f605 Michael Hanselmann
1658 90066780 Iustin Pop
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1659 92886204 Michael Hanselmann
1660 26916aad Apollon Oikonomopoulos
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1661 26916aad Apollon Oikonomopoulos
	sed -f $(REPLACE_VARS_SED) < $< > $@
1662 26916aad Apollon Oikonomopoulos
	chmod +x $@
1663 26916aad Apollon Oikonomopoulos
1664 4855760b Dimitris Aragiorgis
tools/vif-ganeti: tools/vif-ganeti.in $(REPLACE_VARS_SED)
1665 4855760b Dimitris Aragiorgis
	sed -f $(REPLACE_VARS_SED) < $< > $@
1666 4855760b Dimitris Aragiorgis
	chmod +x $@
1667 4855760b Dimitris Aragiorgis
1668 4855760b Dimitris Aragiorgis
tools/net-common: tools/net-common.in $(REPLACE_VARS_SED)
1669 4855760b Dimitris Aragiorgis
	sed -f $(REPLACE_VARS_SED) < $< > $@
1670 4855760b Dimitris Aragiorgis
	chmod +x $@
1671 4855760b Dimitris Aragiorgis
1672 7822dd66 Klaus Aehlig
tools/users-setup: Makefile $(userspecs)
1673 7822dd66 Klaus Aehlig
	set -e; \
1674 7822dd66 Klaus Aehlig
	{ echo '#!/bin/sh'; \
1675 9317e5dc Klaus Aehlig
	  echo 'if [ "x$$1" != "x--yes-do-it" ];'; \
1676 9317e5dc Klaus Aehlig
	  echo 'then echo "This will do the following changes"'; \
1677 9317e5dc Klaus Aehlig
	  $(AWK) -- '{print "echo + Will add group ",$$1; count++}\
1678 9317e5dc Klaus Aehlig
	             END {if (count == 0) {print "echo + No groups to add"}}' doc/users/groups; \
1679 9317e5dc Klaus Aehlig
	  $(AWK) -- '{if (NF > 1) {print "echo + Will add user",$$1,"with primary group",$$2} \
1680 9317e5dc Klaus Aehlig
	                          else {print "echo + Will add user",$$1}; count++}\
1681 9317e5dc Klaus Aehlig
	             END {if (count == 0) {print "echo + No users to add"}}' doc/users/users; \
1682 9317e5dc Klaus Aehlig
	  $(AWK) -- '{print "echo + Will add user",$$1,"to group",$$2}' doc/users/groupmemberships; \
1683 9317e5dc Klaus Aehlig
	  echo 'echo'; \
1684 9317e5dc Klaus Aehlig
	  echo 'echo "OK? (y/n)"'; \
1685 9317e5dc Klaus Aehlig
	  echo 'read confirm'; \
1686 9317e5dc Klaus Aehlig
	  echo 'if [ "x$$confirm" != "xy" ]; then exit 0; fi'; \
1687 9317e5dc Klaus Aehlig
	  echo 'fi'; \
1688 7822dd66 Klaus Aehlig
	  $(AWK) -- '{print "addgroup --system",$$1}' doc/users/groups; \
1689 7822dd66 Klaus Aehlig
	  $(AWK) -- '{if (NF > 1) {print "adduser --system --ingroup",$$2,$$1} else {print "adduser --system",$$1}}' doc/users/users; \
1690 7822dd66 Klaus Aehlig
	  $(AWK) -- '{print "adduser",$$1,$$2}' doc/users/groupmemberships; \
1691 7822dd66 Klaus Aehlig
	} > $@
1692 cdd27f7f Michele Tartara
	chmod +x $@
1693 cdd27f7f Michele Tartara
1694 29386d3e Michael Hanselmann
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1695 29386d3e Michael Hanselmann
	sed -f $(REPLACE_VARS_SED) < $< > $@
1696 29386d3e Michael Hanselmann
	chmod +x $@
1697 29386d3e Michael Hanselmann
1698 490bec02 Iustin Pop
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1699 e8230860 Michael Hanselmann
	sed -f $(REPLACE_VARS_SED) < $< > $@
1700 5c566e17 Michael Hanselmann
	chmod +x $@
1701 e8230860 Michael Hanselmann
1702 490bec02 Iustin Pop
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1703 e8230860 Michael Hanselmann
	sed -f $(REPLACE_VARS_SED) < $< > $@
1704 e8230860 Michael Hanselmann
1705 e80aeb89 Michael Hanselmann
doc/examples/bash_completion: BC_ARGS = --compact
1706 e80aeb89 Michael Hanselmann
doc/examples/bash_completion-debug: BC_ARGS =
1707 e80aeb89 Michael Hanselmann
1708 e80aeb89 Michael Hanselmann
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1709 e80aeb89 Michael Hanselmann
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1710 4c3d5fb6 Iustin Pop
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1711 46118ed2 Iustin Pop
	daemons/ganeti-cleaner \
1712 d9a900dc Iustin Pop
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1713 e80aeb89 Michael Hanselmann
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1714 e80aeb89 Michael Hanselmann
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1715 4f3d5b76 Michael Hanselmann
1716 7142485a Iustin Pop
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1717 d7772efa Iustin Pop
	lib/build/shell_example_lexer.py \
1718 a13d6911 Iustin Pop
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1719 387863a5 Iustin Pop
	@echo "Checking $< for hardcoded paths..."
1720 387863a5 Iustin Pop
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1721 58997abb Michael Hanselmann
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1722 387863a5 Iustin Pop
	  exit 1; \
1723 387863a5 Iustin Pop
	fi
1724 a13d6911 Iustin Pop
	set -e ; \
1725 a13d6911 Iustin Pop
	trap 'echo auto-removing $@; rm $@' EXIT; \
1726 a13d6911 Iustin Pop
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1727 58997abb Michael Hanselmann
	$(CHECK_MAN_REFERENCES) $@; \
1728 a13d6911 Iustin Pop
	trap - EXIT
1729 fcdb582d Michael Hanselmann
1730 37cfb91f Michael Hanselmann
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1731 6be8e2bf Iustin Pop
	@test -n "$(PANDOC)" || \
1732 6be8e2bf Iustin Pop
	  { echo 'pandoc' not found during configure; exit 1; }
1733 67c15d8b Iustin Pop
	set -o pipefail -e; \
1734 9c45babb Iustin Pop
	trap 'echo auto-removing $@; rm $@' EXIT; \
1735 6aff0514 Iustin Pop
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1736 9c45babb Iustin Pop
	  sed -e 's/\\@/@/g' > $@; \
1737 73d0e218 Iustin Pop
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1738 c55cc346 Iustin Pop
	$(CHECK_MAN_DASHES) $@; \
1739 9c45babb Iustin Pop
	trap - EXIT
1740 9c45babb Iustin Pop
1741 37cfb91f Michael Hanselmann
man/%.html.in: man/%.gen man/footer.rst
1742 6be8e2bf Iustin Pop
	@test -n "$(PANDOC)" || \
1743 6be8e2bf Iustin Pop
	  { echo 'pandoc' not found during configure; exit 1; }
1744 a01dd3c6 Iustin Pop
	set -o pipefail ; \
1745 74412d69 Iustin Pop
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1746 6be8e2bf Iustin Pop
	  sed -e 's/\\@/@/g' > $@
1747 6be8e2bf Iustin Pop
1748 55398706 Iustin Pop
man/%: man/%.in  $(REPLACE_VARS_SED)
1749 2ab2b9f5 Iustin Pop
	sed -f $(REPLACE_VARS_SED) < $< > $@
1750 f29266b4 Iustin Pop
1751 fc1282b8 Iustin Pop
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1752 fc1282b8 Iustin Pop
	sed -f $(REPLACE_VARS_SED) < $< > $@
1753 f774bd03 Michael Hanselmann
1754 84a12e40 Iustin Pop
vcs-version:
1755 84a12e40 Iustin Pop
	if test -d .git; then \
1756 84a12e40 Iustin Pop
	  git describe > $@; \
1757 84a12e40 Iustin Pop
	elif test ! -f $@ ; then \
1758 84a12e40 Iustin Pop
	  echo "Cannot auto-generate $@ file"; exit 1; \
1759 84a12e40 Iustin Pop
	fi
1760 84a12e40 Iustin Pop
1761 316dc1ff Iustin Pop
.PHONY: clean-vcs-version
1762 316dc1ff Iustin Pop
clean-vcs-version:
1763 316dc1ff Iustin Pop
	rm -f vcs-version
1764 316dc1ff Iustin Pop
1765 84a12e40 Iustin Pop
.PHONY: regen-vcs-version
1766 84a12e40 Iustin Pop
regen-vcs-version:
1767 6376dcc0 Iustin Pop
	@set -e; \
1768 84a12e40 Iustin Pop
	cd $(srcdir); \
1769 84a12e40 Iustin Pop
	if test -d .git; then \
1770 6376dcc0 Iustin Pop
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1771 6376dcc0 Iustin Pop
	  git describe > $$T; \
1772 6376dcc0 Iustin Pop
	  if ! cmp --quiet $$T vcs-version; then \
1773 6376dcc0 Iustin Pop
	    mv $$T vcs-version; \
1774 6376dcc0 Iustin Pop
	  fi; \
1775 84a12e40 Iustin Pop
	fi
1776 84a12e40 Iustin Pop
1777 3add7574 Iustin Pop
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1778 4c3d5fb6 Iustin Pop
	vcs-version $(built_base_sources)
1779 d6159933 Iustin Pop
	set -e; \
1780 d6159933 Iustin Pop
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1781 d6159933 Iustin Pop
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1782 d6159933 Iustin Pop
1783 1b2adaa6 Jose A. Lopes
src/Ganeti/Hs2Py/ListConstants.hs: src/Ganeti/Hs2Py/ListConstants.hs.in \
1784 e1235448 Jose A. Lopes
				   src/Ganeti/Constants.hs \
1785 1b2adaa6 Jose A. Lopes
			         | stamp-directories
1786 1b2adaa6 Jose A. Lopes
	@echo Generating $@
1787 1b2adaa6 Jose A. Lopes
	@set -e; \
1788 e1235448 Jose A. Lopes
## Extract constant names from 'Constants.hs' by extracting the left
1789 1b2adaa6 Jose A. Lopes
## side of all lines containing an equal sign (i.e., '=') and
1790 1b2adaa6 Jose A. Lopes
## prepending the apostrophe sign (i.e., "'").
1791 1b2adaa6 Jose A. Lopes
##
1792 1b2adaa6 Jose A. Lopes
## For example, the constant
1793 1b2adaa6 Jose A. Lopes
##   adminstDown = ...
1794 1b2adaa6 Jose A. Lopes
## becomes
1795 1b2adaa6 Jose A. Lopes
##   'adminstDown
1796 e1235448 Jose A. Lopes
	NAMES=$$(sed -e "/^--/ d" $(abs_top_srcdir)/src/Ganeti/Constants.hs |\
1797 398facd9 Jose A. Lopes
		 sed -n -e "/=/ s/\(.*\) =.*/    '\1:/g p"); \
1798 06929681 Petr Pudlak
	m4 -DPY_CONSTANT_NAMES="$$NAMES" \
1799 06929681 Petr Pudlak
		$(abs_top_srcdir)/src/Ganeti/Hs2Py/ListConstants.hs.in > $@
1800 1b2adaa6 Jose A. Lopes
1801 cc40185c Iustin Pop
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1802 cc40185c Iustin Pop
	hsc2hs -o $@ $<
1803 cc40185c Iustin Pop
1804 83846468 Iustin Pop
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1805 b88fcdd0 Iustin Pop
	$(built_base_sources)
1806 b88fcdd0 Iustin Pop
	set -e; \
1807 b88fcdd0 Iustin Pop
	{ cat $< ; \
1808 b88fcdd0 Iustin Pop
	  echo ; \
1809 3add7574 Iustin Pop
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1810 b88fcdd0 Iustin Pop
	    echo "import $$name ()" ; \
1811 b88fcdd0 Iustin Pop
	  done ; \
1812 b88fcdd0 Iustin Pop
	} > $@
1813 b88fcdd0 Iustin Pop
1814 88a0e24b Jose A. Lopes
lib/_constants.py: Makefile src/hs2py lib/_constants.py.in | stamp-directories
1815 1b2adaa6 Jose A. Lopes
	cat $(abs_top_srcdir)/lib/_constants.py.in > $@
1816 88a0e24b Jose A. Lopes
	src/hs2py --constants >> $@
1817 1b2adaa6 Jose A. Lopes
1818 1b2adaa6 Jose A. Lopes
lib/constants.py: lib/_constants.py
1819 1b2adaa6 Jose A. Lopes
1820 2df8f530 Jose A. Lopes
src/AutoConf.hs: Makefile src/AutoConf.hs.in $(PRINT_PY_CONSTANTS) \
1821 2df8f530 Jose A. Lopes
	       | $(built_base_sources)
1822 ca2d5dcc Jose A. Lopes
	@echo "m4 ... >" $@
1823 ca2d5dcc Jose A. Lopes
	@m4 -DPACKAGE_VERSION="$(PACKAGE_VERSION)" \
1824 ca2d5dcc Jose A. Lopes
	    -DVERSION_MAJOR="$(VERSION_MAJOR)" \
1825 ca2d5dcc Jose A. Lopes
	    -DVERSION_MINOR="$(VERSION_MINOR)" \
1826 ca2d5dcc Jose A. Lopes
	    -DVERSION_REVISION="$(VERSION_REVISION)" \
1827 ca2d5dcc Jose A. Lopes
	    -DVERSION_SUFFIX="$(VERSION_SUFFIX)" \
1828 ca2d5dcc Jose A. Lopes
	    -DVERSION_FULL="$(VERSION_FULL)" \
1829 9b20010b Klaus Aehlig
	    -DDIRVERSION="$(DIRVERSION)" \
1830 ca2d5dcc Jose A. Lopes
	    -DLOCALSTATEDIR="$(localstatedir)" \
1831 ca2d5dcc Jose A. Lopes
	    -DSYSCONFDIR="$(sysconfdir)" \
1832 ca2d5dcc Jose A. Lopes
	    -DSSH_CONFIG_DIR="$(SSH_CONFIG_DIR)" \
1833 ca2d5dcc Jose A. Lopes
	    -DSSH_LOGIN_USER="$(SSH_LOGIN_USER)" \
1834 ca2d5dcc Jose A. Lopes
	    -DSSH_CONSOLE_USER="$(SSH_CONSOLE_USER)" \
1835 ca2d5dcc Jose A. Lopes
	    -DEXPORT_DIR="$(EXPORT_DIR)" \
1836 f1b816b7 Jose A. Lopes
	    -DOS_SEARCH_PATH="\"$(OS_SEARCH_PATH)\"" \
1837 f1b816b7 Jose A. Lopes
	    -DES_SEARCH_PATH="\"$(ES_SEARCH_PATH)\"" \
1838 ca2d5dcc Jose A. Lopes
	    -DXEN_BOOTLOADER="$(XEN_BOOTLOADER)" \
1839 ca2d5dcc Jose A. Lopes
	    -DXEN_CONFIG_DIR="$(XEN_CONFIG_DIR)" \
1840 ca2d5dcc Jose A. Lopes
	    -DXEN_KERNEL="$(XEN_KERNEL)" \
1841 ca2d5dcc Jose A. Lopes
	    -DXEN_INITRD="$(XEN_INITRD)" \
1842 ca2d5dcc Jose A. Lopes
	    -DKVM_KERNEL="$(KVM_KERNEL)" \
1843 ca2d5dcc Jose A. Lopes
	    -DSHARED_FILE_STORAGE_DIR="$(SHARED_FILE_STORAGE_DIR)" \
1844 f1b816b7 Jose A. Lopes
	    -DIALLOCATOR_SEARCH_PATH="\"$(IALLOCATOR_SEARCH_PATH)\"" \
1845 ca2d5dcc Jose A. Lopes
	    -DKVM_PATH="$(KVM_PATH)" \
1846 ca2d5dcc Jose A. Lopes
	    -DIP_PATH="$(IP_PATH)" \
1847 ca2d5dcc Jose A. Lopes
	    -DSOCAT_PATH="$(SOCAT)" \
1848 ca2d5dcc Jose A. Lopes
	    -DSOCAT_USE_ESCAPE="$(SOCAT_USE_ESCAPE)" \
1849 ca2d5dcc Jose A. Lopes
	    -DSOCAT_USE_COMPRESS="$(SOCAT_USE_COMPRESS)" \
1850 ca2d5dcc Jose A. Lopes
	    -DLVM_STRIPECOUNT="$(LVM_STRIPECOUNT)" \
1851 cd238561 Jose A. Lopes
	    -DTOOLSDIR="$(libdir)/ganeti/tools" \
1852 ca2d5dcc Jose A. Lopes
	    -DGNT_SCRIPTS="$(foreach i,$(notdir $(gnt_scripts)),\"$(i)\":)" \
1853 ca2d5dcc Jose A. Lopes
	    -DHS_HTOOLS_PROGS="$(foreach i,$(HS_HTOOLS_PROGS),\"$(i)\":)" \
1854 9f8e85c6 Klaus Aehlig
	    -DPKGLIBDIR="$(libdir)/ganeti" \
1855 9bfcf2e9 Klaus Aehlig
	    -DSHAREDIR="$(prefix)/share/ganeti" \
1856 12475881 Klaus Aehlig
	    -DVERSIONEDSHAREDIR="$(versionedsharedir)" \
1857 ca2d5dcc Jose A. Lopes
	    -DDRBD_BARRIERS="$(DRBD_BARRIERS)" \
1858 ca2d5dcc Jose A. Lopes
	    -DDRBD_NO_META_FLUSH="$(DRBD_NO_META_FLUSH)" \
1859 ca2d5dcc Jose A. Lopes
	    -DSYSLOG_USAGE="$(SYSLOG_USAGE)" \
1860 ca2d5dcc Jose A. Lopes
	    -DDAEMONS_GROUP="$(DAEMONS_GROUP)" \
1861 ca2d5dcc Jose A. Lopes
	    -DADMIN_GROUP="$(ADMIN_GROUP)" \
1862 ca2d5dcc Jose A. Lopes
	    -DMASTERD_USER="$(MASTERD_USER)" \
1863 ca2d5dcc Jose A. Lopes
	    -DMASTERD_GROUP="$(MASTERD_GROUP)" \
1864 ca2d5dcc Jose A. Lopes
	    -DRAPI_USER="$(RAPI_USER)" \
1865 ca2d5dcc Jose A. Lopes
	    -DRAPI_GROUP="$(RAPI_GROUP)" \
1866 ca2d5dcc Jose A. Lopes
	    -DCONFD_USER="$(CONFD_USER)" \
1867 ca2d5dcc Jose A. Lopes
	    -DCONFD_GROUP="$(CONFD_GROUP)" \
1868 4084d18f Jose A. Lopes
	    -DKVMD_USER="$(KVMD_USER)" \
1869 4084d18f Jose A. Lopes
	    -DKVMD_GROUP="$(KVMD_GROUP)" \
1870 ca2d5dcc Jose A. Lopes
	    -DLUXID_USER="$(LUXID_USER)" \
1871 ca2d5dcc Jose A. Lopes
	    -DLUXID_GROUP="$(LUXID_GROUP)" \
1872 ca2d5dcc Jose A. Lopes
	    -DNODED_USER="$(NODED_USER)" \
1873 ca2d5dcc Jose A. Lopes
	    -DNODED_GROUP="$(NODED_GROUP)" \
1874 ca2d5dcc Jose A. Lopes
	    -DMOND_USER="$(MOND_USER)" \
1875 ca2d5dcc Jose A. Lopes
	    -DMOND_GROUP="$(MOND_GROUP)" \
1876 ca2d5dcc Jose A. Lopes
	    -DDISK_SEPARATOR="$(DISK_SEPARATOR)" \
1877 ca2d5dcc Jose A. Lopes
	    -DQEMUIMG_PATH="$(QEMUIMG_PATH)" \
1878 ca2d5dcc Jose A. Lopes
	    -DENABLE_CONFD="$(ENABLE_CONFD)" \
1879 ca2d5dcc Jose A. Lopes
	    -DXEN_CMD="$(XEN_CMD)" \
1880 ca2d5dcc Jose A. Lopes
	    -DENABLE_RESTRICTED_COMMANDS="$(ENABLE_RESTRICTED_COMMANDS)" \
1881 ca2d5dcc Jose A. Lopes
	    -DENABLE_MOND="$(ENABLE_MOND)" \
1882 d250bc5d Klaus Aehlig
	    -DHAS_GNU_LN="$(HAS_GNU_LN)" \
1883 ca2d5dcc Jose A. Lopes
	    -DMAN_PAGES="$$(for i in $(notdir $(man_MANS)); do \
1884 ca2d5dcc Jose A. Lopes
	                    echo -n "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/("\1",\2):/g'; \
1885 ca2d5dcc Jose A. Lopes
	                    done)" \
1886 2df8f530 Jose A. Lopes
	    -DAF_INET4="$$(PYTHONPATH=. python $(PRINT_PY_CONSTANTS) AF_INET4)" \
1887 2df8f530 Jose A. Lopes
	    -DAF_INET6="$$(PYTHONPATH=. python $(PRINT_PY_CONSTANTS) AF_INET6)" \
1888 ca2d5dcc Jose A. Lopes
	$(abs_top_srcdir)/src/AutoConf.hs.in > $@
1889 ca2d5dcc Jose A. Lopes
1890 3735787e Iustin Pop
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1891 13aeae6a Iustin Pop
	set -e; \
1892 13aeae6a Iustin Pop
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1893 13aeae6a Iustin Pop
	{ echo '# This file is automatically generated, do not edit!'; \
1894 13aeae6a Iustin Pop
	  echo '#'; \
1895 13aeae6a Iustin Pop
	  echo ''; \
1896 13aeae6a Iustin Pop
	  echo '"""Build-time VCS version number for Ganeti.'; \
1897 13aeae6a Iustin Pop
	  echo '';\
1898 13aeae6a Iustin Pop
	  echo 'This file is autogenerated by the build process.'; \
1899 13aeae6a Iustin Pop
	  echo 'For any changes you need to re-run ./configure (and'; \
1900 13aeae6a Iustin Pop
	  echo 'not edit by hand).'; \
1901 13aeae6a Iustin Pop
	  echo ''; \
1902 13aeae6a Iustin Pop
	  echo '"""'; \
1903 13aeae6a Iustin Pop
	  echo ''; \
1904 55766d34 Andrea Spadaccini
	  echo '# pylint: disable=C0301,C0324'; \
1905 13aeae6a Iustin Pop
	  echo '# because this is autogenerated, we do not want'; \
1906 13aeae6a Iustin Pop
	  echo '# style warnings' ; \
1907 13aeae6a Iustin Pop
	  echo ''; \
1908 13aeae6a Iustin Pop
	  echo "VCS_VERSION = '$$VCSVER'"; \
1909 13aeae6a Iustin Pop
	} > $@
1910 13aeae6a Iustin Pop
1911 88a0e24b Jose A. Lopes
lib/opcodes.py: Makefile src/hs2py lib/opcodes.py.in_before \
1912 88a0e24b Jose A. Lopes
		lib/opcodes.py.in_after | stamp-directories
1913 580b1fdd Jose A. Lopes
	cat $(abs_top_srcdir)/lib/opcodes.py.in_before > $@
1914 0c599ca0 Jose A. Lopes
	src/hs2py --opcodes >> $@
1915 580b1fdd Jose A. Lopes
	cat $(abs_top_srcdir)/lib/opcodes.py.in_after >> $@
1916 580b1fdd Jose A. Lopes
1917 96a7481d Michael Hanselmann
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1918 96a7481d Michael Hanselmann
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1919 d5a2a550 Michael Hanselmann
1920 6e3bf290 Michael Hanselmann
$(SHELL_ENV_INIT): Makefile stamp-directories
1921 6e3bf290 Michael Hanselmann
	set -e; \
1922 6e3bf290 Michael Hanselmann
	{ echo '# Allow overriding for tests'; \
1923 6e3bf290 Michael Hanselmann
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1924 6e3bf290 Michael Hanselmann
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1925 6e3bf290 Michael Hanselmann
	  echo; \
1926 9f8e85c6 Klaus Aehlig
	  echo 'readonly PKGLIBDIR=$(libdir)/ganeti'; \
1927 6e3bf290 Michael Hanselmann
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1928 6e3bf290 Michael Hanselmann
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1929 6e3bf290 Michael Hanselmann
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1930 6e3bf290 Michael Hanselmann
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1931 6e3bf290 Michael Hanselmann
	} > $@
1932 6e3bf290 Michael Hanselmann
1933 df1d5c8f Michael Hanselmann
## Writes sed script to replace placeholders with build-time values. The
1934 df1d5c8f Michael Hanselmann
## additional quotes after the first @ sign are necessary to stop configure
1935 df1d5c8f Michael Hanselmann
## from replacing those values as well.
1936 6e3bf290 Michael Hanselmann
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1937 e8230860 Michael Hanselmann
	set -e; \
1938 df1d5c8f Michael Hanselmann
	{ echo 's#@''PREFIX@#$(prefix)#g'; \
1939 df1d5c8f Michael Hanselmann
	  echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1940 df1d5c8f Michael Hanselmann
	  echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1941 ae6a0a7c Jose A. Lopes
	  echo 's#@''BINDIR@#$(BINDIR)#g'; \
1942 ae6a0a7c Jose A. Lopes
	  echo 's#@''SBINDIR@#$(SBINDIR)#g'; \
1943 df1d5c8f Michael Hanselmann
	  echo 's#@''LIBDIR@#$(libdir)#g'; \
1944 df1d5c8f Michael Hanselmann
	  echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1945 df1d5c8f Michael Hanselmann
	  echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1946 df1d5c8f Michael Hanselmann
	  echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1947 df1d5c8f Michael Hanselmann
	  echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1948 df1d5c8f Michael Hanselmann
	  echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1949 df1d5c8f Michael Hanselmann
	  echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1950 df1d5c8f Michael Hanselmann
	  echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1951 46204919 Klaus Aehlig
	  echo 's#@''PKGLIBDIR@#$(libdir)/ganeti#g'; \
1952 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1953 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1954 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1955 3695a4e0 Thomas Thrainer
	  echo 's#@''GNTLUXIDUSER@#$(LUXID_USER)#g'; \
1956 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1957 14013e5d Michele Tartara
	  echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1958 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1959 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1960 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1961 97b7831a Michele Tartara
	  echo 's#@''GNTNODEDGROUP@#$(NODED_GROUP)#g'; \
1962 3695a4e0 Thomas Thrainer
	  echo 's#@''GNTLUXIDGROUP@#$(LUXID_GROUP)#g'; \
1963 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1964 14013e5d Michele Tartara
	  echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1965 df1d5c8f Michael Hanselmann
	  echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1966 df1d5c8f Michael Hanselmann
	  echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1967 14013e5d Michele Tartara
	  echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1968 df1d5c8f Michael Hanselmann
	  echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1969 a8e8c0c6 Michael Hanselmann
	  echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1970 6e3bf290 Michael Hanselmann
	  echo; \
1971 6e3bf290 Michael Hanselmann
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1972 6e3bf290 Michael Hanselmann
	  echo '  r $(SHELL_ENV_INIT)'; \
1973 6e3bf290 Michael Hanselmann
	  echo '  d'; \
1974 6e3bf290 Michael Hanselmann
	  echo '}'; \
1975 e8230860 Michael Hanselmann
	} > $@
1976 e8230860 Michael Hanselmann
1977 67313146 Michael Hanselmann
# Using deferred evaluation
1978 899c4d2c Michael Hanselmann
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1979 9f4bb951 Michael Hanselmann
daemons/ganeti-watcher: MODULE = ganeti.watcher
1980 67313146 Michael Hanselmann
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1981 8e55e20f Michael Hanselmann
tools/burnin: MODULE = ganeti.tools.burnin
1982 0d2bf835 René Nussbaumer
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1983 69e5fefc Michael Hanselmann
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1984 d12b9f66 Michael Hanselmann
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1985 d5fe5fa9 Michael Hanselmann
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1986 83846468 Iustin Pop
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1987 67313146 Michael Hanselmann
1988 780060cb Klaus Aehlig
$(PYTHON_BOOTSTRAP) $(gnt_scripts) $(gnt_python_sbin_SCRIPTS): Makefile | stamp-directories
1989 67313146 Michael Hanselmann
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1990 2d48a3a2 Michael Hanselmann
	set -e; \
1991 d75e738e Michael Hanselmann
	{ echo '#!/usr/bin/python'; \
1992 2d48a3a2 Michael Hanselmann
	  echo '# This file is automatically generated, do not edit!'; \
1993 67313146 Michael Hanselmann
	  echo "# Edit $(MODULE) instead."; \
1994 2d48a3a2 Michael Hanselmann
	  echo; \
1995 67313146 Michael Hanselmann
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1996 2d48a3a2 Michael Hanselmann
	  echo; \
1997 55766d34 Andrea Spadaccini
	  echo '# pylint: disable=C0103'; \
1998 2d48a3a2 Michael Hanselmann
	  echo '# C0103: Invalid name'; \
1999 2d48a3a2 Michael Hanselmann
	  echo; \
2000 2d48a3a2 Michael Hanselmann
	  echo 'import sys'; \
2001 67313146 Michael Hanselmann
	  echo 'import $(MODULE) as main'; \
2002 2d48a3a2 Michael Hanselmann
	  echo; \
2003 2d48a3a2 Michael Hanselmann
	  echo '# Temporarily alias commands until bash completion'; \
2004 2d48a3a2 Michael Hanselmann
	  echo '# generator is changed'; \
2005 67313146 Michael Hanselmann
	  echo 'if hasattr(main, "commands"):'; \
2006 55766d34 Andrea Spadaccini
	  echo '  commands = main.commands # pylint: disable=E1101'; \
2007 3f42b4f6 Michael Hanselmann
	  echo 'if hasattr(main, "aliases"):'; \
2008 55766d34 Andrea Spadaccini
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
2009 2d48a3a2 Michael Hanselmann
	  echo; \
2010 2d48a3a2 Michael Hanselmann
	  echo 'if __name__ == "__main__":'; \
2011 67313146 Michael Hanselmann
	  echo '  sys.exit(main.Main())'; \
2012 2d48a3a2 Michael Hanselmann
	} > $@
2013 2d48a3a2 Michael Hanselmann
	chmod u+x $@
2014 2d48a3a2 Michael Hanselmann
2015 3096524e Iustin Pop
$(HS_BUILT_TEST_HELPERS): Makefile
2016 3096524e Iustin Pop
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
2017 3096524e Iustin Pop
	set -e; \
2018 3096524e Iustin Pop
	{ echo '#!/bin/sh'; \
2019 3096524e Iustin Pop
	  echo '# This file is automatically generated, do not edit!'; \
2020 3096524e Iustin Pop
	  echo "# Edit Makefile.am instead."; \
2021 3096524e Iustin Pop
	  echo; \
2022 83846468 Iustin Pop
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
2023 3096524e Iustin Pop
	} > $@
2024 3096524e Iustin Pop
	chmod u+x $@
2025 3096524e Iustin Pop
2026 3735787e Iustin Pop
stamp-directories: Makefile
2027 924ecd85 Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) ganeti
2028 3735787e Iustin Pop
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
2029 3735787e Iustin Pop
	touch $@
2030 3735787e Iustin Pop
2031 e8230860 Michael Hanselmann
# We need to create symlinks because "make distcheck" will not install Python
2032 e8230860 Michael Hanselmann
# files when building.
2033 3735787e Iustin Pop
stamp-srclinks: Makefile | stamp-directories
2034 e8230860 Michael Hanselmann
	set -e; \
2035 01a3a718 Michael Hanselmann
	for i in $(srclink_files); do \
2036 a2d7ea09 Iustin Pop
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
2037 a2d7ea09 Iustin Pop
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
2038 a2d7ea09 Iustin Pop
	  fi; \
2039 e8230860 Michael Hanselmann
	done
2040 dd1dfd9a Michael Hanselmann
	touch $@
2041 97a37b3f Michael Hanselmann
2042 9ff7e35c Michael Hanselmann
.PHONY: ganeti
2043 9ff7e35c Michael Hanselmann
ganeti:
2044 01f3e7b1 Iustin Pop
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
2045 9ff7e35c Michael Hanselmann
2046 6b997854 Michael Hanselmann
.PHONY: check-dirs
2047 4c3d5fb6 Iustin Pop
check-dirs: $(GENERATED_FILES)
2048 0c1103d6 Iustin Pop
	@set -e; \
2049 a2d7ea09 Iustin Pop
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
2050 a2d7ea09 Iustin Pop
	  error=; \
2051 a2d7ea09 Iustin Pop
	  while read dir; do \
2052 a2d7ea09 Iustin Pop
	    case "$$dir" in \
2053 a2d7ea09 Iustin Pop
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
2054 a2d7ea09 Iustin Pop
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
2055 a2d7ea09 Iustin Pop
	    esac; \
2056 a2d7ea09 Iustin Pop
	  done; \
2057 a2d7ea09 Iustin Pop
	  for dir in $(DIRS); do \
2058 a2d7ea09 Iustin Pop
	    if ! test -d "$$dir"; then \
2059 a2d7ea09 Iustin Pop
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
2060 a2d7ea09 Iustin Pop
	      error=1; \
2061 a2d7ea09 Iustin Pop
	    fi \
2062 a2d7ea09 Iustin Pop
	  done; \
2063 a2d7ea09 Iustin Pop
	  test -z "$$error"; \
2064 6b997854 Michael Hanselmann
	}
2065 6b997854 Michael Hanselmann
2066 35bdbec3 Michele Tartara
.PHONY: check-news
2067 35bdbec3 Michele Tartara
check-news:
2068 35bdbec3 Michele Tartara
	RELEASE=$(PACKAGE_VERSION) $(CHECK_NEWS) < $(top_srcdir)/NEWS
2069 35bdbec3 Michele Tartara
2070 f6cbcc06 Michael Hanselmann
.PHONY: check-local
2071 35bdbec3 Michele Tartara
check-local: check-dirs check-news $(GENERATED_FILES)
2072 eed5c5df Michael Hanselmann
	$(CHECK_PYTHON_CODE) $(check_python_code)
2073 5d3c30df Michael Hanselmann
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
2074 35576615 Michael Hanselmann
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
2075 83ea5145 Michael Hanselmann
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
2076 a5b0694f Michael Hanselmann
	error= ; \
2077 02312a1a Michele Tartara
	if [ "x`echo $(VERSION_SUFFIX)|grep 'alpha'`" == "x" ]; then \
2078 02312a1a Michele Tartara
	  expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
2079 02312a1a Michele Tartara
	  if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
2080 02312a1a Michele Tartara
	    echo "Incorrect version in README, expected $$expver" >&2; \
2081 02312a1a Michele Tartara
	    error=1; \
2082 02312a1a Michele Tartara
	  fi; \
2083 02312a1a Michele Tartara
	  for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
2084 02312a1a Michele Tartara
	      doc/security.rst; do \
2085 02312a1a Michele Tartara
	    if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
2086 02312a1a Michele Tartara
	      "Documents Ganeti version $$expver"; then \
2087 02312a1a Michele Tartara
	      echo "Incorrect version in $$file, expected $$expver" >&2; \
2088 02312a1a Michele Tartara
	      error=1; \
2089 02312a1a Michele Tartara
	    fi; \
2090 02312a1a Michele Tartara
	  done; \
2091 02312a1a Michele Tartara
	  if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
2092 02312a1a Michele Tartara
	    echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
2093 02312a1a Michele Tartara
	    error=1; \
2094 02312a1a Michele Tartara
	  fi; \
2095 02312a1a Michele Tartara
	  if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
2096 02312a1a Michele Tartara
	    ".. Last updated for Ganeti $$expver"; then \
2097 02312a1a Michele Tartara
	    echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
2098 a5b0694f Michael Hanselmann
	    error=1; \
2099 a2d7ea09 Iustin Pop
	  fi; \
2100 924d9134 Michael Hanselmann
	fi; \
2101 9cda4d6a Iustin Pop
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
2102 9cda4d6a Iustin Pop
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
2103 9cda4d6a Iustin Pop
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
2104 9cda4d6a Iustin Pop
	    error=1; \
2105 9cda4d6a Iustin Pop
	  fi; \
2106 9cda4d6a Iustin Pop
	done; \
2107 9cda4d6a Iustin Pop
	test -z "$$error"
2108 eed5c5df Michael Hanselmann
2109 5f7d4181 Jose A. Lopes
.PHONY: hs-test-%
2110 543937ce Jose A. Lopes
hs-test-%: test/hs/htest
2111 5f7d4181 Jose A. Lopes
	@rm -f htest.tix
2112 5f7d4181 Jose A. Lopes
	test/hs/htest -t $*
2113 5f7d4181 Jose A. Lopes
2114 784e77f0 Iustin Pop
.PHONY: hs-tests
2115 543937ce Jose A. Lopes
hs-tests: test/hs/htest
2116 784e77f0 Iustin Pop
	@rm -f htest.tix
2117 3e16567e Iustin Pop
	./test/hs/htest
2118 784e77f0 Iustin Pop
2119 5f7d4181 Jose A. Lopes
.PHONY: hs-shell-%
2120 5f7d4181 Jose A. Lopes
hs-shell-%: test/hs/hpc-htools test/hs/hpc-mon-collector \
2121 5f7d4181 Jose A. Lopes
            $(HS_BUILT_TEST_HELPERS)
2122 5f7d4181 Jose A. Lopes
	@rm -f hpc-htools.tix hpc-mon-collector.tix
2123 5f7d4181 Jose A. Lopes
	HBINARY="./test/hs/hpc-htools" \
2124 5f7d4181 Jose A. Lopes
	SHELLTESTARGS=$(SHELLTESTARGS) \
2125 5f7d4181 Jose A. Lopes
	./test/hs/offline-test.sh $*
2126 5f7d4181 Jose A. Lopes
2127 784e77f0 Iustin Pop
.PHONY: hs-shell
2128 784e77f0 Iustin Pop
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
2129 784e77f0 Iustin Pop
	@rm -f hpc-htools.tix hpc-mon-collector.tix
2130 5f7d4181 Jose A. Lopes
	HBINARY="./test/hs/hpc-htools" \
2131 5f7d4181 Jose A. Lopes
	SHELLTESTARGS=$(SHELLTESTARGS) \
2132 5f7d4181 Jose A. Lopes
	./test/hs/offline-test.sh
2133 49e11c49 Iustin Pop
2134 784e77f0 Iustin Pop
.PHONY: hs-check
2135 784e77f0 Iustin Pop
hs-check: hs-tests hs-shell
2136 784e77f0 Iustin Pop
2137 08366664 Michael Hanselmann
# E111: indentation is not a multiple of four
2138 5ae4945a Iustin Pop
# E121: continuation line indentation is not a multiple of four
2139 5ae4945a Iustin Pop
#       (since our indent level is not 4)
2140 5ae4945a Iustin Pop
# E125: continuation line does not distinguish itself from next logical line
2141 5ae4945a Iustin Pop
#       (since our indent level is not 4)
2142 6294e2b4 Michele Tartara
# E123: closing bracket does not match indentation of opening bracket's line
2143 5ae4945a Iustin Pop
# E127: continuation line over-indented for visual indent
2144 5ae4945a Iustin Pop
#       (since our indent level is not 4)
2145 5ae4945a Iustin Pop
# note: do NOT add E128 here; it's a valid style error in most cases!
2146 5ae4945a Iustin Pop
# I've seen real errors, but also some cases were we indent wrongly
2147 5ae4945a Iustin Pop
# due to line length; try to rework the cases where it is triggered,
2148 5ae4945a Iustin Pop
# instead of silencing it
2149 08366664 Michael Hanselmann
# E261: at least two spaces before inline comment
2150 08366664 Michael Hanselmann
# E501: line too long (80 characters)
2151 6294e2b4 Michele Tartara
PEP8_IGNORE = E111,E121,E123,E125,E127,E261,E501
2152 08366664 Michael Hanselmann
2153 08366664 Michael Hanselmann
# For excluding pep8 expects filenames only, not whole paths
2154 08366664 Michael Hanselmann
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
2155 08366664 Michael Hanselmann
2156 bd39b6bb Thomas Thrainer
LINT_TARGETS = pylint pylint-qa pylint-test
2157 6e4c8f68 Iustin Pop
if HAS_PEP8
2158 6e4c8f68 Iustin Pop
LINT_TARGETS += pep8
2159 6e4c8f68 Iustin Pop
endif
2160 6e4c8f68 Iustin Pop
if HAS_HLINT
2161 6e4c8f68 Iustin Pop
LINT_TARGETS += hlint
2162 6e4c8f68 Iustin Pop
endif
2163 6e4c8f68 Iustin Pop
2164 e0098923 Iustin Pop
.PHONY: lint
2165 6e4c8f68 Iustin Pop
lint: $(LINT_TARGETS)
2166 6e4c8f68 Iustin Pop
2167 6e4c8f68 Iustin Pop
.PHONY: pylint
2168 4c3d5fb6 Iustin Pop
pylint: $(GENERATED_FILES)
2169 6d7cc5ff Michael Hanselmann
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2170 6d7cc5ff Michael Hanselmann
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
2171 6e4c8f68 Iustin Pop
2172 6e4c8f68 Iustin Pop
.PHONY: pylint-qa
2173 4c3d5fb6 Iustin Pop
pylint-qa: $(GENERATED_FILES)
2174 6e4c8f68 Iustin Pop
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2175 3582eef6 Iustin Pop
	cd $(top_srcdir)/qa && \
2176 3582eef6 Iustin Pop
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
2177 3582eef6 Iustin Pop
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
2178 bd39b6bb Thomas Thrainer
# FIXME: lint all test code, not just the newly added test support
2179 bd39b6bb Thomas Thrainer
pylint-test: $(GENERATED_FILES)
2180 bd39b6bb Thomas Thrainer
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
2181 bd39b6bb Thomas Thrainer
	cd $(top_srcdir) && \
2182 bd39b6bb Thomas Thrainer
		PYTHONPATH=.:./test/py $(PYLINT) $(LINT_OPTS) \
2183 bd39b6bb Thomas Thrainer
		--rcfile=pylintrc-test  $(python_test_support)
2184 e0098923 Iustin Pop
2185 6e4c8f68 Iustin Pop
.PHONY: pep8
2186 4c3d5fb6 Iustin Pop
pep8: $(GENERATED_FILES)
2187 6e4c8f68 Iustin Pop
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
2188 6e4c8f68 Iustin Pop
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
2189 a2d7ea09 Iustin Pop
	  --repeat $(pep8_python_code)
2190 6e4c8f68 Iustin Pop
2191 2cdaf225 Iustin Pop
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
2192 83846468 Iustin Pop
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
2193 191ff68c Iustin Pop
.PHONY: hlint
2194 3add7574 Iustin Pop
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
2195 6e4c8f68 Iustin Pop
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
2196 1cced301 Iustin Pop
	@rm -f doc/hs-lint.html
2197 191ff68c Iustin Pop
	if tty -s; then C="-c"; else C=""; fi; \
2198 488a5b2e Michele Tartara
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
2199 3603605a Iustin Pop
	  --ignore "Use first" \
2200 2cdaf225 Iustin Pop
	  --ignore "Use &&&" \
2201 2cdaf225 Iustin Pop
	  --ignore "Use void" \
2202 86aa9ba3 Iustin Pop
	  --ignore "Reduce duplication" \
2203 3add7574 Iustin Pop
	  --hint src/lint-hints \
2204 af42ffb6 Iustin Pop
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
2205 1cced301 Iustin Pop
	@if [ ! -f doc/hs-lint.html ]; then \
2206 1cced301 Iustin Pop
	  echo "All good" > doc/hs-lint.html; \
2207 1cced301 Iustin Pop
	fi
2208 191ff68c Iustin Pop
2209 84a12e40 Iustin Pop
# a dist hook rule for updating the vcs-version file; this is
2210 84a12e40 Iustin Pop
# hardcoded due to where it needs to build the file...
2211 84a12e40 Iustin Pop
dist-hook:
2212 b0b8458a Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
2213 316dc1ff Iustin Pop
	rm -f $(top_distdir)/vcs-version
2214 84a12e40 Iustin Pop
	cp -p $(srcdir)/vcs-version $(top_distdir)
2215 84a12e40 Iustin Pop
2216 84a12e40 Iustin Pop
# a distcheck hook rule for catching revision control directories
2217 b6f2e47f Iustin Pop
distcheck-hook:
2218 c6aa0c42 Michael Hanselmann
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
2219 a2d7ea09 Iustin Pop
	  echo "Found revision control files in final archive." 1>&2; \
2220 a2d7ea09 Iustin Pop
	  exit 1; \
2221 c6aa0c42 Michael Hanselmann
	fi
2222 c6aa0c42 Michael Hanselmann
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
2223 a2d7ea09 Iustin Pop
	  echo "Found Python byte code in final archive." 1>&2; \
2224 a2d7ea09 Iustin Pop
	  exit 1; \
2225 c6aa0c42 Michael Hanselmann
	fi
2226 c6aa0c42 Michael Hanselmann
	if find $(top_distdir) -name '*~' | grep .; then \
2227 a2d7ea09 Iustin Pop
	  echo "Found backup files in final archive." 1>&2; \
2228 a2d7ea09 Iustin Pop
	  exit 1; \
2229 b6f2e47f Iustin Pop
	fi
2230 bf0b21da Michael Hanselmann
# Empty files or directories should not be distributed. They can cause
2231 bf0b21da Michael Hanselmann
# unnecessary warnings for packagers. Directories used by automake during
2232 bf0b21da Michael Hanselmann
# distcheck must be excluded.
2233 bf0b21da Michael Hanselmann
	if find $(top_distdir) -empty -and -not \( \
2234 a2d7ea09 Iustin Pop
	    -path $(top_distdir)/_build -or \
2235 a2d7ea09 Iustin Pop
	    -path $(top_distdir)/_inst \) | grep .; then \
2236 a2d7ea09 Iustin Pop
	  echo "Found empty files or directories in final archive." 1>&2; \
2237 a2d7ea09 Iustin Pop
	  exit 1; \
2238 bf0b21da Michael Hanselmann
	fi
2239 9d02edc6 Michael Hanselmann
	if test -e $(top_distdir)/doc/man-html; then \
2240 9d02edc6 Michael Hanselmann
	  echo "Found documentation including man pages in final archive" >&2; \
2241 9d02edc6 Michael Hanselmann
	  exit 1; \
2242 9d02edc6 Michael Hanselmann
	fi
2243 c7b86f6c Michael Hanselmann
2244 d466fd8b Guido Trotter
# Backwards compatible distcheck-release target
2245 c7b86f6c Michael Hanselmann
distcheck-release: distcheck
2246 b6f2e47f Iustin Pop
2247 7213dded René Nussbaumer
distrebuildcheck: dist
2248 7213dded René Nussbaumer
	set -e; \
2249 7213dded René Nussbaumer
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
2250 7213dded René Nussbaumer
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
2251 7213dded René Nussbaumer
	cd $$builddir; \
2252 7213dded René Nussbaumer
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
2253 7213dded René Nussbaumer
	cd $(distdir); \
2254 7213dded René Nussbaumer
	./configure; \
2255 7213dded René Nussbaumer
	$(MAKE) maintainer-clean; \
2256 7213dded René Nussbaumer
	cp $(abs_srcdir)/vcs-version .; \
2257 7213dded René Nussbaumer
	./configure; \
2258 7213dded René Nussbaumer
	$(MAKE) $(AM_MAKEFLAGS)
2259 7213dded René Nussbaumer
2260 e627fe09 Michael Hanselmann
dist-release: dist
2261 e627fe09 Michael Hanselmann
	set -e; \
2262 e627fe09 Michael Hanselmann
	for i in $(DIST_ARCHIVES); do \
2263 a2d7ea09 Iustin Pop
	  echo -n "Checking $$i ... "; \
2264 a2d7ea09 Iustin Pop
	  autotools/check-tar < $$i; \
2265 a2d7ea09 Iustin Pop
	  echo OK; \
2266 e627fe09 Michael Hanselmann
	done
2267 e627fe09 Michael Hanselmann
2268 8925faaa Iustin Pop
install-exec-local:
2269 0d93b082 Michael Hanselmann
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
2270 2fa9f1dd Michael Hanselmann
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
2271 2fa9f1dd Michael Hanselmann
	  "$(DESTDIR)${localstatedir}/run/ganeti"
2272 9cf292af Klaus Aehlig
	for dir in $(SYMLINK_TARGET_DIRS); do \
2273 9cf292af Klaus Aehlig
	  @mkdir_p@  $(DESTDIR)$$dir; \
2274 9cf292af Klaus Aehlig
	done
2275 eb875ff1 Klaus Aehlig
	$(LN_S) -f $(sysconfdir)/ganeti/lib $(DESTDIR)$(defaultversiondir)
2276 eb875ff1 Klaus Aehlig
	$(LN_S) -f $(sysconfdir)/ganeti/share $(DESTDIR)$(defaultversionedsharedir)
2277 02eb0fe5 Klaus Aehlig
	for prog in $(HS_BIN_ROLES); do \
2278 ae6a0a7c Jose A. Lopes
	  $(LN_S) -f $(defaultversiondir)$(BINDIR)/$$prog $(DESTDIR)$(BINDIR)/$$prog; \
2279 9cf292af Klaus Aehlig
	done
2280 eb875ff1 Klaus Aehlig
	$(LN_S) -f $(defaultversiondir)$(libdir)/ganeti/iallocators/hail $(DESTDIR)$(libdir)/ganeti/iallocators/hail
2281 9cf292af Klaus Aehlig
	for prog in $(all_sbin_scripts); do \
2282 ae6a0a7c Jose A. Lopes
	  $(LN_S) -f $(defaultversiondir)$(SBINDIR)/$$prog $(DESTDIR)$(SBINDIR)/$$prog; \
2283 9cf292af Klaus Aehlig
	done
2284 eb875ff1 Klaus Aehlig
	for prog in $(gnt_scripts_basenames); do \
2285 ae6a0a7c Jose A. Lopes
	  $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(SBINDIR)/$$prog; \
2286 9cf292af Klaus Aehlig
	done
2287 eb875ff1 Klaus Aehlig
	for prog in $(pkglib_python_basenames); do \
2288 eb875ff1 Klaus Aehlig
	  $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(libdir)/ganeti/$$prog; \
2289 eb875ff1 Klaus Aehlig
	done
2290 eb875ff1 Klaus Aehlig
	for prog in $(tools_python_basenames); do \
2291 eb875ff1 Klaus Aehlig
	  $(LN_S) -f $(defaultversionedsharedir)/$$prog $(DESTDIR)$(libdir)/ganeti/tools/$$prog; \
2292 eb875ff1 Klaus Aehlig
	done
2293 eb875ff1 Klaus Aehlig
	for prog in $(tools_basenames); do \
2294 eb875ff1 Klaus Aehlig
	  $(LN_S) -f $(defaultversiondir)/$(libdir)/ganeti/tools/$$prog $(DESTDIR)$(libdir)/ganeti/tools/$$prog; \
2295 9cf292af Klaus Aehlig
	done
2296 9cf292af Klaus Aehlig
	if ! test -n '$(ENABLE_MANPAGES)'; then \
2297 9cf292af Klaus Aehlig
	  for man in $(manfullpath); do \
2298 ae6a0a7c Jose A. Lopes
	    $(LN_S) -f $(defaultversionedsharedir)/root$(MANDIR)/$$man $(DESTDIR)$(MANDIR)/$$man; \
2299 9cf292af Klaus Aehlig
	  done; \
2300 9cf292af Klaus Aehlig
	fi
2301 eb875ff1 Klaus Aehlig
	for prog in $(myexeclib_scripts_basenames); do \
2302 eb875ff1 Klaus Aehlig
	  $(LN_S) -f $(defaultversiondir)$(libdir)/ganeti/$$prog $(DESTDIR)$(libdir)/ganeti/$$prog; \
2303 eb875ff1 Klaus Aehlig
	done
2304 eb875ff1 Klaus Aehlig
if INSTALL_SYMLINKS
2305 61125868 Klaus Aehlig
	$(LN_S) -f $(versionedsharedir) $(DESTDIR)$(sysconfdir)/ganeti/share
2306 61125868 Klaus Aehlig
	$(LN_S) -f $(versiondir) $(DESTDIR)$(sysconfdir)/ganeti/lib
2307 9cf292af Klaus Aehlig
endif
2308 e8230860 Michael Hanselmann
2309 d128fdb6 Iustin Pop
.PHONY: apidoc
2310 d9a900dc Iustin Pop
if WANT_HSAPIDOC
2311 a38bfce5 Iustin Pop
apidoc: py-apidoc hs-apidoc
2312 a38bfce5 Iustin Pop
else
2313 a38bfce5 Iustin Pop
apidoc: py-apidoc
2314 a38bfce5 Iustin Pop
endif
2315 a38bfce5 Iustin Pop
2316 a38bfce5 Iustin Pop
.PHONY: py-apidoc
2317 4c3d5fb6 Iustin Pop
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
2318 de645b5b Michael Hanselmann
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
2319 b959138f Michael Hanselmann
	$(RUN_IN_TEMPDIR) epydoc -v \
2320 a2d7ea09 Iustin Pop
	  --conf $(CURDIR)/epydoc.conf \
2321 a2d7ea09 Iustin Pop
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
2322 a38bfce5 Iustin Pop
2323 a38bfce5 Iustin Pop
.PHONY: hs-apidoc
2324 7ddd8e4c Iustin Pop
hs-apidoc: $(APIDOC_HS_DIR)/index.html
2325 7ddd8e4c Iustin Pop
2326 7ddd8e4c Iustin Pop
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
2327 a38bfce5 Iustin Pop
	@test -n "$(HSCOLOUR)" || \
2328 a38bfce5 Iustin Pop
	    { echo 'HsColour' not found during configure; exit 1; }
2329 a38bfce5 Iustin Pop
	@test -n "$(HADDOCK)" || \
2330 a38bfce5 Iustin Pop
	    { echo 'haddock' not found during configure; exit 1; }
2331 22c5390d Iustin Pop
	rm -rf $(APIDOC_HS_DIR)/*
2332 cbcd9144 Michele Tartara
	for i in $(ALL_APIDOC_HS_DIRS); do \
2333 a2d7ea09 Iustin Pop
	  @mkdir_p@ $$i; \
2334 e61db4b2 Iustin Pop
	  $(HSCOLOUR) -print-css > $$i/hscolour.css; \
2335 cbcd9144 Michele Tartara
	done
2336 a38bfce5 Iustin Pop
	set -e ; \
2337 7ddd8e4c Iustin Pop
	export LC_ALL=en_US.UTF-8; \
2338 7ddd8e4c Iustin Pop
	OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
2339 d9a900dc Iustin Pop
	if [ "$(HS_PARALLEL3)" ]; \
2340 d9a900dc Iustin Pop
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
2341 1adec4be Iustin Pop
	fi; \
2342 d9a900dc Iustin Pop
	if [ "$(HS_REGEX_PCRE)" ]; \
2343 d9a900dc Iustin Pop
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
2344 21a5e56c Iustin Pop
	fi; \
2345 7ddd8e4c Iustin Pop
	for file in $(HS_LIBTESTBUILT_SRCS); do \
2346 7ddd8e4c Iustin Pop
	  f_nosrc=$${file##src/}; \
2347 7ddd8e4c Iustin Pop
	  f_notst=$${f_nosrc##test/hs/}; \
2348 7ddd8e4c Iustin Pop
	  f_html=$${f_notst%%.hs}.html; \
2349 7ddd8e4c Iustin Pop
	  $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
2350 a38bfce5 Iustin Pop
	done ; \
2351 7ddd8e4c Iustin Pop
	$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
2352 7ddd8e4c Iustin Pop
	  -t ganeti -p src/haddock-prologue \
2353 a2d7ea09 Iustin Pop
	  --source-module="%{MODULE/.//}.html" \
2354 a2d7ea09 Iustin Pop
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
2355 a2d7ea09 Iustin Pop
	  $$OPTGHC \
2356 7ddd8e4c Iustin Pop
	  $(HS_LIBTESTBUILT_SRCS)
2357 d128fdb6 Iustin Pop
2358 13e720f1 Iustin Pop
.PHONY: TAGS
2359 4c3d5fb6 Iustin Pop
TAGS: $(GENERATED_FILES)
2360 13e720f1 Iustin Pop
	rm -f TAGS
2361 d7c461b6 Petr Pudlak
	$(GHC) -e ":etags TAGS_hs" -v0 \
2362 6b84f036 Iustin Pop
	  $(filter-out -O -Werror,$(HFLAGS)) \
2363 d7c461b6 Petr Pudlak
		-osuf tags.o \
2364 d7c461b6 Petr Pudlak
		-hisuf tags.hi \
2365 d7c461b6 Petr Pudlak
    -lcurl \
2366 1ca709c1 Iustin Pop
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
2367 6b84f036 Iustin Pop
	  $(HS_LIBTEST_SRCS)
2368 74fa8200 Iustin Pop
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
2369 74fa8200 Iustin Pop
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
2370 74fa8200 Iustin Pop
	  -path './qa/*.py' | \
2371 d7c461b6 Petr Pudlak
	  etags --etags-include=TAGS_hs -L -
2372 13e720f1 Iustin Pop
2373 27e336af Michael Hanselmann
.PHONY: coverage
2374 e03e445c Michele Tartara
2375 e03e445c Michele Tartara
COVERAGE_TESTS=
2376 eb84bb80 Petr Pudlak
if HS_UNIT
2377 e03e445c Michele Tartara
COVERAGE_TESTS += hs-coverage
2378 eb84bb80 Petr Pudlak
endif
2379 d14d93b0 Helga Velroyen
if PY_UNIT
2380 e03e445c Michele Tartara
COVERAGE_TESTS += py-coverage
2381 e03e445c Michele Tartara
endif
2382 e03e445c Michele Tartara
2383 e03e445c Michele Tartara
coverage: $(COVERAGE_TESTS)
2384 b91e9518 Iustin Pop
2385 b7190988 Santi Raffa
test/py/docs_unittest.py: $(gnt_scripts)
2386 b7190988 Santi Raffa
2387 b91e9518 Iustin Pop
.PHONY: py-coverage
2388 4c3d5fb6 Iustin Pop
py-coverage: $(GENERATED_FILES) $(python_tests)
2389 141c8421 Michael Hanselmann
	@test -n "$(PYCOVERAGE)" || \
2390 141c8421 Michael Hanselmann
	    { echo 'python-coverage' not found during configure; exit 1; }
2391 27e336af Michael Hanselmann
	set -e; \
2392 141c8421 Michael Hanselmann
	COVERAGE=$(PYCOVERAGE) \
2393 22c5390d Iustin Pop
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
2394 22c5390d Iustin Pop
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
2395 22c5390d Iustin Pop
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
2396 208b02e3 Iustin Pop
	$(PLAIN_TESTS_ENVIRONMENT) \
2397 208b02e3 Iustin Pop
	$(abs_top_srcdir)/autotools/gen-py-coverage \
2398 e8c8cf1a Michael Hanselmann
	$(python_tests)
2399 27e336af Michael Hanselmann
2400 b91e9518 Iustin Pop
.PHONY: hs-coverage
2401 83846468 Iustin Pop
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
2402 316dc1ff Iustin Pop
	rm -f *.tix
2403 b0b8458a Iustin Pop
	$(MAKE) $(AM_MAKEFLAGS) hs-check
2404 48f12e73 Iustin Pop
	@mkdir_p@ $(COVERAGE_HS_DIR)
2405 5f2cdb2a Michele Tartara
	hpc sum --union $(HPCEXCL) \
2406 208b02e3 Iustin Pop
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
2407 208b02e3 Iustin Pop
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
2408 961ddf1e Thomas Thrainer
	hpc report coverage-hs.tix | tee $(COVERAGE_HS_DIR)/report.txt
2409 82888134 Michael Hanselmann
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
2410 b91e9518 Iustin Pop
2411 ec8379bd Iustin Pop
# Special "kind-of-QA" target for htools, needs special setup (all
2412 ec8379bd Iustin Pop
# tools compiled with -fhpc)
2413 ec8379bd Iustin Pop
.PHONY: live-test
2414 ec8379bd Iustin Pop
live-test: all
2415 ec8379bd Iustin Pop
	set -e ; \
2416 3add7574 Iustin Pop
	cd src; \
2417 82888134 Michael Hanselmann
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
2418 ec8379bd Iustin Pop
	rm -f *.tix *.mix; \
2419 ec8379bd Iustin Pop
	./live-test.sh; \
2420 3add7574 Iustin Pop
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
2421 ec8379bd Iustin Pop
	  --output=live-test.tix ; \
2422 22c5390d Iustin Pop
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
2423 22c5390d Iustin Pop
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
2424 a2d7ea09 Iustin Pop
	  --srcdir=.. $(HPCEXCL) ; \
2425 ec8379bd Iustin Pop
	hpc report --srcdir=.. live-test $(HPCEXCL)
2426 b91e9518 Iustin Pop
2427 00734cae Michele Tartara
commit-check: autotools-check distcheck lint apidoc
2428 00734cae Michele Tartara
2429 00734cae Michele Tartara
autotools-check:
2430 00734cae Michele Tartara
	TESTDATA_DIR=./test/data shelltest $(SHELLTESTARGS) \
2431 00734cae Michele Tartara
  $(abs_top_srcdir)/test/autotools/*-*.test \
2432 00734cae Michele Tartara
  -- --hide-successes
2433 b341b9ca Guido Trotter
2434 6438e259 Iustin Pop
.PHONY: gitignore-check
2435 6438e259 Iustin Pop
gitignore-check:
2436 6438e259 Iustin Pop
	@if [ -n "`git status --short`" ]; then \
2437 6438e259 Iustin Pop
	  echo "Git status is not clean!" 1>&2 ; \
2438 6438e259 Iustin Pop
	  git status --short; \
2439 6438e259 Iustin Pop
	  exit 1; \
2440 6438e259 Iustin Pop
	fi
2441 6438e259 Iustin Pop
2442 6aff0514 Iustin Pop
# target to rebuild all man pages (both groff and html output)
2443 6aff0514 Iustin Pop
.PHONY: man
2444 6aff0514 Iustin Pop
man: $(man_MANS) $(manhtml)
2445 6aff0514 Iustin Pop
2446 37519c09 Iustin Pop
# Target that builds all binaries (including those that are not
2447 37519c09 Iustin Pop
# rebuilt except when running the tests)
2448 37519c09 Iustin Pop
.PHONY: really-all
2449 af42ffb6 Iustin Pop
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
2450 37519c09 Iustin Pop
2451 1d45f7a0 Iustin Pop
# we don't need the ancient implicit rules:
2452 1d45f7a0 Iustin Pop
%: %,v
2453 1d45f7a0 Iustin Pop
%: RCS/%,v
2454 1d45f7a0 Iustin Pop
%: RCS/%
2455 1d45f7a0 Iustin Pop
%: s.%
2456 1d45f7a0 Iustin Pop
%: SCCS/s.%
2457 1d45f7a0 Iustin Pop
2458 3baa809c Michael Hanselmann
-include ./Makefile.local
2459 3baa809c Michael Hanselmann
2460 e8230860 Michael Hanselmann
# vim: set noet :