root / Makefile.am @ 8840de6f
History | View | Annotate | Download (59.7 kB)
1 |
# Ganeti makefile |
---|---|
2 |
# - Indent with tabs only. |
3 |
# - Keep files sorted; one line per file. |
4 |
# - Directories in lib/ must have their own *dir variable (see hypervisor). |
5 |
# - All directories must be listed DIRS. |
6 |
# - Use autogen.sh to generate Makefile.in and configure script. |
7 |
|
8 |
# Automake doesn't export these variables before version 1.10. |
9 |
abs_top_builddir = @abs_top_builddir@ |
10 |
abs_top_srcdir = @abs_top_srcdir@ |
11 |
|
12 |
# Helper values for calling builtin functions |
13 |
empty := |
14 |
space := $(empty) $(empty) |
15 |
comma := , |
16 |
|
17 |
# Helper function to strip src/ and test/hs/ from a list |
18 |
strip_hsroot = $(patsubst src/%,%,$(patsubst test/hs/%,%,$(1))) |
19 |
|
20 |
# Use bash in order to be able to use pipefail |
21 |
SHELL=/bin/bash |
22 |
|
23 |
ACLOCAL_AMFLAGS = -I autotools |
24 |
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion |
25 |
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir |
26 |
CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code |
27 |
CHECK_HEADER = $(top_srcdir)/autotools/check-header |
28 |
CHECK_MAN_DASHES = $(top_srcdir)/autotools/check-man-dashes |
29 |
CHECK_MAN_REFERENCES = $(top_srcdir)/autotools/check-man-references |
30 |
CHECK_MAN_WARNINGS = $(top_srcdir)/autotools/check-man-warnings |
31 |
CHECK_VERSION = $(top_srcdir)/autotools/check-version |
32 |
CHECK_NEWS = $(top_srcdir)/autotools/check-news |
33 |
CHECK_IMPORTS = $(top_srcdir)/autotools/check-imports |
34 |
DOCPP = $(top_srcdir)/autotools/docpp |
35 |
REPLACE_VARS_SED = autotools/replace_vars.sed |
36 |
CONVERT_CONSTANTS = $(top_srcdir)/autotools/convert-constants |
37 |
BUILD_RPC = $(top_srcdir)/autotools/build-rpc |
38 |
SHELL_ENV_INIT = autotools/shell-env-init |
39 |
|
40 |
# Note: these are automake-specific variables, and must be named after |
41 |
# the directory + 'dir' suffix |
42 |
clientdir = $(pkgpythondir)/client |
43 |
cmdlibdir = $(pkgpythondir)/cmdlib |
44 |
hypervisordir = $(pkgpythondir)/hypervisor |
45 |
storagedir = $(pkgpythondir)/storage |
46 |
httpdir = $(pkgpythondir)/http |
47 |
masterddir = $(pkgpythondir)/masterd |
48 |
confddir = $(pkgpythondir)/confd |
49 |
rapidir = $(pkgpythondir)/rapi |
50 |
serverdir = $(pkgpythondir)/server |
51 |
watcherdir = $(pkgpythondir)/watcher |
52 |
impexpddir = $(pkgpythondir)/impexpd |
53 |
utilsdir = $(pkgpythondir)/utils |
54 |
toolsdir = $(pkglibdir)/tools |
55 |
iallocatorsdir = $(pkglibdir)/iallocators |
56 |
pytoolsdir = $(pkgpythondir)/tools |
57 |
docdir = $(datadir)/doc/$(PACKAGE) |
58 |
myexeclibdir = $(pkglibdir) |
59 |
|
60 |
# Delete output file if an error occurred while building it |
61 |
.DELETE_ON_ERROR: |
62 |
|
63 |
HS_DIRS = \ |
64 |
src \ |
65 |
src/Ganeti \ |
66 |
src/Ganeti/Block \ |
67 |
src/Ganeti/Block/Drbd \ |
68 |
src/Ganeti/Confd \ |
69 |
src/Ganeti/Curl \ |
70 |
src/Ganeti/DataCollectors \ |
71 |
src/Ganeti/HTools \ |
72 |
src/Ganeti/HTools/Backend \ |
73 |
src/Ganeti/HTools/Program \ |
74 |
src/Ganeti/Hypervisor \ |
75 |
src/Ganeti/Hypervisor/Xen \ |
76 |
src/Ganeti/Monitoring \ |
77 |
src/Ganeti/Query \ |
78 |
test/hs \ |
79 |
test/hs/Test \ |
80 |
test/hs/Test/Ganeti \ |
81 |
test/hs/Test/Ganeti/Block \ |
82 |
test/hs/Test/Ganeti/Block/Drbd \ |
83 |
test/hs/Test/Ganeti/Confd \ |
84 |
test/hs/Test/Ganeti/HTools \ |
85 |
test/hs/Test/Ganeti/HTools/Backend \ |
86 |
test/hs/Test/Ganeti/Hypervisor \ |
87 |
test/hs/Test/Ganeti/Hypervisor/Xen \ |
88 |
test/hs/Test/Ganeti/Query |
89 |
|
90 |
# Haskell directories without the roots (src, test/hs) |
91 |
HS_DIRS_NOROOT = $(filter-out src,$(filter-out test/hs,$(HS_DIRS))) |
92 |
|
93 |
DIRS = \ |
94 |
$(HS_DIRS) \ |
95 |
autotools \ |
96 |
daemons \ |
97 |
devel \ |
98 |
devel/data \ |
99 |
doc \ |
100 |
doc/css \ |
101 |
doc/examples \ |
102 |
doc/examples/gnt-debug \ |
103 |
doc/examples/hooks \ |
104 |
test/data/htools \ |
105 |
test/data/htools/rapi \ |
106 |
test/hs/shelltests \ |
107 |
lib \ |
108 |
lib/build \ |
109 |
lib/client \ |
110 |
lib/cmdlib \ |
111 |
lib/confd \ |
112 |
lib/http \ |
113 |
lib/hypervisor \ |
114 |
lib/impexpd \ |
115 |
lib/masterd \ |
116 |
lib/rapi \ |
117 |
lib/server \ |
118 |
lib/storage \ |
119 |
lib/tools \ |
120 |
lib/utils \ |
121 |
lib/watcher \ |
122 |
man \ |
123 |
qa \ |
124 |
test \ |
125 |
test/data \ |
126 |
test/data/bdev-rbd \ |
127 |
test/data/ovfdata \ |
128 |
test/data/ovfdata/other \ |
129 |
test/py \ |
130 |
tools |
131 |
|
132 |
ALL_APIDOC_HS_DIRS = \ |
133 |
$(APIDOC_HS_DIR) \ |
134 |
$(patsubst %,$(APIDOC_HS_DIR)/%,$(call strip_hsroot,$(HS_DIRS_NOROOT))) |
135 |
|
136 |
BUILDTIME_DIR_AUTOCREATE = \ |
137 |
scripts \ |
138 |
$(APIDOC_DIR) \ |
139 |
$(ALL_APIDOC_HS_DIRS) \ |
140 |
$(APIDOC_PY_DIR) \ |
141 |
$(COVERAGE_DIR) \ |
142 |
$(COVERAGE_HS_DIR) \ |
143 |
$(COVERAGE_PY_DIR) \ |
144 |
.hpc |
145 |
|
146 |
BUILDTIME_DIRS = \ |
147 |
$(BUILDTIME_DIR_AUTOCREATE) \ |
148 |
doc/html \ |
149 |
doc/man-html |
150 |
|
151 |
DIRCHECK_EXCLUDE = \ |
152 |
$(BUILDTIME_DIRS) \ |
153 |
ganeti-[0-9]*.[0-9]*.[0-9]* \ |
154 |
doc/html/_* \ |
155 |
doc/man-html/_* \ |
156 |
autom4te.cache |
157 |
|
158 |
# some helper vars |
159 |
COVERAGE_DIR = doc/coverage |
160 |
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py |
161 |
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs |
162 |
APIDOC_DIR = doc/api |
163 |
APIDOC_PY_DIR = $(APIDOC_DIR)/py |
164 |
APIDOC_HS_DIR = $(APIDOC_DIR)/hs |
165 |
|
166 |
MAINTAINERCLEANFILES = \ |
167 |
$(maninput) \ |
168 |
doc/install-quick.rst \ |
169 |
doc/news.rst \ |
170 |
doc/upgrade.rst \ |
171 |
vcs-version |
172 |
|
173 |
maintainer-clean-local: |
174 |
rm -rf $(BUILDTIME_DIRS) |
175 |
|
176 |
CLEANFILES = \ |
177 |
$(addsuffix /*.py[co],$(DIRS)) \ |
178 |
$(addsuffix /*.hi,$(HS_DIRS)) \ |
179 |
$(addsuffix /*.o,$(HS_DIRS)) \ |
180 |
$(PYTHON_BOOTSTRAP) \ |
181 |
epydoc.conf \ |
182 |
$(REPLACE_VARS_SED) \ |
183 |
$(SHELL_ENV_INIT) \ |
184 |
daemons/daemon-util \ |
185 |
daemons/ganeti-cleaner \ |
186 |
devel/squeeze-amd64.tar.gz \ |
187 |
devel/squeeze-amd64.conf \ |
188 |
$(mandocrst) \ |
189 |
doc/manpages-enabled.rst \ |
190 |
$(BUILT_EXAMPLES) \ |
191 |
doc/examples/bash_completion \ |
192 |
doc/examples/bash_completion-debug \ |
193 |
lib/_generated_rpc.py \ |
194 |
$(man_MANS) \ |
195 |
$(manhtml) \ |
196 |
tools/kvm-ifup \ |
197 |
tools/users-setup \ |
198 |
tools/vcluster-setup \ |
199 |
stamp-directories \ |
200 |
stamp-srclinks \ |
201 |
$(nodist_pkgpython_PYTHON) \ |
202 |
$(HS_ALL_PROGS) $(HS_BUILT_SRCS) \ |
203 |
$(HS_BUILT_TEST_HELPERS) \ |
204 |
src/ganeti-confd \ |
205 |
src/ganeti-mond \ |
206 |
.hpc/*.mix src/*.tix test/hs/*.tix \ |
207 |
doc/hs-lint.html |
208 |
|
209 |
GENERATED_FILES = \ |
210 |
$(built_base_sources) \ |
211 |
$(BUILT_PYTHON_SOURCES) \ |
212 |
$(PYTHON_BOOTSTRAP) |
213 |
|
214 |
HS_GENERATED_FILES = |
215 |
if WANT_HTOOLS |
216 |
HS_GENERATED_FILES += $(HS_PROGS) |
217 |
if ENABLE_CONFD |
218 |
HS_GENERATED_FILES += src/hconfd src/ganeti-confd |
219 |
endif |
220 |
|
221 |
if ENABLE_MOND |
222 |
HS_GENERATED_FILES += src/ganeti-mond |
223 |
endif |
224 |
endif |
225 |
|
226 |
built_base_sources = \ |
227 |
stamp-directories \ |
228 |
stamp-srclinks |
229 |
|
230 |
built_python_base_sources = \ |
231 |
lib/_autoconf.py \ |
232 |
lib/_vcsversion.py |
233 |
|
234 |
BUILT_PYTHON_SOURCES = \ |
235 |
$(built_python_base_sources) \ |
236 |
lib/_generated_rpc.py |
237 |
|
238 |
# Generating the RPC wrappers depends on many things, so make sure |
239 |
# it's built at the end of the built sources |
240 |
lib/_generated_rpc.py: | $(built_base_sources) $(built_python_base_sources) |
241 |
|
242 |
# these are all built from the underlying %.in sources |
243 |
BUILT_EXAMPLES = \ |
244 |
doc/examples/ganeti-kvm-poweroff.initd \ |
245 |
doc/examples/ganeti.cron \ |
246 |
doc/examples/ganeti.initd \ |
247 |
doc/examples/ganeti-master-role.ocf \ |
248 |
doc/examples/ganeti-node-role.ocf \ |
249 |
doc/examples/gnt-config-backup \ |
250 |
doc/examples/hooks/ipsec |
251 |
|
252 |
nodist_pkgpython_PYTHON = \ |
253 |
$(BUILT_PYTHON_SOURCES) |
254 |
|
255 |
noinst_PYTHON = \ |
256 |
lib/build/__init__.py \ |
257 |
lib/build/shell_example_lexer.py \ |
258 |
lib/build/sphinx_ext.py |
259 |
|
260 |
pkgpython_PYTHON = \ |
261 |
lib/__init__.py \ |
262 |
lib/asyncnotifier.py \ |
263 |
lib/backend.py \ |
264 |
lib/bootstrap.py \ |
265 |
lib/cli.py \ |
266 |
lib/compat.py \ |
267 |
lib/config.py \ |
268 |
lib/constants.py \ |
269 |
lib/daemon.py \ |
270 |
lib/errors.py \ |
271 |
lib/hooksmaster.py \ |
272 |
lib/ht.py \ |
273 |
lib/jqueue.py \ |
274 |
lib/jstore.py \ |
275 |
lib/locking.py \ |
276 |
lib/luxi.py \ |
277 |
lib/mcpu.py \ |
278 |
lib/netutils.py \ |
279 |
lib/objects.py \ |
280 |
lib/opcodes.py \ |
281 |
lib/outils.py \ |
282 |
lib/ovf.py \ |
283 |
lib/pathutils.py \ |
284 |
lib/qlang.py \ |
285 |
lib/query.py \ |
286 |
lib/rpc.py \ |
287 |
lib/rpc_defs.py \ |
288 |
lib/runtime.py \ |
289 |
lib/serializer.py \ |
290 |
lib/ssconf.py \ |
291 |
lib/ssh.py \ |
292 |
lib/uidpool.py \ |
293 |
lib/vcluster.py \ |
294 |
lib/network.py \ |
295 |
lib/workerpool.py |
296 |
|
297 |
client_PYTHON = \ |
298 |
lib/client/__init__.py \ |
299 |
lib/client/gnt_backup.py \ |
300 |
lib/client/gnt_cluster.py \ |
301 |
lib/client/gnt_debug.py \ |
302 |
lib/client/gnt_group.py \ |
303 |
lib/client/gnt_instance.py \ |
304 |
lib/client/gnt_job.py \ |
305 |
lib/client/gnt_node.py \ |
306 |
lib/client/gnt_network.py \ |
307 |
lib/client/gnt_os.py \ |
308 |
lib/client/gnt_storage.py |
309 |
|
310 |
cmdlib_PYTHON = \ |
311 |
lib/cmdlib/__init__.py \ |
312 |
lib/cmdlib/backup.py \ |
313 |
lib/cmdlib/base.py \ |
314 |
lib/cmdlib/cluster.py \ |
315 |
lib/cmdlib/common.py \ |
316 |
lib/cmdlib/group.py \ |
317 |
lib/cmdlib/instance.py \ |
318 |
lib/cmdlib/instance_migration.py \ |
319 |
lib/cmdlib/instance_operation.py \ |
320 |
lib/cmdlib/instance_query.py \ |
321 |
lib/cmdlib/instance_storage.py \ |
322 |
lib/cmdlib/instance_utils.py \ |
323 |
lib/cmdlib/misc.py \ |
324 |
lib/cmdlib/network.py \ |
325 |
lib/cmdlib/node.py \ |
326 |
lib/cmdlib/operating_system.py \ |
327 |
lib/cmdlib/query.py \ |
328 |
lib/cmdlib/tags.py \ |
329 |
lib/cmdlib/test.py |
330 |
|
331 |
hypervisor_PYTHON = \ |
332 |
lib/hypervisor/__init__.py \ |
333 |
lib/hypervisor/hv_base.py \ |
334 |
lib/hypervisor/hv_chroot.py \ |
335 |
lib/hypervisor/hv_fake.py \ |
336 |
lib/hypervisor/hv_kvm.py \ |
337 |
lib/hypervisor/hv_lxc.py \ |
338 |
lib/hypervisor/hv_xen.py |
339 |
|
340 |
storage_PYTHON = \ |
341 |
lib/storage/__init__.py \ |
342 |
lib/storage/bdev.py \ |
343 |
lib/storage/base.py \ |
344 |
lib/storage/container.py \ |
345 |
lib/storage/drbd.py \ |
346 |
lib/storage/drbd_info.py \ |
347 |
lib/storage/drbd_cmdgen.py \ |
348 |
lib/storage/filestorage.py |
349 |
|
350 |
rapi_PYTHON = \ |
351 |
lib/rapi/__init__.py \ |
352 |
lib/rapi/baserlib.py \ |
353 |
lib/rapi/client.py \ |
354 |
lib/rapi/client_utils.py \ |
355 |
lib/rapi/connector.py \ |
356 |
lib/rapi/rlib2.py \ |
357 |
lib/rapi/testutils.py |
358 |
|
359 |
http_PYTHON = \ |
360 |
lib/http/__init__.py \ |
361 |
lib/http/auth.py \ |
362 |
lib/http/client.py \ |
363 |
lib/http/server.py |
364 |
|
365 |
confd_PYTHON = \ |
366 |
lib/confd/__init__.py \ |
367 |
lib/confd/client.py |
368 |
|
369 |
masterd_PYTHON = \ |
370 |
lib/masterd/__init__.py \ |
371 |
lib/masterd/iallocator.py \ |
372 |
lib/masterd/instance.py |
373 |
|
374 |
impexpd_PYTHON = \ |
375 |
lib/impexpd/__init__.py |
376 |
|
377 |
watcher_PYTHON = \ |
378 |
lib/watcher/__init__.py \ |
379 |
lib/watcher/nodemaint.py \ |
380 |
lib/watcher/state.py |
381 |
|
382 |
server_PYTHON = \ |
383 |
lib/server/__init__.py \ |
384 |
lib/server/masterd.py \ |
385 |
lib/server/noded.py \ |
386 |
lib/server/rapi.py |
387 |
|
388 |
pytools_PYTHON = \ |
389 |
lib/tools/__init__.py \ |
390 |
lib/tools/burnin.py \ |
391 |
lib/tools/ensure_dirs.py \ |
392 |
lib/tools/node_cleanup.py \ |
393 |
lib/tools/node_daemon_setup.py \ |
394 |
lib/tools/prepare_node_join.py |
395 |
|
396 |
utils_PYTHON = \ |
397 |
lib/utils/__init__.py \ |
398 |
lib/utils/algo.py \ |
399 |
lib/utils/filelock.py \ |
400 |
lib/utils/hash.py \ |
401 |
lib/utils/io.py \ |
402 |
lib/utils/log.py \ |
403 |
lib/utils/lvm.py \ |
404 |
lib/utils/mlock.py \ |
405 |
lib/utils/nodesetup.py \ |
406 |
lib/utils/process.py \ |
407 |
lib/utils/retry.py \ |
408 |
lib/utils/storage.py \ |
409 |
lib/utils/text.py \ |
410 |
lib/utils/wrapper.py \ |
411 |
lib/utils/x509.py |
412 |
|
413 |
docinput = \ |
414 |
doc/conf.py \ |
415 |
doc/css/style.css \ |
416 |
doc/admin.rst \ |
417 |
doc/cluster-merge.rst \ |
418 |
doc/design-2.0.rst \ |
419 |
doc/design-2.1.rst \ |
420 |
doc/design-2.2.rst \ |
421 |
doc/design-2.3.rst \ |
422 |
doc/design-2.4.rst \ |
423 |
doc/design-2.5.rst \ |
424 |
doc/design-2.6.rst \ |
425 |
doc/design-2.7.rst \ |
426 |
doc/design-autorepair.rst \ |
427 |
doc/design-bulk-create.rst \ |
428 |
doc/design-chained-jobs.rst \ |
429 |
doc/design-cpu-pinning.rst \ |
430 |
doc/design-device-uuid-name.rst \ |
431 |
doc/design-draft.rst \ |
432 |
doc/design-htools-2.3.rst \ |
433 |
doc/design-http-server.rst \ |
434 |
doc/design-impexp2.rst \ |
435 |
doc/design-lu-generated-jobs.rst \ |
436 |
doc/design-linuxha.rst \ |
437 |
doc/design-multi-reloc.rst \ |
438 |
doc/design-network.rst \ |
439 |
doc/design-node-add.rst \ |
440 |
doc/design-oob.rst \ |
441 |
doc/design-ovf-support.rst \ |
442 |
doc/design-opportunistic-locking.rst \ |
443 |
doc/design-partitioned.rst \ |
444 |
doc/design-query-splitting.rst \ |
445 |
doc/design-query2.rst \ |
446 |
doc/design-reason-trail.rst \ |
447 |
doc/design-resource-model.rst \ |
448 |
doc/design-restricted-commands.rst \ |
449 |
doc/design-shared-storage.rst \ |
450 |
doc/design-monitoring-agent.rst \ |
451 |
doc/design-virtual-clusters.rst \ |
452 |
doc/design-x509-ca.rst \ |
453 |
doc/design-hroller.rst \ |
454 |
doc/design-storagetypes.rst \ |
455 |
doc/devnotes.rst \ |
456 |
doc/glossary.rst \ |
457 |
doc/hooks.rst \ |
458 |
doc/iallocator.rst \ |
459 |
doc/index.rst \ |
460 |
doc/install-quick.rst \ |
461 |
doc/install.rst \ |
462 |
doc/locking.rst \ |
463 |
doc/manpages-disabled.rst \ |
464 |
doc/move-instance.rst \ |
465 |
doc/news.rst \ |
466 |
doc/ovfconverter.rst \ |
467 |
doc/rapi.rst \ |
468 |
doc/security.rst \ |
469 |
doc/upgrade.rst \ |
470 |
doc/virtual-cluster.rst \ |
471 |
doc/walkthrough.rst |
472 |
|
473 |
# Generates file names such as "doc/man-gnt-instance.rst" |
474 |
mandocrst = $(addprefix doc/man-,$(notdir $(manrst))) |
475 |
|
476 |
# Haskell programs to be installed in $PREFIX/bin |
477 |
HS_BIN_PROGS=src/htools |
478 |
|
479 |
# Haskell programs to be installed in the MYEXECLIB dir |
480 |
if ENABLE_MOND |
481 |
HS_MYEXECLIB_PROGS=src/mon-collector |
482 |
else |
483 |
HS_MYEXECLIB_PROGS= |
484 |
endif |
485 |
|
486 |
# Haskell programs to be compiled by "make really-all" |
487 |
HS_COMPILE_PROGS= \ |
488 |
src/ganeti-mond \ |
489 |
src/hconfd \ |
490 |
src/rpc-test |
491 |
|
492 |
# All Haskell non-test programs to be compiled but not automatically installed |
493 |
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS) |
494 |
|
495 |
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller |
496 |
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail |
497 |
|
498 |
HS_ALL_PROGS = \ |
499 |
$(HS_PROGS) \ |
500 |
test/hs/hpc-htools \ |
501 |
test/hs/hpc-mon-collector \ |
502 |
test/hs/htest \ |
503 |
$(HS_COMPILE_PROGS) |
504 |
|
505 |
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS)) |
506 |
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail |
507 |
|
508 |
HFLAGS = \ |
509 |
-O -Wall -Werror -isrc \ |
510 |
-fwarn-monomorphism-restriction \ |
511 |
-fwarn-tabs \ |
512 |
$(GHC_BYVERSION_FLAGS) |
513 |
|
514 |
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.) |
515 |
HEXTRA = |
516 |
# internal extra flags (used for test/hs/htest mainly) |
517 |
HEXTRA_INT = |
518 |
# exclude options for coverage reports |
519 |
HPCEXCL = --exclude Main \ |
520 |
--exclude Ganeti.Constants \ |
521 |
--exclude Ganeti.HTools.QC \ |
522 |
--exclude Ganeti.THH \ |
523 |
--exclude Ganeti.Version \ |
524 |
--exclude Test.Ganeti.Attoparsec \ |
525 |
--exclude Test.Ganeti.TestCommon \ |
526 |
--exclude Test.Ganeti.TestHTools \ |
527 |
--exclude Test.Ganeti.TestHelper \ |
528 |
--exclude Test.Ganeti.TestImports \ |
529 |
$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS)))) |
530 |
|
531 |
HS_LIB_SRCS = \ |
532 |
src/Ganeti/Block/Drbd/Types.hs \ |
533 |
src/Ganeti/Block/Drbd/Parser.hs \ |
534 |
src/Ganeti/BasicTypes.hs \ |
535 |
src/Ganeti/Common.hs \ |
536 |
src/Ganeti/Compat.hs \ |
537 |
src/Ganeti/Confd/Client.hs \ |
538 |
src/Ganeti/Confd/Server.hs \ |
539 |
src/Ganeti/Confd/Types.hs \ |
540 |
src/Ganeti/Confd/Utils.hs \ |
541 |
src/Ganeti/Config.hs \ |
542 |
src/Ganeti/Curl/Multi.hs \ |
543 |
src/Ganeti/Daemon.hs \ |
544 |
src/Ganeti/DataCollectors/CLI.hs \ |
545 |
src/Ganeti/DataCollectors/Drbd.hs \ |
546 |
src/Ganeti/DataCollectors/InstStatus.hs \ |
547 |
src/Ganeti/DataCollectors/InstStatusTypes.hs \ |
548 |
src/Ganeti/DataCollectors/Program.hs \ |
549 |
src/Ganeti/DataCollectors/Types.hs \ |
550 |
src/Ganeti/Errors.hs \ |
551 |
src/Ganeti/HTools/Backend/IAlloc.hs \ |
552 |
src/Ganeti/HTools/Backend/Luxi.hs \ |
553 |
src/Ganeti/HTools/Backend/Rapi.hs \ |
554 |
src/Ganeti/HTools/Backend/Simu.hs \ |
555 |
src/Ganeti/HTools/Backend/Text.hs \ |
556 |
src/Ganeti/HTools/CLI.hs \ |
557 |
src/Ganeti/HTools/Cluster.hs \ |
558 |
src/Ganeti/HTools/Container.hs \ |
559 |
src/Ganeti/HTools/ExtLoader.hs \ |
560 |
src/Ganeti/HTools/Graph.hs \ |
561 |
src/Ganeti/HTools/Group.hs \ |
562 |
src/Ganeti/HTools/Instance.hs \ |
563 |
src/Ganeti/HTools/Loader.hs \ |
564 |
src/Ganeti/HTools/Node.hs \ |
565 |
src/Ganeti/HTools/PeerMap.hs \ |
566 |
src/Ganeti/HTools/Program/Hail.hs \ |
567 |
src/Ganeti/HTools/Program/Harep.hs \ |
568 |
src/Ganeti/HTools/Program/Hbal.hs \ |
569 |
src/Ganeti/HTools/Program/Hcheck.hs \ |
570 |
src/Ganeti/HTools/Program/Hinfo.hs \ |
571 |
src/Ganeti/HTools/Program/Hscan.hs \ |
572 |
src/Ganeti/HTools/Program/Hspace.hs \ |
573 |
src/Ganeti/HTools/Program/Hroller.hs \ |
574 |
src/Ganeti/HTools/Program/Main.hs \ |
575 |
src/Ganeti/HTools/Types.hs \ |
576 |
src/Ganeti/Hypervisor/Xen.hs \ |
577 |
src/Ganeti/Hypervisor/Xen/XmParser.hs \ |
578 |
src/Ganeti/Hypervisor/Xen/Types.hs \ |
579 |
src/Ganeti/Hash.hs \ |
580 |
src/Ganeti/JQueue.hs \ |
581 |
src/Ganeti/JSON.hs \ |
582 |
src/Ganeti/Jobs.hs \ |
583 |
src/Ganeti/Logging.hs \ |
584 |
src/Ganeti/Luxi.hs \ |
585 |
src/Ganeti/Monitoring/Server.hs \ |
586 |
src/Ganeti/Network.hs \ |
587 |
src/Ganeti/Objects.hs \ |
588 |
src/Ganeti/OpCodes.hs \ |
589 |
src/Ganeti/OpParams.hs \ |
590 |
src/Ganeti/Path.hs \ |
591 |
src/Ganeti/Query/Common.hs \ |
592 |
src/Ganeti/Query/Export.hs \ |
593 |
src/Ganeti/Query/Filter.hs \ |
594 |
src/Ganeti/Query/Group.hs \ |
595 |
src/Ganeti/Query/Job.hs \ |
596 |
src/Ganeti/Query/Language.hs \ |
597 |
src/Ganeti/Query/Network.hs \ |
598 |
src/Ganeti/Query/Node.hs \ |
599 |
src/Ganeti/Query/Query.hs \ |
600 |
src/Ganeti/Query/Server.hs \ |
601 |
src/Ganeti/Query/Types.hs \ |
602 |
src/Ganeti/Rpc.hs \ |
603 |
src/Ganeti/Runtime.hs \ |
604 |
src/Ganeti/Ssconf.hs \ |
605 |
src/Ganeti/THH.hs \ |
606 |
src/Ganeti/Types.hs \ |
607 |
src/Ganeti/Utils.hs |
608 |
|
609 |
HS_TEST_SRCS = \ |
610 |
test/hs/Test/Ganeti/Attoparsec.hs \ |
611 |
test/hs/Test/Ganeti/BasicTypes.hs \ |
612 |
test/hs/Test/Ganeti/Block/Drbd/Parser.hs \ |
613 |
test/hs/Test/Ganeti/Block/Drbd/Types.hs \ |
614 |
test/hs/Test/Ganeti/Common.hs \ |
615 |
test/hs/Test/Ganeti/Confd/Types.hs \ |
616 |
test/hs/Test/Ganeti/Confd/Utils.hs \ |
617 |
test/hs/Test/Ganeti/Daemon.hs \ |
618 |
test/hs/Test/Ganeti/Errors.hs \ |
619 |
test/hs/Test/Ganeti/HTools/Backend/Simu.hs \ |
620 |
test/hs/Test/Ganeti/HTools/Backend/Text.hs \ |
621 |
test/hs/Test/Ganeti/HTools/CLI.hs \ |
622 |
test/hs/Test/Ganeti/HTools/Cluster.hs \ |
623 |
test/hs/Test/Ganeti/HTools/Container.hs \ |
624 |
test/hs/Test/Ganeti/HTools/Graph.hs \ |
625 |
test/hs/Test/Ganeti/HTools/Instance.hs \ |
626 |
test/hs/Test/Ganeti/HTools/Loader.hs \ |
627 |
test/hs/Test/Ganeti/HTools/Node.hs \ |
628 |
test/hs/Test/Ganeti/HTools/PeerMap.hs \ |
629 |
test/hs/Test/Ganeti/HTools/Types.hs \ |
630 |
test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \ |
631 |
test/hs/Test/Ganeti/JSON.hs \ |
632 |
test/hs/Test/Ganeti/Jobs.hs \ |
633 |
test/hs/Test/Ganeti/JQueue.hs \ |
634 |
test/hs/Test/Ganeti/Luxi.hs \ |
635 |
test/hs/Test/Ganeti/Network.hs \ |
636 |
test/hs/Test/Ganeti/Objects.hs \ |
637 |
test/hs/Test/Ganeti/OpCodes.hs \ |
638 |
test/hs/Test/Ganeti/Query/Filter.hs \ |
639 |
test/hs/Test/Ganeti/Query/Language.hs \ |
640 |
test/hs/Test/Ganeti/Query/Network.hs \ |
641 |
test/hs/Test/Ganeti/Query/Query.hs \ |
642 |
test/hs/Test/Ganeti/Rpc.hs \ |
643 |
test/hs/Test/Ganeti/Runtime.hs \ |
644 |
test/hs/Test/Ganeti/Ssconf.hs \ |
645 |
test/hs/Test/Ganeti/THH.hs \ |
646 |
test/hs/Test/Ganeti/TestCommon.hs \ |
647 |
test/hs/Test/Ganeti/TestHTools.hs \ |
648 |
test/hs/Test/Ganeti/TestHelper.hs \ |
649 |
test/hs/Test/Ganeti/Types.hs \ |
650 |
test/hs/Test/Ganeti/Utils.hs |
651 |
|
652 |
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS) |
653 |
|
654 |
HS_BUILT_SRCS = \ |
655 |
test/hs/Test/Ganeti/TestImports.hs \ |
656 |
src/Ganeti/Constants.hs \ |
657 |
src/Ganeti/Curl/Internal.hs \ |
658 |
src/Ganeti/Version.hs |
659 |
HS_BUILT_SRCS_IN = \ |
660 |
$(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \ |
661 |
src/Ganeti/Curl/Internal.hsc |
662 |
|
663 |
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS) |
664 |
|
665 |
$(RUN_IN_TEMPDIR): | stamp-directories |
666 |
|
667 |
doc/html/index.html: ENABLE_MANPAGES = |
668 |
doc/man-html/index.html: ENABLE_MANPAGES = 1 |
669 |
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst) |
670 |
|
671 |
# Note: we use here an order-only prerequisite, as the contents of |
672 |
# _autoconf.py are not actually influencing the html build output: it |
673 |
# has to exist in order for the sphinx module to be loaded |
674 |
# successfully, but we certainly don't want the docs to be rebuilt if |
675 |
# it changes |
676 |
doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \ |
677 |
configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \ |
678 |
lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \ |
679 |
doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \ |
680 |
| $(BUILT_PYTHON_SOURCES) |
681 |
@test -n "$(SPHINX)" || \ |
682 |
{ echo 'sphinx-build' not found during configure; exit 1; } |
683 |
if !MANPAGES_IN_DOC |
684 |
if test -n '$(ENABLE_MANPAGES)'; then \ |
685 |
echo 'Man pages in documentation were disabled at configure time' >&2; \ |
686 |
exit 1; \ |
687 |
fi |
688 |
endif |
689 |
## Sphinx provides little control over what content should be included. Some |
690 |
## mechanisms exist, but they all have drawbacks or actual issues. Since we |
691 |
## build two different versions of the documentation--once without man pages and |
692 |
## once, if enabled, with them--some control is necessary. xmpp-wrapper provides |
693 |
## us with this, but requires running in a temporary directory. It moves the |
694 |
## correct files into place depending on environment variables. |
695 |
dir=$(dir $@) && \ |
696 |
@mkdir_p@ $$dir && \ |
697 |
PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \ |
698 |
$(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \ |
699 |
-d . \ |
700 |
-D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \ |
701 |
-D release="$(PACKAGE_VERSION)" \ |
702 |
-D graphviz_dot="$(DOT)" \ |
703 |
-D enable_manpages="$(ENABLE_MANPAGES)" \ |
704 |
doc $(CURDIR)/$$dir && \ |
705 |
rm -f $$dir/.buildinfo $$dir/objects.inv |
706 |
touch $@ |
707 |
|
708 |
doc/html: doc/html/index.html |
709 |
|
710 |
doc/man-html: doc/man-html/index.html |
711 |
|
712 |
doc/install-quick.rst: INSTALL |
713 |
doc/news.rst: NEWS |
714 |
doc/upgrade.rst: UPGRADE |
715 |
|
716 |
doc/install-quick.rst doc/news.rst doc/upgrade.rst: |
717 |
set -e; \ |
718 |
{ echo '.. This file is automatically updated at build time from $<.'; \ |
719 |
echo '.. Do not edit.'; \ |
720 |
echo; \ |
721 |
cat $<; \ |
722 |
} > $@ |
723 |
|
724 |
doc/manpages-enabled.rst: Makefile | $(built_base_sources) |
725 |
{ echo '.. This file is automatically generated, do not edit!'; \ |
726 |
echo ''; \ |
727 |
echo 'Man pages'; \ |
728 |
echo '========='; \ |
729 |
echo; \ |
730 |
echo '.. toctree::'; \ |
731 |
echo ' :maxdepth: 1'; \ |
732 |
echo; \ |
733 |
for i in $(notdir $(mandocrst)); do \ |
734 |
echo " $$i"; \ |
735 |
done | LC_ALL=C sort; \ |
736 |
} > $@ |
737 |
|
738 |
doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources) |
739 |
if MANPAGES_IN_DOC |
740 |
{ echo '.. This file is automatically updated at build time from $<.'; \ |
741 |
echo '.. Do not edit.'; \ |
742 |
echo; \ |
743 |
echo "$*"; \ |
744 |
echo '=========================================='; \ |
745 |
tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \ |
746 |
} > $@ |
747 |
else |
748 |
echo 'Man pages in documentation were disabled at configure time' >&2; \ |
749 |
exit 1; |
750 |
endif |
751 |
|
752 |
# Things to build but not to install (add it to EXTRA_DIST if it should be |
753 |
# distributed) |
754 |
noinst_DATA = \ |
755 |
doc/html \ |
756 |
$(BUILT_EXAMPLES) \ |
757 |
doc/examples/bash_completion \ |
758 |
doc/examples/bash_completion-debug \ |
759 |
$(manhtml) |
760 |
|
761 |
if MANPAGES_IN_DOC |
762 |
noinst_DATA += doc/man-html |
763 |
endif |
764 |
|
765 |
gnt_scripts = \ |
766 |
scripts/gnt-backup \ |
767 |
scripts/gnt-cluster \ |
768 |
scripts/gnt-debug \ |
769 |
scripts/gnt-group \ |
770 |
scripts/gnt-instance \ |
771 |
scripts/gnt-job \ |
772 |
scripts/gnt-network \ |
773 |
scripts/gnt-node \ |
774 |
scripts/gnt-os \ |
775 |
scripts/gnt-storage |
776 |
|
777 |
PYTHON_BOOTSTRAP_SBIN = \ |
778 |
daemons/ganeti-masterd \ |
779 |
daemons/ganeti-noded \ |
780 |
daemons/ganeti-rapi \ |
781 |
daemons/ganeti-watcher \ |
782 |
$(gnt_scripts) |
783 |
|
784 |
PYTHON_BOOTSTRAP = \ |
785 |
$(PYTHON_BOOTSTRAP_SBIN) \ |
786 |
tools/burnin \ |
787 |
tools/ensure-dirs \ |
788 |
tools/node-cleanup \ |
789 |
tools/node-daemon-setup \ |
790 |
tools/prepare-node-join |
791 |
|
792 |
qa_scripts = \ |
793 |
qa/__init__.py \ |
794 |
qa/ganeti-qa.py \ |
795 |
qa/qa_cluster.py \ |
796 |
qa/qa_config.py \ |
797 |
qa/qa_daemon.py \ |
798 |
qa/qa_env.py \ |
799 |
qa/qa_error.py \ |
800 |
qa/qa_group.py \ |
801 |
qa/qa_instance.py \ |
802 |
qa/qa_instance_utils.py \ |
803 |
qa/qa_job.py \ |
804 |
qa/qa_monitoring.py \ |
805 |
qa/qa_node.py \ |
806 |
qa/qa_os.py \ |
807 |
qa/qa_rapi.py \ |
808 |
qa/qa_tags.py \ |
809 |
qa/qa_utils.py |
810 |
|
811 |
bin_SCRIPTS = |
812 |
if WANT_HTOOLS |
813 |
bin_SCRIPTS += $(HS_BIN_PROGS) |
814 |
install-exec-hook: |
815 |
@mkdir_p@ $(DESTDIR)$(iallocatorsdir) |
816 |
# FIXME: this is a hardcoded logic, instead of auto-resolving |
817 |
$(LN_S) -f ../../../bin/htools \ |
818 |
$(DESTDIR)$(iallocatorsdir)/hail |
819 |
for role in $(HS_BIN_ROLES); do \ |
820 |
$(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \ |
821 |
done |
822 |
endif |
823 |
|
824 |
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTESTBUILT_SRCS) Makefile |
825 |
@if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \ |
826 |
echo "Error: cannot run unittests without the development" \ |
827 |
" libraries (see devnotes.rst)" 1>&2; \ |
828 |
exit 1; \ |
829 |
fi |
830 |
@rm -f $(notdir $@).tix |
831 |
$(GHC) --make \ |
832 |
$(HFLAGS) \ |
833 |
$(HS_PARALLEL3) $(HS_REGEX_PCRE) \ |
834 |
-osuf $(notdir $@).o -hisuf $(notdir $@).hi \ |
835 |
$(HEXTRA) $(HEXTRA_INT) $@ |
836 |
@touch "$@" |
837 |
|
838 |
# for the test/hs/htest binary, we need to enable profiling/coverage |
839 |
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs |
840 |
|
841 |
# we compile the hpc-htools binary with the program coverage |
842 |
test/hs/hpc-htools: HEXTRA_INT=-fhpc |
843 |
|
844 |
# we compile the hpc-mon-collector binary with the program coverage |
845 |
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc |
846 |
|
847 |
# test dependency |
848 |
test/hs/offline-tests.sh: test/hs/hpc-htools test/hs/hpc-mon-collector |
849 |
|
850 |
# rules for building profiling-enabled versions of the haskell |
851 |
# programs: hs-prof does the full two-step build, whereas |
852 |
# hs-prof-quick does only the final rebuild (hs-prof must have been |
853 |
# run before) |
854 |
.PHONY: hs-prof hs-prof-quick |
855 |
hs-prof: |
856 |
@if [ -z "$(TARGET)" ]; then \ |
857 |
echo "You need to define TARGET when running this rule" 1>&2; \ |
858 |
exit 1; \ |
859 |
fi |
860 |
$(MAKE) $(AM_MAKEFLAGS) clean |
861 |
$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o" |
862 |
rm -f $(HS_ALL_PROGS) |
863 |
$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick |
864 |
|
865 |
hs-prof-quick: |
866 |
@if [ -z "$(TARGET)" ]; then \ |
867 |
echo "You need to define TARGET when running this rule" 1>&2; \ |
868 |
exit 1; \ |
869 |
fi |
870 |
$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all" |
871 |
|
872 |
dist_sbin_SCRIPTS = \ |
873 |
tools/ganeti-listrunner |
874 |
|
875 |
nodist_sbin_SCRIPTS = \ |
876 |
$(PYTHON_BOOTSTRAP_SBIN) \ |
877 |
daemons/ganeti-cleaner |
878 |
|
879 |
if ENABLE_CONFD |
880 |
src/ganeti-confd: src/hconfd |
881 |
cp -f $< $@ |
882 |
|
883 |
nodist_sbin_SCRIPTS += src/ganeti-confd |
884 |
endif |
885 |
|
886 |
if ENABLE_MOND |
887 |
nodist_sbin_SCRIPTS += src/ganeti-mond |
888 |
endif |
889 |
|
890 |
python_scripts = \ |
891 |
tools/cfgshell \ |
892 |
tools/cfgupgrade \ |
893 |
tools/cfgupgrade12 \ |
894 |
tools/cluster-merge \ |
895 |
tools/confd-client \ |
896 |
tools/fmtjson \ |
897 |
tools/lvmstrap \ |
898 |
tools/move-instance \ |
899 |
tools/ovfconverter \ |
900 |
tools/sanitize-config |
901 |
|
902 |
dist_tools_SCRIPTS = \ |
903 |
$(python_scripts) \ |
904 |
tools/burnin \ |
905 |
tools/kvm-console-wrapper \ |
906 |
tools/master-ip-setup \ |
907 |
tools/xen-console-wrapper |
908 |
|
909 |
nodist_tools_python_scripts = \ |
910 |
tools/node-cleanup |
911 |
|
912 |
nodist_tools_SCRIPTS = \ |
913 |
$(nodist_tools_python_scripts) \ |
914 |
tools/users-setup \ |
915 |
tools/vcluster-setup |
916 |
|
917 |
pkglib_python_scripts = \ |
918 |
daemons/import-export \ |
919 |
tools/check-cert-expired |
920 |
|
921 |
nodist_pkglib_python_scripts = \ |
922 |
tools/ensure-dirs \ |
923 |
tools/node-daemon-setup \ |
924 |
tools/prepare-node-join |
925 |
|
926 |
myexeclib_SCRIPTS = \ |
927 |
daemons/daemon-util \ |
928 |
tools/kvm-ifup \ |
929 |
$(pkglib_python_scripts) \ |
930 |
$(HS_MYEXECLIB_PROGS) |
931 |
|
932 |
nodist_myexeclib_SCRIPTS = \ |
933 |
$(nodist_pkglib_python_scripts) |
934 |
|
935 |
EXTRA_DIST = \ |
936 |
NEWS \ |
937 |
UPGRADE \ |
938 |
epydoc.conf.in \ |
939 |
pylintrc \ |
940 |
autotools/build-bash-completion \ |
941 |
autotools/build-rpc \ |
942 |
autotools/check-header \ |
943 |
autotools/check-imports \ |
944 |
autotools/check-man-dashes \ |
945 |
autotools/check-man-references \ |
946 |
autotools/check-man-warnings \ |
947 |
autotools/check-news \ |
948 |
autotools/check-python-code \ |
949 |
autotools/check-tar \ |
950 |
autotools/check-version \ |
951 |
autotools/convert-constants \ |
952 |
autotools/docpp \ |
953 |
autotools/gen-py-coverage \ |
954 |
autotools/sphinx-wrapper \ |
955 |
autotools/testrunner \ |
956 |
autotools/wrong-hardcoded-paths \ |
957 |
$(RUN_IN_TEMPDIR) \ |
958 |
daemons/daemon-util.in \ |
959 |
daemons/ganeti-cleaner.in \ |
960 |
$(pkglib_python_scripts) \ |
961 |
devel/upload \ |
962 |
devel/webserver \ |
963 |
tools/kvm-ifup.in \ |
964 |
tools/users-setup.in \ |
965 |
tools/vcluster-setup.in \ |
966 |
$(docinput) \ |
967 |
doc/html \ |
968 |
$(BUILT_EXAMPLES:%=%.in) \ |
969 |
doc/examples/ganeti.default \ |
970 |
doc/examples/ganeti.default-debug \ |
971 |
doc/examples/hooks/ethers \ |
972 |
doc/examples/gnt-debug/README \ |
973 |
doc/examples/gnt-debug/delay0.json \ |
974 |
doc/examples/gnt-debug/delay50.json \ |
975 |
test/py/lockperf.py \ |
976 |
test/py/testutils.py \ |
977 |
test/py/mocks.py \ |
978 |
$(dist_TESTS) \ |
979 |
$(TEST_FILES) \ |
980 |
man/footer.rst \ |
981 |
$(manrst) \ |
982 |
$(maninput) \ |
983 |
qa/qa-sample.json \ |
984 |
$(qa_scripts) \ |
985 |
$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \ |
986 |
$(HS_PROG_SRCS) \ |
987 |
src/lint-hints.hs \ |
988 |
test/hs/cli-tests-defs.sh \ |
989 |
test/hs/offline-test.sh \ |
990 |
.ghci |
991 |
|
992 |
man_MANS = \ |
993 |
man/ganeti-cleaner.8 \ |
994 |
man/ganeti-confd.8 \ |
995 |
man/ganeti-listrunner.8 \ |
996 |
man/ganeti-masterd.8 \ |
997 |
man/ganeti-mond.8 \ |
998 |
man/ganeti-noded.8 \ |
999 |
man/ganeti-os-interface.7 \ |
1000 |
man/ganeti-extstorage-interface.7 \ |
1001 |
man/ganeti-rapi.8 \ |
1002 |
man/ganeti-watcher.8 \ |
1003 |
man/ganeti.7 \ |
1004 |
man/gnt-backup.8 \ |
1005 |
man/gnt-cluster.8 \ |
1006 |
man/gnt-debug.8 \ |
1007 |
man/gnt-group.8 \ |
1008 |
man/gnt-network.8 \ |
1009 |
man/gnt-instance.8 \ |
1010 |
man/gnt-job.8 \ |
1011 |
man/gnt-node.8 \ |
1012 |
man/gnt-os.8 \ |
1013 |
man/gnt-storage.8 \ |
1014 |
man/hail.1 \ |
1015 |
man/hbal.1 \ |
1016 |
man/hcheck.1 \ |
1017 |
man/hinfo.1 \ |
1018 |
man/hscan.1 \ |
1019 |
man/hspace.1 \ |
1020 |
man/hroller.1 \ |
1021 |
man/htools.1 \ |
1022 |
man/mon-collector.7 |
1023 |
|
1024 |
# Remove extensions from all filenames in man_MANS |
1025 |
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS)))) |
1026 |
|
1027 |
manrst = $(patsubst %,%.rst,$(mannoext)) |
1028 |
manhtml = $(patsubst %.rst,%.html,$(manrst)) |
1029 |
mangen = $(patsubst %.rst,%.gen,$(manrst)) |
1030 |
maninput = \ |
1031 |
$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \ |
1032 |
$(patsubst %.html,%.html.in,$(manhtml)) \ |
1033 |
$(mangen) |
1034 |
|
1035 |
TEST_FILES = \ |
1036 |
test/data/htools/clean-nonzero-score.data \ |
1037 |
test/data/htools/common-suffix.data \ |
1038 |
test/data/htools/empty-cluster.data \ |
1039 |
test/data/htools/hail-alloc-drbd.json \ |
1040 |
test/data/htools/hail-alloc-invalid-twodisks.json \ |
1041 |
test/data/htools/hail-alloc-twodisks.json \ |
1042 |
test/data/htools/hail-change-group.json \ |
1043 |
test/data/htools/hail-invalid-reloc.json \ |
1044 |
test/data/htools/hail-node-evac.json \ |
1045 |
test/data/htools/hail-reloc-drbd.json \ |
1046 |
test/data/htools/hbal-excl-tags.data \ |
1047 |
test/data/htools/hbal-split-insts.data \ |
1048 |
test/data/htools/hspace-tiered-dualspec.data \ |
1049 |
test/data/htools/hspace-tiered.data \ |
1050 |
test/data/htools/invalid-node.data \ |
1051 |
test/data/htools/missing-resources.data \ |
1052 |
test/data/htools/multiple-master.data \ |
1053 |
test/data/htools/multiple-tags.data \ |
1054 |
test/data/htools/n1-failure.data \ |
1055 |
test/data/htools/rapi/groups.json \ |
1056 |
test/data/htools/rapi/info.json \ |
1057 |
test/data/htools/rapi/instances.json \ |
1058 |
test/data/htools/rapi/nodes.json \ |
1059 |
test/data/htools/hroller-nonredundant.data \ |
1060 |
test/data/htools/hroller-online.data \ |
1061 |
test/data/htools/unique-reboot-order.data \ |
1062 |
test/hs/shelltests/htools-balancing.test \ |
1063 |
test/hs/shelltests/htools-basic.test \ |
1064 |
test/hs/shelltests/htools-dynutil.test \ |
1065 |
test/hs/shelltests/htools-excl.test \ |
1066 |
test/hs/shelltests/htools-hail.test \ |
1067 |
test/hs/shelltests/htools-hroller.test \ |
1068 |
test/hs/shelltests/htools-hspace.test \ |
1069 |
test/hs/shelltests/htools-invalid.test \ |
1070 |
test/hs/shelltests/htools-multi-group.test \ |
1071 |
test/hs/shelltests/htools-no-backend.test \ |
1072 |
test/hs/shelltests/htools-rapi.test \ |
1073 |
test/hs/shelltests/htools-single-group.test \ |
1074 |
test/hs/shelltests/htools-text-backend.test \ |
1075 |
test/hs/shelltests/htools-mon-collector.test \ |
1076 |
test/data/bdev-drbd-8.0.txt \ |
1077 |
test/data/bdev-drbd-8.3.txt \ |
1078 |
test/data/bdev-drbd-8.4.txt \ |
1079 |
test/data/bdev-drbd-disk.txt \ |
1080 |
test/data/bdev-drbd-net-ip4.txt \ |
1081 |
test/data/bdev-drbd-net-ip6.txt \ |
1082 |
test/data/bdev-rbd/json_output_empty.txt \ |
1083 |
test/data/bdev-rbd/json_output_extra_matches.txt \ |
1084 |
test/data/bdev-rbd/json_output_no_matches.txt \ |
1085 |
test/data/bdev-rbd/json_output_ok.txt \ |
1086 |
test/data/bdev-rbd/plain_output_new_extra_matches.txt \ |
1087 |
test/data/bdev-rbd/plain_output_new_no_matches.txt \ |
1088 |
test/data/bdev-rbd/plain_output_new_ok.txt \ |
1089 |
test/data/bdev-rbd/plain_output_old_empty.txt \ |
1090 |
test/data/bdev-rbd/plain_output_old_extra_matches.txt \ |
1091 |
test/data/bdev-rbd/plain_output_old_no_matches.txt \ |
1092 |
test/data/bdev-rbd/plain_output_old_ok.txt \ |
1093 |
test/data/bdev-rbd/output_invalid.txt \ |
1094 |
test/data/cert1.pem \ |
1095 |
test/data/cert2.pem \ |
1096 |
test/data/cluster_config_2.7.json \ |
1097 |
test/data/cluster_config_downgraded_2.7.json \ |
1098 |
test/data/instance-minor-pairing.txt \ |
1099 |
test/data/ip-addr-show-dummy0.txt \ |
1100 |
test/data/ip-addr-show-lo-ipv4.txt \ |
1101 |
test/data/ip-addr-show-lo-ipv6.txt \ |
1102 |
test/data/ip-addr-show-lo-oneline-ipv4.txt \ |
1103 |
test/data/ip-addr-show-lo-oneline-ipv6.txt \ |
1104 |
test/data/ip-addr-show-lo-oneline.txt \ |
1105 |
test/data/ip-addr-show-lo.txt \ |
1106 |
test/data/kvm_0.12.5_help.txt \ |
1107 |
test/data/kvm_0.15.90_help.txt \ |
1108 |
test/data/kvm_0.9.1_help.txt \ |
1109 |
test/data/kvm_0.9.1_help_boot_test.txt \ |
1110 |
test/data/kvm_1.0_help.txt \ |
1111 |
test/data/kvm_1.1.2_help.txt \ |
1112 |
test/data/ovfdata/compr_disk.vmdk.gz \ |
1113 |
test/data/ovfdata/config.ini \ |
1114 |
test/data/ovfdata/corrupted_resources.ovf \ |
1115 |
test/data/ovfdata/empty.ini \ |
1116 |
test/data/ovfdata/empty.ovf \ |
1117 |
test/data/ovfdata/ganeti.mf \ |
1118 |
test/data/ovfdata/ganeti.ovf \ |
1119 |
test/data/ovfdata/gzip_disk.ovf \ |
1120 |
test/data/ovfdata/new_disk.vmdk \ |
1121 |
test/data/ovfdata/no_disk.ini \ |
1122 |
test/data/ovfdata/no_disk_in_ref.ovf \ |
1123 |
test/data/ovfdata/no_os.ini \ |
1124 |
test/data/ovfdata/no_ovf.ova \ |
1125 |
test/data/ovfdata/other/rawdisk.raw \ |
1126 |
test/data/ovfdata/ova.ova \ |
1127 |
test/data/ovfdata/rawdisk.raw \ |
1128 |
test/data/ovfdata/second_disk.vmdk \ |
1129 |
test/data/ovfdata/unsafe_path.ini \ |
1130 |
test/data/ovfdata/virtualbox.ovf \ |
1131 |
test/data/ovfdata/wrong_config.ini \ |
1132 |
test/data/ovfdata/wrong_extension.ovd \ |
1133 |
test/data/ovfdata/wrong_manifest.mf \ |
1134 |
test/data/ovfdata/wrong_manifest.ovf \ |
1135 |
test/data/ovfdata/wrong_ova.ova \ |
1136 |
test/data/ovfdata/wrong_xml.ovf \ |
1137 |
test/data/proc_drbd8.txt \ |
1138 |
test/data/proc_drbd80-emptyline.txt \ |
1139 |
test/data/proc_drbd80-emptyversion.txt \ |
1140 |
test/data/proc_drbd83.txt \ |
1141 |
test/data/proc_drbd83_sync.txt \ |
1142 |
test/data/proc_drbd83_sync_want.txt \ |
1143 |
test/data/proc_drbd83_sync_krnl2.6.39.txt \ |
1144 |
test/data/proc_drbd84.txt \ |
1145 |
test/data/proc_drbd84_sync.txt \ |
1146 |
test/data/qa-minimal-nodes-instances-only.json \ |
1147 |
test/data/sys_drbd_usermode_helper.txt \ |
1148 |
test/data/vgreduce-removemissing-2.02.02.txt \ |
1149 |
test/data/vgreduce-removemissing-2.02.66-fail.txt \ |
1150 |
test/data/vgreduce-removemissing-2.02.66-ok.txt \ |
1151 |
test/data/vgs-missing-pvs-2.02.02.txt \ |
1152 |
test/data/vgs-missing-pvs-2.02.66.txt \ |
1153 |
test/data/xen-xm-info-4.0.1.txt \ |
1154 |
test/data/xen-xm-list-4.0.1-dom0-only.txt \ |
1155 |
test/data/xen-xm-list-4.0.1-four-instances.txt \ |
1156 |
test/data/xen-xm-list-long-4.0.1.txt \ |
1157 |
test/data/xen-xm-uptime-4.0.1.txt \ |
1158 |
test/py/ganeti-cli.test \ |
1159 |
test/py/gnt-cli.test \ |
1160 |
test/py/import-export_unittest-helper |
1161 |
|
1162 |
python_tests = \ |
1163 |
doc/examples/rapi_testutils.py \ |
1164 |
test/py/cfgupgrade_unittest.py \ |
1165 |
test/py/docs_unittest.py \ |
1166 |
test/py/ganeti.asyncnotifier_unittest.py \ |
1167 |
test/py/ganeti.backend_unittest-runasroot.py \ |
1168 |
test/py/ganeti.backend_unittest.py \ |
1169 |
test/py/ganeti.cli_unittest.py \ |
1170 |
test/py/ganeti.client.gnt_cluster_unittest.py \ |
1171 |
test/py/ganeti.client.gnt_instance_unittest.py \ |
1172 |
test/py/ganeti.client.gnt_job_unittest.py \ |
1173 |
test/py/ganeti.cmdlib_unittest.py \ |
1174 |
test/py/ganeti.compat_unittest.py \ |
1175 |
test/py/ganeti.confd.client_unittest.py \ |
1176 |
test/py/ganeti.config_unittest.py \ |
1177 |
test/py/ganeti.constants_unittest.py \ |
1178 |
test/py/ganeti.daemon_unittest.py \ |
1179 |
test/py/ganeti.errors_unittest.py \ |
1180 |
test/py/ganeti.hooks_unittest.py \ |
1181 |
test/py/ganeti.ht_unittest.py \ |
1182 |
test/py/ganeti.http_unittest.py \ |
1183 |
test/py/ganeti.hypervisor.hv_chroot_unittest.py \ |
1184 |
test/py/ganeti.hypervisor.hv_fake_unittest.py \ |
1185 |
test/py/ganeti.hypervisor.hv_kvm_unittest.py \ |
1186 |
test/py/ganeti.hypervisor.hv_lxc_unittest.py \ |
1187 |
test/py/ganeti.hypervisor.hv_xen_unittest.py \ |
1188 |
test/py/ganeti.hypervisor_unittest.py \ |
1189 |
test/py/ganeti.impexpd_unittest.py \ |
1190 |
test/py/ganeti.jqueue_unittest.py \ |
1191 |
test/py/ganeti.jstore_unittest.py \ |
1192 |
test/py/ganeti.locking_unittest.py \ |
1193 |
test/py/ganeti.luxi_unittest.py \ |
1194 |
test/py/ganeti.masterd.iallocator_unittest.py \ |
1195 |
test/py/ganeti.masterd.instance_unittest.py \ |
1196 |
test/py/ganeti.mcpu_unittest.py \ |
1197 |
test/py/ganeti.netutils_unittest.py \ |
1198 |
test/py/ganeti.objects_unittest.py \ |
1199 |
test/py/ganeti.opcodes_unittest.py \ |
1200 |
test/py/ganeti.outils_unittest.py \ |
1201 |
test/py/ganeti.ovf_unittest.py \ |
1202 |
test/py/ganeti.qlang_unittest.py \ |
1203 |
test/py/ganeti.query_unittest.py \ |
1204 |
test/py/ganeti.rapi.baserlib_unittest.py \ |
1205 |
test/py/ganeti.rapi.client_unittest.py \ |
1206 |
test/py/ganeti.rapi.resources_unittest.py \ |
1207 |
test/py/ganeti.rapi.rlib2_unittest.py \ |
1208 |
test/py/ganeti.rapi.testutils_unittest.py \ |
1209 |
test/py/ganeti.rpc_unittest.py \ |
1210 |
test/py/ganeti.runtime_unittest.py \ |
1211 |
test/py/ganeti.serializer_unittest.py \ |
1212 |
test/py/ganeti.server.rapi_unittest.py \ |
1213 |
test/py/ganeti.ssconf_unittest.py \ |
1214 |
test/py/ganeti.ssh_unittest.py \ |
1215 |
test/py/ganeti.storage.bdev_unittest.py \ |
1216 |
test/py/ganeti.storage.container_unittest.py \ |
1217 |
test/py/ganeti.storage.drbd_unittest.py \ |
1218 |
test/py/ganeti.storage.filestorage_unittest.py \ |
1219 |
test/py/ganeti.tools.burnin_unittest.py \ |
1220 |
test/py/ganeti.tools.ensure_dirs_unittest.py \ |
1221 |
test/py/ganeti.tools.node_daemon_setup_unittest.py \ |
1222 |
test/py/ganeti.tools.prepare_node_join_unittest.py \ |
1223 |
test/py/ganeti.uidpool_unittest.py \ |
1224 |
test/py/ganeti.utils.algo_unittest.py \ |
1225 |
test/py/ganeti.utils.filelock_unittest.py \ |
1226 |
test/py/ganeti.utils.hash_unittest.py \ |
1227 |
test/py/ganeti.utils.io_unittest-runasroot.py \ |
1228 |
test/py/ganeti.utils.io_unittest.py \ |
1229 |
test/py/ganeti.utils.log_unittest.py \ |
1230 |
test/py/ganeti.utils.lvm_unittest.py \ |
1231 |
test/py/ganeti.utils.mlock_unittest.py \ |
1232 |
test/py/ganeti.utils.nodesetup_unittest.py \ |
1233 |
test/py/ganeti.utils.process_unittest.py \ |
1234 |
test/py/ganeti.utils.retry_unittest.py \ |
1235 |
test/py/ganeti.utils.text_unittest.py \ |
1236 |
test/py/ganeti.utils.wrapper_unittest.py \ |
1237 |
test/py/ganeti.utils.x509_unittest.py \ |
1238 |
test/py/ganeti.utils_unittest.py \ |
1239 |
test/py/ganeti.vcluster_unittest.py \ |
1240 |
test/py/ganeti.workerpool_unittest.py \ |
1241 |
test/py/pycurl_reset_unittest.py \ |
1242 |
test/py/qa.qa_config_unittest.py \ |
1243 |
test/py/tempfile_fork_unittest.py |
1244 |
|
1245 |
haskell_tests = test/hs/htest |
1246 |
|
1247 |
dist_TESTS = \ |
1248 |
test/py/check-cert-expired_unittest.bash \ |
1249 |
test/py/daemon-util_unittest.bash \ |
1250 |
test/py/ganeti-cleaner_unittest.bash \ |
1251 |
test/py/import-export_unittest.bash \ |
1252 |
test/py/cli-test.bash \ |
1253 |
test/py/bash_completion.bash \ |
1254 |
$(python_tests) |
1255 |
|
1256 |
nodist_TESTS = |
1257 |
check_SCRIPTS = |
1258 |
|
1259 |
if WANT_HSTESTS |
1260 |
nodist_TESTS += $(haskell_tests) |
1261 |
dist_TESTS += test/hs/offline-test.sh |
1262 |
check_SCRIPTS += \ |
1263 |
test/hs/hpc-htools \ |
1264 |
test/hs/hpc-mon-collector \ |
1265 |
$(HS_BUILT_TEST_HELPERS) |
1266 |
endif |
1267 |
|
1268 |
TESTS = $(dist_TESTS) $(nodist_TESTS) |
1269 |
|
1270 |
# Environment for all tests |
1271 |
PLAIN_TESTS_ENVIRONMENT = \ |
1272 |
PYTHONPATH=. \ |
1273 |
TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \ |
1274 |
PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \ |
1275 |
$(RUN_IN_TEMPDIR) |
1276 |
|
1277 |
# Environment for tests run by automake |
1278 |
TESTS_ENVIRONMENT = \ |
1279 |
$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner |
1280 |
|
1281 |
all_python_code = \ |
1282 |
$(dist_sbin_SCRIPTS) \ |
1283 |
$(python_scripts) \ |
1284 |
$(pkglib_python_scripts) \ |
1285 |
$(nodist_pkglib_python_scripts) \ |
1286 |
$(nodist_tools_python_scripts) \ |
1287 |
$(python_tests) \ |
1288 |
$(pkgpython_PYTHON) \ |
1289 |
$(client_PYTHON) \ |
1290 |
$(cmdlib_PYTHON) \ |
1291 |
$(hypervisor_PYTHON) \ |
1292 |
$(storage_PYTHON) \ |
1293 |
$(rapi_PYTHON) \ |
1294 |
$(server_PYTHON) \ |
1295 |
$(pytools_PYTHON) \ |
1296 |
$(http_PYTHON) \ |
1297 |
$(confd_PYTHON) \ |
1298 |
$(masterd_PYTHON) \ |
1299 |
$(impexpd_PYTHON) \ |
1300 |
$(utils_PYTHON) \ |
1301 |
$(watcher_PYTHON) \ |
1302 |
$(noinst_PYTHON) \ |
1303 |
$(qa_scripts) |
1304 |
|
1305 |
srclink_files = \ |
1306 |
man/footer.rst \ |
1307 |
test/py/check-cert-expired_unittest.bash \ |
1308 |
test/py/daemon-util_unittest.bash \ |
1309 |
test/py/ganeti-cleaner_unittest.bash \ |
1310 |
test/py/import-export_unittest.bash \ |
1311 |
test/py/cli-test.bash \ |
1312 |
test/py/bash_completion.bash \ |
1313 |
test/hs/offline-test.sh \ |
1314 |
test/hs/cli-tests-defs.sh \ |
1315 |
$(all_python_code) \ |
1316 |
$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \ |
1317 |
$(docinput) |
1318 |
|
1319 |
check_python_code = \ |
1320 |
$(BUILD_BASH_COMPLETION) \ |
1321 |
$(CHECK_IMPORTS) \ |
1322 |
$(CHECK_HEADER) \ |
1323 |
$(DOCPP) \ |
1324 |
$(all_python_code) |
1325 |
|
1326 |
lint_python_code = \ |
1327 |
ganeti \ |
1328 |
ganeti/http/server.py \ |
1329 |
$(dist_sbin_SCRIPTS) \ |
1330 |
$(python_scripts) \ |
1331 |
$(pkglib_python_scripts) \ |
1332 |
$(BUILD_BASH_COMPLETION) \ |
1333 |
$(CHECK_IMPORTS) \ |
1334 |
$(CHECK_HEADER) \ |
1335 |
$(DOCPP) \ |
1336 |
$(PYTHON_BOOTSTRAP) |
1337 |
|
1338 |
standalone_python_modules = \ |
1339 |
lib/rapi/client.py \ |
1340 |
tools/ganeti-listrunner |
1341 |
|
1342 |
pep8_python_code = \ |
1343 |
ganeti \ |
1344 |
ganeti/http/server.py \ |
1345 |
$(dist_sbin_SCRIPTS) \ |
1346 |
$(python_scripts) \ |
1347 |
$(pkglib_python_scripts) \ |
1348 |
$(BUILD_BASH_COMPLETION) \ |
1349 |
$(CHECK_HEADER) \ |
1350 |
$(DOCPP) \ |
1351 |
$(PYTHON_BOOTSTRAP) \ |
1352 |
qa |
1353 |
|
1354 |
test/py/daemon-util_unittest.bash: daemons/daemon-util |
1355 |
|
1356 |
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner |
1357 |
|
1358 |
test/py/bash_completion.bash: doc/examples/bash_completion-debug |
1359 |
|
1360 |
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED) |
1361 |
sed -f $(REPLACE_VARS_SED) < $< > $@ |
1362 |
chmod +x $@ |
1363 |
|
1364 |
tools/users-setup: tools/users-setup.in $(REPLACE_VARS_SED) |
1365 |
sed -f $(REPLACE_VARS_SED) < $< > $@ |
1366 |
chmod +x $@ |
1367 |
|
1368 |
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED) |
1369 |
sed -f $(REPLACE_VARS_SED) < $< > $@ |
1370 |
chmod +x $@ |
1371 |
|
1372 |
daemons/%:: daemons/%.in $(REPLACE_VARS_SED) |
1373 |
sed -f $(REPLACE_VARS_SED) < $< > $@ |
1374 |
chmod +x $@ |
1375 |
|
1376 |
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED) |
1377 |
sed -f $(REPLACE_VARS_SED) < $< > $@ |
1378 |
|
1379 |
doc/examples/bash_completion: BC_ARGS = --compact |
1380 |
doc/examples/bash_completion-debug: BC_ARGS = |
1381 |
|
1382 |
doc/examples/bash_completion doc/examples/bash_completion-debug: \ |
1383 |
$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \ |
1384 |
lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \ |
1385 |
daemons/ganeti-cleaner \ |
1386 |
$(GENERATED_FILES) $(HS_GENERATED_FILES) |
1387 |
PYTHONPATH=. $(RUN_IN_TEMPDIR) \ |
1388 |
$(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@ |
1389 |
|
1390 |
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \ |
1391 |
lib/build/shell_example_lexer.py \ |
1392 |
| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES) |
1393 |
@echo "Checking $< for hardcoded paths..." |
1394 |
@if grep -nEf autotools/wrong-hardcoded-paths $<; then \ |
1395 |
echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \ |
1396 |
exit 1; \ |
1397 |
fi |
1398 |
set -e ; \ |
1399 |
trap 'echo auto-removing $@; rm $@' EXIT; \ |
1400 |
PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\ |
1401 |
$(CHECK_MAN_REFERENCES) $@; \ |
1402 |
trap - EXIT |
1403 |
|
1404 |
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst |
1405 |
@test -n "$(PANDOC)" || \ |
1406 |
{ echo 'pandoc' not found during configure; exit 1; } |
1407 |
set -o pipefail -e; \ |
1408 |
trap 'echo auto-removing $@; rm $@' EXIT; \ |
1409 |
$(PANDOC) -s -f rst -t man $< man/footer.rst | \ |
1410 |
sed -e 's/\\@/@/g' > $@; \ |
1411 |
if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \ |
1412 |
$(CHECK_MAN_DASHES) $@; \ |
1413 |
trap - EXIT |
1414 |
|
1415 |
man/%.html.in: man/%.gen man/footer.rst |
1416 |
@test -n "$(PANDOC)" || \ |
1417 |
{ echo 'pandoc' not found during configure; exit 1; } |
1418 |
set -o pipefail ; \ |
1419 |
$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \ |
1420 |
sed -e 's/\\@/@/g' > $@ |
1421 |
|
1422 |
man/%: man/%.in $(REPLACE_VARS_SED) |
1423 |
sed -f $(REPLACE_VARS_SED) < $< > $@ |
1424 |
|
1425 |
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED) |
1426 |
sed -f $(REPLACE_VARS_SED) < $< > $@ |
1427 |
|
1428 |
vcs-version: |
1429 |
if test -d .git; then \ |
1430 |
git describe > $@; \ |
1431 |
elif test ! -f $@ ; then \ |
1432 |
echo "Cannot auto-generate $@ file"; exit 1; \ |
1433 |
fi |
1434 |
|
1435 |
.PHONY: clean-vcs-version |
1436 |
clean-vcs-version: |
1437 |
rm -f vcs-version |
1438 |
|
1439 |
.PHONY: regen-vcs-version |
1440 |
regen-vcs-version: |
1441 |
@set -e; \ |
1442 |
cd $(srcdir); \ |
1443 |
if test -d .git; then \ |
1444 |
T=`mktemp` ; trap 'rm -f $$T' EXIT; \ |
1445 |
git describe > $$T; \ |
1446 |
if ! cmp --quiet $$T vcs-version; then \ |
1447 |
mv $$T vcs-version; \ |
1448 |
fi; \ |
1449 |
fi |
1450 |
|
1451 |
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \ |
1452 |
vcs-version $(built_base_sources) |
1453 |
set -e; \ |
1454 |
VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \ |
1455 |
sed -e "s/%ver%/$$VCSVER/" < $< > $@ |
1456 |
|
1457 |
src/Ganeti/Constants.hs: src/Ganeti/Constants.hs.in \ |
1458 |
lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \ |
1459 |
lib/jstore.py $(RUN_IN_TEMPDIR) \ |
1460 |
$(CONVERT_CONSTANTS) $(built_base_sources) \ |
1461 |
| lib/_vcsversion.py |
1462 |
set -e; \ |
1463 |
{ cat $< ; \ |
1464 |
PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \ |
1465 |
} > $@ |
1466 |
|
1467 |
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories |
1468 |
hsc2hs -o $@ $< |
1469 |
|
1470 |
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \ |
1471 |
$(built_base_sources) |
1472 |
set -e; \ |
1473 |
{ cat $< ; \ |
1474 |
echo ; \ |
1475 |
for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \ |
1476 |
echo "import $$name ()" ; \ |
1477 |
done ; \ |
1478 |
} > $@ |
1479 |
|
1480 |
lib/_autoconf.py: Makefile | stamp-directories |
1481 |
set -e; \ |
1482 |
{ echo '# This file is automatically generated, do not edit!'; \ |
1483 |
echo '#'; \ |
1484 |
echo ''; \ |
1485 |
echo '"""Build-time configuration for Ganeti.'; \ |
1486 |
echo '';\ |
1487 |
echo 'This file is autogenerated by the build process.'; \ |
1488 |
echo 'For any changes you need to re-run ./configure (and'; \ |
1489 |
echo 'not edit by hand).'; \ |
1490 |
echo ''; \ |
1491 |
echo '"""'; \ |
1492 |
echo ''; \ |
1493 |
echo '# pylint: disable=C0301,C0324'; \ |
1494 |
echo '# because this is autogenerated, we do not want'; \ |
1495 |
echo '# style warnings' ; \ |
1496 |
echo ''; \ |
1497 |
echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \ |
1498 |
echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \ |
1499 |
echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \ |
1500 |
echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \ |
1501 |
echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \ |
1502 |
echo "VERSION_FULL = '$(VERSION_FULL)'"; \ |
1503 |
echo "LOCALSTATEDIR = '$(localstatedir)'"; \ |
1504 |
echo "SYSCONFDIR = '$(sysconfdir)'"; \ |
1505 |
echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \ |
1506 |
echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \ |
1507 |
echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \ |
1508 |
echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \ |
1509 |
echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \ |
1510 |
echo "ES_SEARCH_PATH = [$(ES_SEARCH_PATH)]"; \ |
1511 |
echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \ |
1512 |
echo "XEN_CONFIG_DIR = '$(XEN_CONFIG_DIR)'"; \ |
1513 |
echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \ |
1514 |
echo "XEN_INITRD = '$(XEN_INITRD)'"; \ |
1515 |
echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \ |
1516 |
echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \ |
1517 |
echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \ |
1518 |
echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \ |
1519 |
echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \ |
1520 |
echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \ |
1521 |
echo "KVM_PATH = '$(KVM_PATH)'"; \ |
1522 |
echo "IP_PATH = '$(IP_PATH)'"; \ |
1523 |
echo "SOCAT_PATH = '$(SOCAT)'"; \ |
1524 |
echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \ |
1525 |
echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \ |
1526 |
echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \ |
1527 |
echo "TOOLSDIR = '$(toolsdir)'"; \ |
1528 |
echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \ |
1529 |
echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \ |
1530 |
echo "PKGLIBDIR = '$(pkglibdir)'"; \ |
1531 |
echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \ |
1532 |
echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \ |
1533 |
echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \ |
1534 |
echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \ |
1535 |
echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \ |
1536 |
echo "MASTERD_USER = '$(MASTERD_USER)'"; \ |
1537 |
echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \ |
1538 |
echo "RAPI_USER = '$(RAPI_USER)'"; \ |
1539 |
echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \ |
1540 |
echo "CONFD_USER = '$(CONFD_USER)'"; \ |
1541 |
echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \ |
1542 |
echo "NODED_USER = '$(NODED_USER)'"; \ |
1543 |
echo "NODED_GROUP = '$(NODED_GROUP)'"; \ |
1544 |
echo "MOND_USER = '$(MOND_USER)'"; \ |
1545 |
echo "MOND_GROUP = '$(MOND_GROUP)'"; \ |
1546 |
echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \ |
1547 |
echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \ |
1548 |
echo "HTOOLS = True"; \ |
1549 |
echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \ |
1550 |
echo "XEN_CMD = '$(XEN_CMD)'"; \ |
1551 |
echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \ |
1552 |
echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \ |
1553 |
echo "ENABLE_MOND = $(ENABLE_MOND)"; \ |
1554 |
## Write dictionary with man page name as the key and the section number as the |
1555 |
## value |
1556 |
echo "MAN_PAGES = {"; \ |
1557 |
for i in $(notdir $(man_MANS)); do \ |
1558 |
echo "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/ "\1": \2,/g'; \ |
1559 |
done; \ |
1560 |
echo "}"; \ |
1561 |
} > $@ |
1562 |
|
1563 |
lib/_vcsversion.py: Makefile vcs-version | stamp-directories |
1564 |
set -e; \ |
1565 |
VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \ |
1566 |
{ echo '# This file is automatically generated, do not edit!'; \ |
1567 |
echo '#'; \ |
1568 |
echo ''; \ |
1569 |
echo '"""Build-time VCS version number for Ganeti.'; \ |
1570 |
echo '';\ |
1571 |
echo 'This file is autogenerated by the build process.'; \ |
1572 |
echo 'For any changes you need to re-run ./configure (and'; \ |
1573 |
echo 'not edit by hand).'; \ |
1574 |
echo ''; \ |
1575 |
echo '"""'; \ |
1576 |
echo ''; \ |
1577 |
echo '# pylint: disable=C0301,C0324'; \ |
1578 |
echo '# because this is autogenerated, we do not want'; \ |
1579 |
echo '# style warnings' ; \ |
1580 |
echo ''; \ |
1581 |
echo "VCS_VERSION = '$$VCSVER'"; \ |
1582 |
} > $@ |
1583 |
|
1584 |
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC) |
1585 |
PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@ |
1586 |
|
1587 |
$(SHELL_ENV_INIT): Makefile stamp-directories |
1588 |
set -e; \ |
1589 |
{ echo '# Allow overriding for tests'; \ |
1590 |
echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \ |
1591 |
echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \ |
1592 |
echo; \ |
1593 |
echo 'readonly PKGLIBDIR=$(pkglibdir)'; \ |
1594 |
echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \ |
1595 |
echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \ |
1596 |
echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \ |
1597 |
echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \ |
1598 |
} > $@ |
1599 |
|
1600 |
## Writes sed script to replace placeholders with build-time values. The |
1601 |
## additional quotes after the first @ sign are necessary to stop configure |
1602 |
## from replacing those values as well. |
1603 |
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories |
1604 |
set -e; \ |
1605 |
{ echo 's#@''PREFIX@#$(prefix)#g'; \ |
1606 |
echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \ |
1607 |
echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \ |
1608 |
echo 's#@''BINDIR@#$(bindir)#g'; \ |
1609 |
echo 's#@''SBINDIR@#$(sbindir)#g'; \ |
1610 |
echo 's#@''LIBDIR@#$(libdir)#g'; \ |
1611 |
echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \ |
1612 |
echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \ |
1613 |
echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \ |
1614 |
echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \ |
1615 |
echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \ |
1616 |
echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \ |
1617 |
echo 's#@''RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \ |
1618 |
echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \ |
1619 |
echo 's#@''PKGLIBDIR@#$(pkglibdir)#g'; \ |
1620 |
echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \ |
1621 |
echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \ |
1622 |
echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \ |
1623 |
echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \ |
1624 |
echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \ |
1625 |
echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \ |
1626 |
echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \ |
1627 |
echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \ |
1628 |
echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \ |
1629 |
echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \ |
1630 |
echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \ |
1631 |
echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \ |
1632 |
echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \ |
1633 |
echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \ |
1634 |
echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \ |
1635 |
echo; \ |
1636 |
echo '/^@SHELL_ENV_INIT@$$/ {'; \ |
1637 |
echo ' r $(SHELL_ENV_INIT)'; \ |
1638 |
echo ' d'; \ |
1639 |
echo '}'; \ |
1640 |
} > $@ |
1641 |
|
1642 |
# Using deferred evaluation |
1643 |
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@)) |
1644 |
daemons/ganeti-watcher: MODULE = ganeti.watcher |
1645 |
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@)) |
1646 |
tools/burnin: MODULE = ganeti.tools.burnin |
1647 |
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs |
1648 |
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup |
1649 |
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join |
1650 |
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup |
1651 |
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@) |
1652 |
|
1653 |
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories |
1654 |
test -n "$(MODULE)" || { echo Missing module; exit 1; } |
1655 |
set -e; \ |
1656 |
{ echo '#!/usr/bin/python'; \ |
1657 |
echo '# This file is automatically generated, do not edit!'; \ |
1658 |
echo "# Edit $(MODULE) instead."; \ |
1659 |
echo; \ |
1660 |
echo '"""Bootstrap script for L{$(MODULE)}"""'; \ |
1661 |
echo; \ |
1662 |
echo '# pylint: disable=C0103'; \ |
1663 |
echo '# C0103: Invalid name'; \ |
1664 |
echo; \ |
1665 |
echo 'import sys'; \ |
1666 |
echo 'import $(MODULE) as main'; \ |
1667 |
echo; \ |
1668 |
echo '# Temporarily alias commands until bash completion'; \ |
1669 |
echo '# generator is changed'; \ |
1670 |
echo 'if hasattr(main, "commands"):'; \ |
1671 |
echo ' commands = main.commands # pylint: disable=E1101'; \ |
1672 |
echo 'if hasattr(main, "aliases"):'; \ |
1673 |
echo ' aliases = main.aliases # pylint: disable=E1101'; \ |
1674 |
echo; \ |
1675 |
echo 'if __name__ == "__main__":'; \ |
1676 |
echo ' sys.exit(main.Main())'; \ |
1677 |
} > $@ |
1678 |
chmod u+x $@ |
1679 |
|
1680 |
$(HS_BUILT_TEST_HELPERS): Makefile |
1681 |
@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; } |
1682 |
set -e; \ |
1683 |
{ echo '#!/bin/sh'; \ |
1684 |
echo '# This file is automatically generated, do not edit!'; \ |
1685 |
echo "# Edit Makefile.am instead."; \ |
1686 |
echo; \ |
1687 |
echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \ |
1688 |
} > $@ |
1689 |
chmod u+x $@ |
1690 |
|
1691 |
stamp-directories: Makefile |
1692 |
$(MAKE) $(AM_MAKEFLAGS) ganeti |
1693 |
@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE) |
1694 |
touch $@ |
1695 |
|
1696 |
# We need to create symlinks because "make distcheck" will not install Python |
1697 |
# files when building. |
1698 |
stamp-srclinks: Makefile | stamp-directories |
1699 |
set -e; \ |
1700 |
for i in $(srclink_files); do \ |
1701 |
if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \ |
1702 |
$(LN_S) $(abs_top_srcdir)/$$i $$i; \ |
1703 |
fi; \ |
1704 |
done |
1705 |
touch $@ |
1706 |
|
1707 |
.PHONY: ganeti |
1708 |
ganeti: |
1709 |
cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; } |
1710 |
|
1711 |
.PHONY: check-dirs |
1712 |
check-dirs: $(GENERATED_FILES) |
1713 |
@set -e; \ |
1714 |
find . -type d \( -name . -o -name .git -prune -o -print \) | { \ |
1715 |
error=; \ |
1716 |
while read dir; do \ |
1717 |
case "$$dir" in \ |
1718 |
$(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \ |
1719 |
*) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \ |
1720 |
esac; \ |
1721 |
done; \ |
1722 |
for dir in $(DIRS); do \ |
1723 |
if ! test -d "$$dir"; then \ |
1724 |
echo "Directory $$dir listed in DIRS does not exist" >&2; \ |
1725 |
error=1; \ |
1726 |
fi \ |
1727 |
done; \ |
1728 |
test -z "$$error"; \ |
1729 |
} |
1730 |
|
1731 |
.PHONY: check-local |
1732 |
check-local: check-dirs $(GENERATED_FILES) |
1733 |
$(CHECK_PYTHON_CODE) $(check_python_code) |
1734 |
PYTHONPATH=. $(CHECK_HEADER) $(check_python_code) |
1735 |
$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS |
1736 |
RELEASE=$(PACKAGE_VERSION) $(CHECK_NEWS) < $(top_srcdir)/NEWS |
1737 |
PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules) |
1738 |
@expver=$(VERSION_MAJOR).$(VERSION_MINOR); \ |
1739 |
error= ; \ |
1740 |
if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \ |
1741 |
echo "Incorrect version in README, expected $$expver" >&2; \ |
1742 |
error=1; \ |
1743 |
fi; \ |
1744 |
for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \ |
1745 |
doc/security.rst; do \ |
1746 |
if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \ |
1747 |
"Documents Ganeti version $$expver"; then \ |
1748 |
echo "Incorrect version in $$file, expected $$expver" >&2; \ |
1749 |
error=1; \ |
1750 |
fi; \ |
1751 |
done; \ |
1752 |
if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \ |
1753 |
echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \ |
1754 |
error=1; \ |
1755 |
fi; \ |
1756 |
if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \ |
1757 |
".. Last updated for Ganeti $$expver"; then \ |
1758 |
echo "doc/design-draft.rst was not updated for version $$expver" >&2; \ |
1759 |
error=1; \ |
1760 |
fi; \ |
1761 |
for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \ |
1762 |
if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \ |
1763 |
echo "Longest line in $$file is longer than 80 characters" >&2; \ |
1764 |
error=1; \ |
1765 |
fi; \ |
1766 |
done; \ |
1767 |
test -z "$$error" |
1768 |
|
1769 |
.PHONY: hs-tests |
1770 |
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES) |
1771 |
@rm -f htest.tix |
1772 |
./test/hs/htest |
1773 |
|
1774 |
.PHONY: hs-shell |
1775 |
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS) |
1776 |
@rm -f hpc-htools.tix hpc-mon-collector.tix |
1777 |
HBINARY="./test/hs/hpc-htools" ./test/hs/offline-test.sh |
1778 |
|
1779 |
.PHONY: hs-check |
1780 |
hs-check: hs-tests hs-shell |
1781 |
|
1782 |
# E111: indentation is not a multiple of four |
1783 |
# E121: continuation line indentation is not a multiple of four |
1784 |
# (since our indent level is not 4) |
1785 |
# E125: continuation line does not distinguish itself from next logical line |
1786 |
# (since our indent level is not 4) |
1787 |
# E127: continuation line over-indented for visual indent |
1788 |
# (since our indent level is not 4) |
1789 |
# note: do NOT add E128 here; it's a valid style error in most cases! |
1790 |
# I've seen real errors, but also some cases were we indent wrongly |
1791 |
# due to line length; try to rework the cases where it is triggered, |
1792 |
# instead of silencing it |
1793 |
# E261: at least two spaces before inline comment |
1794 |
# E501: line too long (80 characters) |
1795 |
PEP8_IGNORE = E111,E121,E125,E127,E261,E501 |
1796 |
|
1797 |
# For excluding pep8 expects filenames only, not whole paths |
1798 |
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES)))) |
1799 |
|
1800 |
LINT_TARGETS = pylint pylint-qa |
1801 |
if HAS_PEP8 |
1802 |
LINT_TARGETS += pep8 |
1803 |
endif |
1804 |
if HAS_HLINT |
1805 |
LINT_TARGETS += hlint |
1806 |
endif |
1807 |
|
1808 |
.PHONY: lint |
1809 |
lint: $(LINT_TARGETS) |
1810 |
|
1811 |
.PHONY: pylint |
1812 |
pylint: $(GENERATED_FILES) |
1813 |
@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; } |
1814 |
$(PYLINT) $(LINT_OPTS) $(lint_python_code) |
1815 |
|
1816 |
.PHONY: pylint-qa |
1817 |
pylint-qa: $(GENERATED_FILES) |
1818 |
@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; } |
1819 |
cd $(top_srcdir)/qa && \ |
1820 |
PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \ |
1821 |
--rcfile ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts)) |
1822 |
|
1823 |
.PHONY: pep8 |
1824 |
pep8: $(GENERATED_FILES) |
1825 |
@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; } |
1826 |
$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \ |
1827 |
--repeat $(pep8_python_code) |
1828 |
|
1829 |
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated |
1830 |
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs |
1831 |
.PHONY: hlint |
1832 |
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs |
1833 |
@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; } |
1834 |
@rm -f doc/hs-lint.html |
1835 |
if tty -s; then C="-c"; else C=""; fi; \ |
1836 |
$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \ |
1837 |
--ignore "Use first" \ |
1838 |
--ignore "Use &&&" \ |
1839 |
--ignore "Use void" \ |
1840 |
--ignore "Reduce duplication" \ |
1841 |
--hint src/lint-hints \ |
1842 |
$(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS)) |
1843 |
@if [ ! -f doc/hs-lint.html ]; then \ |
1844 |
echo "All good" > doc/hs-lint.html; \ |
1845 |
fi |
1846 |
|
1847 |
# a dist hook rule for updating the vcs-version file; this is |
1848 |
# hardcoded due to where it needs to build the file... |
1849 |
dist-hook: |
1850 |
$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version |
1851 |
rm -f $(top_distdir)/vcs-version |
1852 |
cp -p $(srcdir)/vcs-version $(top_distdir) |
1853 |
|
1854 |
# a distcheck hook rule for catching revision control directories |
1855 |
distcheck-hook: |
1856 |
if find $(top_distdir) -name .svn -or -name .git | grep .; then \ |
1857 |
echo "Found revision control files in final archive." 1>&2; \ |
1858 |
exit 1; \ |
1859 |
fi |
1860 |
if find $(top_distdir) -name '*.py[co]' | grep .; then \ |
1861 |
echo "Found Python byte code in final archive." 1>&2; \ |
1862 |
exit 1; \ |
1863 |
fi |
1864 |
if find $(top_distdir) -name '*~' | grep .; then \ |
1865 |
echo "Found backup files in final archive." 1>&2; \ |
1866 |
exit 1; \ |
1867 |
fi |
1868 |
# Empty files or directories should not be distributed. They can cause |
1869 |
# unnecessary warnings for packagers. Directories used by automake during |
1870 |
# distcheck must be excluded. |
1871 |
if find $(top_distdir) -empty -and -not \( \ |
1872 |
-path $(top_distdir)/_build -or \ |
1873 |
-path $(top_distdir)/_inst \) | grep .; then \ |
1874 |
echo "Found empty files or directories in final archive." 1>&2; \ |
1875 |
exit 1; \ |
1876 |
fi |
1877 |
if test -e $(top_distdir)/doc/man-html; then \ |
1878 |
echo "Found documentation including man pages in final archive" >&2; \ |
1879 |
exit 1; \ |
1880 |
fi |
1881 |
|
1882 |
# Backwards compatible distcheck-release target |
1883 |
distcheck-release: distcheck |
1884 |
|
1885 |
distrebuildcheck: dist |
1886 |
set -e; \ |
1887 |
builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \ |
1888 |
trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \ |
1889 |
cd $$builddir; \ |
1890 |
tar xzf $(abs_srcdir)/$(distdir).tar.gz; \ |
1891 |
cd $(distdir); \ |
1892 |
./configure; \ |
1893 |
$(MAKE) maintainer-clean; \ |
1894 |
cp $(abs_srcdir)/vcs-version .; \ |
1895 |
./configure; \ |
1896 |
$(MAKE) $(AM_MAKEFLAGS) |
1897 |
|
1898 |
dist-release: dist |
1899 |
set -e; \ |
1900 |
for i in $(DIST_ARCHIVES); do \ |
1901 |
echo -n "Checking $$i ... "; \ |
1902 |
autotools/check-tar < $$i; \ |
1903 |
echo OK; \ |
1904 |
done |
1905 |
|
1906 |
install-exec-local: |
1907 |
@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \ |
1908 |
"$(DESTDIR)${localstatedir}/log/ganeti" \ |
1909 |
"$(DESTDIR)${localstatedir}/run/ganeti" |
1910 |
|
1911 |
.PHONY: apidoc |
1912 |
if WANT_HSAPIDOC |
1913 |
apidoc: py-apidoc hs-apidoc |
1914 |
else |
1915 |
apidoc: py-apidoc |
1916 |
endif |
1917 |
|
1918 |
.PHONY: py-apidoc |
1919 |
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES) |
1920 |
env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \ |
1921 |
$(RUN_IN_TEMPDIR) epydoc -v \ |
1922 |
--conf $(CURDIR)/epydoc.conf \ |
1923 |
--output $(CURDIR)/$(APIDOC_PY_DIR) |
1924 |
|
1925 |
.PHONY: hs-apidoc |
1926 |
hs-apidoc: $(APIDOC_HS_DIR)/index.html |
1927 |
|
1928 |
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile |
1929 |
@test -n "$(HSCOLOUR)" || \ |
1930 |
{ echo 'HsColour' not found during configure; exit 1; } |
1931 |
@test -n "$(HADDOCK)" || \ |
1932 |
{ echo 'haddock' not found during configure; exit 1; } |
1933 |
rm -rf $(APIDOC_HS_DIR)/* |
1934 |
for i in $(ALL_APIDOC_HS_DIRS); do \ |
1935 |
@mkdir_p@ $$i; \ |
1936 |
$(HSCOLOUR) -print-css > $$i/hscolour.css; \ |
1937 |
done |
1938 |
set -e ; \ |
1939 |
export LC_ALL=en_US.UTF-8; \ |
1940 |
OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \ |
1941 |
if [ "$(HS_PARALLEL3)" ]; \ |
1942 |
then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \ |
1943 |
fi; \ |
1944 |
if [ "$(HS_REGEX_PCRE)" ]; \ |
1945 |
then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \ |
1946 |
fi; \ |
1947 |
for file in $(HS_LIBTESTBUILT_SRCS); do \ |
1948 |
f_nosrc=$${file##src/}; \ |
1949 |
f_notst=$${f_nosrc##test/hs/}; \ |
1950 |
f_html=$${f_notst%%.hs}.html; \ |
1951 |
$(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \ |
1952 |
done ; \ |
1953 |
$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \ |
1954 |
-t ganeti -p src/haddock-prologue \ |
1955 |
--source-module="%{MODULE/.//}.html" \ |
1956 |
--source-entity="%{MODULE/.//}.html#%{NAME}" \ |
1957 |
$$OPTGHC \ |
1958 |
$(HS_LIBTESTBUILT_SRCS) |
1959 |
|
1960 |
.PHONY: TAGS |
1961 |
TAGS: $(GENERATED_FILES) |
1962 |
rm -f TAGS |
1963 |
$(GHC) -e ":etags" -v0 \ |
1964 |
$(filter-out -O -Werror,$(HFLAGS)) \ |
1965 |
$(HS_PARALLEL3) $(HS_REGEX_PCRE) \ |
1966 |
$(HS_LIBTEST_SRCS) |
1967 |
find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \ |
1968 |
-path './daemons/ganeti-*' -o -path './tools/*' -o \ |
1969 |
-path './qa/*.py' | \ |
1970 |
etags -l python -a - |
1971 |
|
1972 |
.PHONY: coverage |
1973 |
if WANT_HTOOLS |
1974 |
coverage: py-coverage hs-coverage |
1975 |
else |
1976 |
coverage: py-coverage |
1977 |
endif |
1978 |
|
1979 |
.PHONY: py-coverage |
1980 |
py-coverage: $(GENERATED_FILES) $(python_tests) |
1981 |
@test -n "$(PYCOVERAGE)" || \ |
1982 |
{ echo 'python-coverage' not found during configure; exit 1; } |
1983 |
set -e; \ |
1984 |
COVERAGE=$(PYCOVERAGE) \ |
1985 |
COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \ |
1986 |
TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \ |
1987 |
HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \ |
1988 |
$(PLAIN_TESTS_ENVIRONMENT) \ |
1989 |
$(abs_top_srcdir)/autotools/gen-py-coverage \ |
1990 |
$(python_tests) |
1991 |
|
1992 |
.PHONY: hs-coverage |
1993 |
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector |
1994 |
rm -f *.tix |
1995 |
$(MAKE) $(AM_MAKEFLAGS) hs-check |
1996 |
@mkdir_p@ $(COVERAGE_HS_DIR) |
1997 |
hpc sum --union $(HPCEXCL) \ |
1998 |
htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix |
1999 |
hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix |
2000 |
hpc report coverage-hs.tix |
2001 |
$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html |
2002 |
|
2003 |
# Special "kind-of-QA" target for htools, needs special setup (all |
2004 |
# tools compiled with -fhpc) |
2005 |
.PHONY: live-test |
2006 |
live-test: all |
2007 |
set -e ; \ |
2008 |
cd src; \ |
2009 |
rm -f .hpc; $(LN_S) ../.hpc .hpc; \ |
2010 |
rm -f *.tix *.mix; \ |
2011 |
./live-test.sh; \ |
2012 |
hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \ |
2013 |
--output=live-test.tix ; \ |
2014 |
@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \ |
2015 |
hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \ |
2016 |
--srcdir=.. $(HPCEXCL) ; \ |
2017 |
hpc report --srcdir=.. live-test $(HPCEXCL) |
2018 |
|
2019 |
commit-check: distcheck lint apidoc |
2020 |
|
2021 |
.PHONY: gitignore-check |
2022 |
gitignore-check: |
2023 |
@if [ -n "`git status --short`" ]; then \ |
2024 |
echo "Git status is not clean!" 1>&2 ; \ |
2025 |
git status --short; \ |
2026 |
exit 1; \ |
2027 |
fi |
2028 |
|
2029 |
# target to rebuild all man pages (both groff and html output) |
2030 |
.PHONY: man |
2031 |
man: $(man_MANS) $(manhtml) |
2032 |
|
2033 |
# Target that builds all binaries (including those that are not |
2034 |
# rebuilt except when running the tests) |
2035 |
.PHONY: really-all |
2036 |
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS) |
2037 |
|
2038 |
# we don't need the ancient implicit rules: |
2039 |
%: %,v |
2040 |
%: RCS/%,v |
2041 |
%: RCS/% |
2042 |
%: s.% |
2043 |
%: SCCS/s.% |
2044 |
|
2045 |
-include ./Makefile.local |
2046 |
|
2047 |
# vim: set noet : |