Statistics
| Branch: | Tag: | Revision:

root / Makefile.am @ 2ef21e6e

History | View | Annotate | Download (58.1 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
hypervisordir = $(pkgpythondir)/hypervisor
44
httpdir = $(pkgpythondir)/http
45
masterddir = $(pkgpythondir)/masterd
46
confddir = $(pkgpythondir)/confd
47
rapidir = $(pkgpythondir)/rapi
48
serverdir = $(pkgpythondir)/server
49
watcherdir = $(pkgpythondir)/watcher
50
impexpddir = $(pkgpythondir)/impexpd
51
utilsdir = $(pkgpythondir)/utils
52
toolsdir = $(pkglibdir)/tools
53
iallocatorsdir = $(pkglibdir)/iallocators
54
pytoolsdir = $(pkgpythondir)/tools
55
docdir = $(datadir)/doc/$(PACKAGE)
56
myexeclibdir = $(pkglibdir)
57

    
58
# Delete output file if an error occurred while building it
59
.DELETE_ON_ERROR:
60

    
61
HS_DIRS = \
62
	src \
63
	src/Ganeti \
64
	src/Ganeti/Block \
65
	src/Ganeti/Block/Drbd \
66
	src/Ganeti/Confd \
67
	src/Ganeti/Curl \
68
	src/Ganeti/DataCollectors \
69
	src/Ganeti/HTools \
70
	src/Ganeti/HTools/Backend \
71
	src/Ganeti/HTools/Program \
72
	src/Ganeti/Hypervisor \
73
	src/Ganeti/Hypervisor/Xen \
74
	src/Ganeti/Monitoring \
75
	src/Ganeti/Query \
76
	test/hs \
77
	test/hs/Test \
78
	test/hs/Test/Ganeti \
79
	test/hs/Test/Ganeti/Block \
80
	test/hs/Test/Ganeti/Block/Drbd \
81
	test/hs/Test/Ganeti/Confd \
82
	test/hs/Test/Ganeti/HTools \
83
	test/hs/Test/Ganeti/HTools/Backend \
84
	test/hs/Test/Ganeti/Hypervisor \
85
	test/hs/Test/Ganeti/Hypervisor/Xen \
86
	test/hs/Test/Ganeti/Query
87

    
88
# Haskell directories without the roots (src, test/hs)
89
HS_DIRS_NOROOT = $(filter-out src,$(filter-out test/hs,$(HS_DIRS)))
90

    
91
DIRS = \
92
	$(HS_DIRS) \
93
	autotools \
94
	daemons \
95
	devel \
96
	devel/data \
97
	doc \
98
	doc/css \
99
	doc/examples \
100
	doc/examples/gnt-debug \
101
	doc/examples/hooks \
102
	test/data/htools \
103
	test/data/htools/rapi \
104
	test/hs/shelltests \
105
	lib \
106
	lib/build \
107
	lib/client \
108
	lib/confd \
109
	lib/http \
110
	lib/hypervisor \
111
	lib/impexpd \
112
	lib/masterd \
113
	lib/rapi \
114
	lib/server \
115
	lib/tools \
116
	lib/utils \
117
	lib/watcher \
118
	man \
119
	qa \
120
	test \
121
	test/data \
122
	test/data/bdev-rbd \
123
	test/data/ovfdata \
124
	test/data/ovfdata/other \
125
	test/py \
126
	tools
127

    
128
ALL_APIDOC_HS_DIRS = \
129
	$(APIDOC_HS_DIR) \
130
	$(patsubst %,$(APIDOC_HS_DIR)/%,$(call strip_hsroot,$(HS_DIRS_NOROOT)))
131

    
132
BUILDTIME_DIR_AUTOCREATE = \
133
	scripts \
134
	$(APIDOC_DIR) \
135
	$(ALL_APIDOC_HS_DIRS) \
136
	$(APIDOC_PY_DIR) \
137
	$(COVERAGE_DIR) \
138
	$(COVERAGE_HS_DIR) \
139
	$(COVERAGE_PY_DIR) \
140
	.hpc
141

    
142
BUILDTIME_DIRS = \
143
	$(BUILDTIME_DIR_AUTOCREATE) \
144
	doc/html \
145
	doc/man-html
146

    
147
DIRCHECK_EXCLUDE = \
148
	$(BUILDTIME_DIRS) \
149
	ganeti-[0-9]*.[0-9]*.[0-9]* \
150
	doc/html/_* \
151
	doc/man-html/_* \
152
	autom4te.cache
153

    
154
# some helper vars
155
COVERAGE_DIR = doc/coverage
156
COVERAGE_PY_DIR = $(COVERAGE_DIR)/py
157
COVERAGE_HS_DIR = $(COVERAGE_DIR)/hs
158
APIDOC_DIR = doc/api
159
APIDOC_PY_DIR = $(APIDOC_DIR)/py
160
APIDOC_HS_DIR = $(APIDOC_DIR)/hs
161

    
162
MAINTAINERCLEANFILES = \
163
	$(maninput) \
164
	doc/install-quick.rst \
165
	doc/news.rst \
166
	doc/upgrade.rst \
167
	vcs-version
168

    
169
maintainer-clean-local:
170
	rm -rf $(BUILDTIME_DIRS)
171

    
172
CLEANFILES = \
173
	$(addsuffix /*.py[co],$(DIRS)) \
174
	$(addsuffix /*.hi,$(HS_DIRS)) \
175
	$(addsuffix /*.o,$(HS_DIRS)) \
176
	$(PYTHON_BOOTSTRAP) \
177
	epydoc.conf \
178
	$(REPLACE_VARS_SED) \
179
	$(SHELL_ENV_INIT) \
180
	daemons/daemon-util \
181
	daemons/ganeti-cleaner \
182
	devel/squeeze-amd64.tar.gz \
183
	devel/squeeze-amd64.conf \
184
	$(mandocrst) \
185
	doc/manpages-enabled.rst \
186
	$(BUILT_EXAMPLES) \
187
	doc/examples/bash_completion \
188
	doc/examples/bash_completion-debug \
189
	lib/_generated_rpc.py \
190
	$(man_MANS) \
191
	$(manhtml) \
192
	tools/kvm-ifup \
193
	tools/users-setup \
194
	tools/vcluster-setup \
195
	stamp-directories \
196
	stamp-srclinks \
197
	$(nodist_pkgpython_PYTHON) \
198
	$(HS_ALL_PROGS) $(HS_BUILT_SRCS) \
199
	$(HS_BUILT_TEST_HELPERS) \
200
	src/ganeti-confd \
201
	src/ganeti-mond \
202
	.hpc/*.mix src/*.tix test/hs/*.tix \
203
	doc/hs-lint.html
204

    
205
GENERATED_FILES = \
206
	$(built_base_sources) \
207
	$(BUILT_PYTHON_SOURCES) \
208
	$(PYTHON_BOOTSTRAP)
209

    
210
HS_GENERATED_FILES =
211
if WANT_HTOOLS
212
HS_GENERATED_FILES += $(HS_PROGS)
213
if ENABLE_CONFD
214
HS_GENERATED_FILES += src/hconfd src/ganeti-confd
215
endif
216

    
217
if ENABLE_MOND
218
HS_GENERATED_FILES += src/ganeti-mond
219
endif
220
endif
221

    
222
built_base_sources = \
223
	stamp-directories \
224
	stamp-srclinks
225

    
226
built_python_base_sources = \
227
	lib/_autoconf.py \
228
	lib/_vcsversion.py
229

    
230
BUILT_PYTHON_SOURCES = \
231
	$(built_python_base_sources) \
232
	lib/_generated_rpc.py
233

    
234
# Generating the RPC wrappers depends on many things, so make sure
235
# it's built at the end of the built sources
236
lib/_generated_rpc.py: | $(built_base_sources) $(built_python_base_sources)
237

    
238
# these are all built from the underlying %.in sources
239
BUILT_EXAMPLES = \
240
	doc/examples/ganeti-kvm-poweroff.initd \
241
	doc/examples/ganeti.cron \
242
	doc/examples/ganeti.initd \
243
	doc/examples/ganeti-master-role.ocf \
244
	doc/examples/ganeti-node-role.ocf \
245
	doc/examples/gnt-config-backup \
246
	doc/examples/hooks/ipsec
247

    
248
nodist_pkgpython_PYTHON = \
249
	$(BUILT_PYTHON_SOURCES)
250

    
251
noinst_PYTHON = \
252
	lib/build/__init__.py \
253
	lib/build/shell_example_lexer.py \
254
	lib/build/sphinx_ext.py
255

    
256
pkgpython_PYTHON = \
257
	lib/__init__.py \
258
	lib/asyncnotifier.py \
259
	lib/backend.py \
260
	lib/bdev.py \
261
	lib/bootstrap.py \
262
	lib/cli.py \
263
	lib/cmdlib.py \
264
	lib/compat.py \
265
	lib/config.py \
266
	lib/constants.py \
267
	lib/daemon.py \
268
	lib/errors.py \
269
	lib/ht.py \
270
	lib/jqueue.py \
271
	lib/jstore.py \
272
	lib/locking.py \
273
	lib/luxi.py \
274
	lib/mcpu.py \
275
	lib/netutils.py \
276
	lib/objects.py \
277
	lib/opcodes.py \
278
	lib/outils.py \
279
	lib/ovf.py \
280
	lib/pathutils.py \
281
	lib/qlang.py \
282
	lib/query.py \
283
	lib/rpc.py \
284
	lib/rpc_defs.py \
285
	lib/runtime.py \
286
	lib/serializer.py \
287
	lib/ssconf.py \
288
	lib/ssh.py \
289
	lib/storage.py \
290
	lib/uidpool.py \
291
	lib/vcluster.py \
292
	lib/network.py \
293
	lib/workerpool.py
294

    
295
client_PYTHON = \
296
	lib/client/__init__.py \
297
	lib/client/gnt_backup.py \
298
	lib/client/gnt_cluster.py \
299
	lib/client/gnt_debug.py \
300
	lib/client/gnt_group.py \
301
	lib/client/gnt_instance.py \
302
	lib/client/gnt_job.py \
303
	lib/client/gnt_node.py \
304
	lib/client/gnt_network.py \
305
	lib/client/gnt_os.py \
306
	lib/client/gnt_storage.py
307

    
308
hypervisor_PYTHON = \
309
	lib/hypervisor/__init__.py \
310
	lib/hypervisor/hv_base.py \
311
	lib/hypervisor/hv_chroot.py \
312
	lib/hypervisor/hv_fake.py \
313
	lib/hypervisor/hv_kvm.py \
314
	lib/hypervisor/hv_lxc.py \
315
	lib/hypervisor/hv_xen.py
316

    
317
rapi_PYTHON = \
318
	lib/rapi/__init__.py \
319
	lib/rapi/baserlib.py \
320
	lib/rapi/client.py \
321
	lib/rapi/client_utils.py \
322
	lib/rapi/connector.py \
323
	lib/rapi/rlib2.py \
324
	lib/rapi/testutils.py
325

    
326
http_PYTHON = \
327
	lib/http/__init__.py \
328
	lib/http/auth.py \
329
	lib/http/client.py \
330
	lib/http/server.py
331

    
332
confd_PYTHON = \
333
	lib/confd/__init__.py \
334
	lib/confd/client.py
335

    
336
masterd_PYTHON = \
337
	lib/masterd/__init__.py \
338
	lib/masterd/iallocator.py \
339
	lib/masterd/instance.py
340

    
341
impexpd_PYTHON = \
342
	lib/impexpd/__init__.py
343

    
344
watcher_PYTHON = \
345
	lib/watcher/__init__.py \
346
	lib/watcher/nodemaint.py \
347
	lib/watcher/state.py
348

    
349
server_PYTHON = \
350
	lib/server/__init__.py \
351
	lib/server/masterd.py \
352
	lib/server/noded.py \
353
	lib/server/rapi.py
354

    
355
pytools_PYTHON = \
356
	lib/tools/__init__.py \
357
	lib/tools/burnin.py \
358
	lib/tools/ensure_dirs.py \
359
	lib/tools/node_cleanup.py \
360
	lib/tools/node_daemon_setup.py \
361
	lib/tools/prepare_node_join.py
362

    
363
utils_PYTHON = \
364
	lib/utils/__init__.py \
365
	lib/utils/algo.py \
366
	lib/utils/filelock.py \
367
	lib/utils/hash.py \
368
	lib/utils/io.py \
369
	lib/utils/log.py \
370
	lib/utils/lvm.py \
371
	lib/utils/mlock.py \
372
	lib/utils/nodesetup.py \
373
	lib/utils/process.py \
374
	lib/utils/retry.py \
375
	lib/utils/text.py \
376
	lib/utils/wrapper.py \
377
	lib/utils/x509.py
378

    
379
docinput = \
380
	doc/conf.py \
381
	doc/css/style.css \
382
	doc/admin.rst \
383
	doc/cluster-merge.rst \
384
	doc/design-2.0.rst \
385
	doc/design-2.1.rst \
386
	doc/design-2.2.rst \
387
	doc/design-2.3.rst \
388
	doc/design-2.4.rst \
389
	doc/design-2.5.rst \
390
	doc/design-2.6.rst \
391
	doc/design-2.7.rst \
392
	doc/design-autorepair.rst \
393
	doc/design-bulk-create.rst \
394
	doc/design-chained-jobs.rst \
395
	doc/design-cpu-pinning.rst \
396
	doc/design-draft.rst \
397
	doc/design-htools-2.3.rst \
398
	doc/design-http-server.rst \
399
	doc/design-impexp2.rst \
400
	doc/design-lu-generated-jobs.rst \
401
	doc/design-linuxha.rst \
402
	doc/design-multi-reloc.rst \
403
	doc/design-network.rst \
404
	doc/design-node-add.rst \
405
	doc/design-oob.rst \
406
	doc/design-ovf-support.rst \
407
	doc/design-opportunistic-locking.rst \
408
	doc/design-partitioned.rst \
409
	doc/design-query-splitting.rst \
410
	doc/design-query2.rst \
411
	doc/design-reason-trail.rst \
412
	doc/design-resource-model.rst \
413
	doc/design-restricted-commands.rst \
414
	doc/design-shared-storage.rst \
415
	doc/design-monitoring-agent.rst \
416
	doc/design-virtual-clusters.rst \
417
	doc/design-x509-ca.rst \
418
	doc/design-hroller.rst \
419
	doc/design-storagespace.rst \
420
	doc/devnotes.rst \
421
	doc/glossary.rst \
422
	doc/hooks.rst \
423
	doc/iallocator.rst \
424
	doc/index.rst \
425
	doc/install-quick.rst \
426
	doc/install.rst \
427
	doc/locking.rst \
428
	doc/manpages-disabled.rst \
429
	doc/move-instance.rst \
430
	doc/news.rst \
431
	doc/ovfconverter.rst \
432
	doc/rapi.rst \
433
	doc/security.rst \
434
	doc/upgrade.rst \
435
	doc/virtual-cluster.rst \
436
	doc/walkthrough.rst
437

    
438
# Generates file names such as "doc/man-gnt-instance.rst"
439
mandocrst = $(addprefix doc/man-,$(notdir $(manrst)))
440

    
441
# Haskell programs to be installed in $PREFIX/bin
442
HS_BIN_PROGS=src/htools
443

    
444
# Haskell programs to be installed in the MYEXECLIB dir
445
HS_MYEXECLIB_PROGS=src/mon-collector
446

    
447
# Haskell programs to be compiled by "make really-all"
448
HS_COMPILE_PROGS= \
449
	src/ganeti-mond \
450
	src/hconfd \
451
	src/rpc-test
452

    
453
# All Haskell non-test programs to be compiled but not automatically installed
454
HS_PROGS = $(HS_BIN_PROGS) $(HS_MYEXECLIB_PROGS)
455

    
456
HS_BIN_ROLES = harep hbal hscan hspace hinfo hcheck hroller
457
HS_HTOOLS_PROGS = $(HS_BIN_ROLES) hail
458

    
459
HS_ALL_PROGS = \
460
	$(HS_PROGS) \
461
	test/hs/hpc-htools \
462
	test/hs/hpc-mon-collector \
463
	test/hs/htest \
464
	$(HS_COMPILE_PROGS)
465

    
466
HS_PROG_SRCS = $(patsubst %,%.hs,$(HS_ALL_PROGS))
467
HS_BUILT_TEST_HELPERS = $(HS_BIN_ROLES:%=test/hs/%) test/hs/hail
468

    
469
HFLAGS = \
470
	-O -Wall -Werror -isrc \
471
	-fwarn-monomorphism-restriction \
472
	-fwarn-tabs \
473
	$(GHC_BYVERSION_FLAGS)
474

    
475
# extra flags that can be overriden on the command line (e.g. -Wwarn, etc.)
476
HEXTRA =
477
# internal extra flags (used for test/hs/htest mainly)
478
HEXTRA_INT =
479
# exclude options for coverage reports
480
HPCEXCL = --exclude Main \
481
	--exclude Ganeti.Constants \
482
	--exclude Ganeti.HTools.QC \
483
	--exclude Ganeti.THH \
484
	--exclude Ganeti.Version \
485
	--exclude Test.Ganeti.Attoparsec \
486
	--exclude Test.Ganeti.TestCommon \
487
	--exclude Test.Ganeti.TestHTools \
488
	--exclude Test.Ganeti.TestHelper \
489
	--exclude Test.Ganeti.TestImports \
490
	$(patsubst src.%,--exclude Test.%,$(subst /,.,$(patsubst %.hs,%, $(HS_LIB_SRCS))))
491

    
492
HS_LIB_SRCS = \
493
	src/Ganeti/Block/Drbd/Types.hs \
494
	src/Ganeti/Block/Drbd/Parser.hs \
495
	src/Ganeti/BasicTypes.hs \
496
	src/Ganeti/Common.hs \
497
	src/Ganeti/Compat.hs \
498
	src/Ganeti/Confd/Client.hs \
499
	src/Ganeti/Confd/Server.hs \
500
	src/Ganeti/Confd/Types.hs \
501
	src/Ganeti/Confd/Utils.hs \
502
	src/Ganeti/Config.hs \
503
	src/Ganeti/Curl/Multi.hs \
504
	src/Ganeti/Daemon.hs \
505
	src/Ganeti/DataCollectors/CLI.hs \
506
	src/Ganeti/DataCollectors/Drbd.hs \
507
	src/Ganeti/DataCollectors/Program.hs \
508
	src/Ganeti/DataCollectors/Types.hs \
509
	src/Ganeti/Errors.hs \
510
	src/Ganeti/HTools/Backend/IAlloc.hs \
511
	src/Ganeti/HTools/Backend/Luxi.hs \
512
	src/Ganeti/HTools/Backend/Rapi.hs \
513
	src/Ganeti/HTools/Backend/Simu.hs \
514
	src/Ganeti/HTools/Backend/Text.hs \
515
	src/Ganeti/HTools/CLI.hs \
516
	src/Ganeti/HTools/Cluster.hs \
517
	src/Ganeti/HTools/Container.hs \
518
	src/Ganeti/HTools/ExtLoader.hs \
519
	src/Ganeti/HTools/Graph.hs \
520
	src/Ganeti/HTools/Group.hs \
521
	src/Ganeti/HTools/Instance.hs \
522
	src/Ganeti/HTools/Loader.hs \
523
	src/Ganeti/HTools/Node.hs \
524
	src/Ganeti/HTools/PeerMap.hs \
525
	src/Ganeti/HTools/Program/Hail.hs \
526
	src/Ganeti/HTools/Program/Harep.hs \
527
	src/Ganeti/HTools/Program/Hbal.hs \
528
	src/Ganeti/HTools/Program/Hcheck.hs \
529
	src/Ganeti/HTools/Program/Hinfo.hs \
530
	src/Ganeti/HTools/Program/Hscan.hs \
531
	src/Ganeti/HTools/Program/Hspace.hs \
532
	src/Ganeti/HTools/Program/Hroller.hs \
533
	src/Ganeti/HTools/Program/Main.hs \
534
	src/Ganeti/HTools/Types.hs \
535
	src/Ganeti/Hypervisor/Xen/XmParser.hs \
536
	src/Ganeti/Hypervisor/Xen/Types.hs \
537
	src/Ganeti/Hash.hs \
538
	src/Ganeti/JQueue.hs \
539
	src/Ganeti/JSON.hs \
540
	src/Ganeti/Jobs.hs \
541
	src/Ganeti/Logging.hs \
542
	src/Ganeti/Luxi.hs \
543
	src/Ganeti/Monitoring/Server.hs \
544
	src/Ganeti/Network.hs \
545
	src/Ganeti/Objects.hs \
546
	src/Ganeti/OpCodes.hs \
547
	src/Ganeti/OpParams.hs \
548
	src/Ganeti/Path.hs \
549
	src/Ganeti/Query/Common.hs \
550
	src/Ganeti/Query/Export.hs \
551
	src/Ganeti/Query/Filter.hs \
552
	src/Ganeti/Query/Group.hs \
553
	src/Ganeti/Query/Job.hs \
554
	src/Ganeti/Query/Language.hs \
555
	src/Ganeti/Query/Network.hs \
556
	src/Ganeti/Query/Node.hs \
557
	src/Ganeti/Query/Query.hs \
558
	src/Ganeti/Query/Server.hs \
559
	src/Ganeti/Query/Types.hs \
560
	src/Ganeti/Rpc.hs \
561
	src/Ganeti/Runtime.hs \
562
	src/Ganeti/Ssconf.hs \
563
	src/Ganeti/THH.hs \
564
	src/Ganeti/Types.hs \
565
	src/Ganeti/Utils.hs
566

    
567
HS_TEST_SRCS = \
568
	test/hs/Test/Ganeti/Attoparsec.hs \
569
	test/hs/Test/Ganeti/BasicTypes.hs \
570
	test/hs/Test/Ganeti/Block/Drbd/Parser.hs \
571
	test/hs/Test/Ganeti/Block/Drbd/Types.hs \
572
	test/hs/Test/Ganeti/Common.hs \
573
	test/hs/Test/Ganeti/Confd/Types.hs \
574
	test/hs/Test/Ganeti/Confd/Utils.hs \
575
	test/hs/Test/Ganeti/Daemon.hs \
576
	test/hs/Test/Ganeti/Errors.hs \
577
	test/hs/Test/Ganeti/HTools/Backend/Simu.hs \
578
	test/hs/Test/Ganeti/HTools/Backend/Text.hs \
579
	test/hs/Test/Ganeti/HTools/CLI.hs \
580
	test/hs/Test/Ganeti/HTools/Cluster.hs \
581
	test/hs/Test/Ganeti/HTools/Container.hs \
582
	test/hs/Test/Ganeti/HTools/Graph.hs \
583
	test/hs/Test/Ganeti/HTools/Instance.hs \
584
	test/hs/Test/Ganeti/HTools/Loader.hs \
585
	test/hs/Test/Ganeti/HTools/Node.hs \
586
	test/hs/Test/Ganeti/HTools/PeerMap.hs \
587
	test/hs/Test/Ganeti/HTools/Types.hs \
588
	test/hs/Test/Ganeti/Hypervisor/Xen/XmParser.hs \
589
	test/hs/Test/Ganeti/JSON.hs \
590
	test/hs/Test/Ganeti/Jobs.hs \
591
	test/hs/Test/Ganeti/JQueue.hs \
592
	test/hs/Test/Ganeti/Luxi.hs \
593
	test/hs/Test/Ganeti/Network.hs \
594
	test/hs/Test/Ganeti/Objects.hs \
595
	test/hs/Test/Ganeti/OpCodes.hs \
596
	test/hs/Test/Ganeti/Query/Filter.hs \
597
	test/hs/Test/Ganeti/Query/Language.hs \
598
	test/hs/Test/Ganeti/Query/Network.hs \
599
	test/hs/Test/Ganeti/Query/Query.hs \
600
	test/hs/Test/Ganeti/Rpc.hs \
601
	test/hs/Test/Ganeti/Runtime.hs \
602
	test/hs/Test/Ganeti/Ssconf.hs \
603
	test/hs/Test/Ganeti/THH.hs \
604
	test/hs/Test/Ganeti/TestCommon.hs \
605
	test/hs/Test/Ganeti/TestHTools.hs \
606
	test/hs/Test/Ganeti/TestHelper.hs \
607
	test/hs/Test/Ganeti/Types.hs \
608
	test/hs/Test/Ganeti/Utils.hs
609

    
610
HS_LIBTEST_SRCS = $(HS_LIB_SRCS) $(HS_TEST_SRCS)
611

    
612
HS_BUILT_SRCS = \
613
	test/hs/Test/Ganeti/TestImports.hs \
614
	src/Ganeti/Constants.hs \
615
	src/Ganeti/Curl/Internal.hs \
616
	src/Ganeti/Version.hs
617
HS_BUILT_SRCS_IN = \
618
	$(patsubst %,%.in,$(filter-out src/Ganeti/Curl/Internal.hs,$(HS_BUILT_SRCS))) \
619
	src/Ganeti/Curl/Internal.hsc
620

    
621
HS_LIBTESTBUILT_SRCS = $(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS)
622

    
623
$(RUN_IN_TEMPDIR): | stamp-directories
624

    
625
doc/html/index.html: ENABLE_MANPAGES =
626
doc/man-html/index.html: ENABLE_MANPAGES = 1
627
doc/man-html/index.html: doc/manpages-enabled.rst $(mandocrst)
628

    
629
# Note: we use here an order-only prerequisite, as the contents of
630
# _autoconf.py are not actually influencing the html build output: it
631
# has to exist in order for the sphinx module to be loaded
632
# successfully, but we certainly don't want the docs to be rebuilt if
633
# it changes
634
doc/html/index.html doc/man-html/index.html: $(docinput) doc/conf.py \
635
	configure.ac $(RUN_IN_TEMPDIR) lib/build/sphinx_ext.py \
636
	lib/build/shell_example_lexer.py lib/opcodes.py lib/ht.py \
637
	doc/css/style.css lib/rapi/connector.py lib/rapi/rlib2.py \
638
	| $(BUILT_PYTHON_SOURCES)
639
	@test -n "$(SPHINX)" || \
640
	    { echo 'sphinx-build' not found during configure; exit 1; }
641
if !MANPAGES_IN_DOC
642
	if test -n '$(ENABLE_MANPAGES)'; then \
643
	  echo 'Man pages in documentation were disabled at configure time' >&2; \
644
	  exit 1; \
645
	fi
646
endif
647
## Sphinx provides little control over what content should be included. Some
648
## mechanisms exist, but they all have drawbacks or actual issues. Since we
649
## build two different versions of the documentation--once without man pages and
650
## once, if enabled, with them--some control is necessary. xmpp-wrapper provides
651
## us with this, but requires running in a temporary directory. It moves the
652
## correct files into place depending on environment variables.
653
	dir=$(dir $@) && \
654
	@mkdir_p@ $$dir && \
655
	PYTHONPATH=. ENABLE_MANPAGES=$(ENABLE_MANPAGES) COPY_DOC=1 \
656
	$(RUN_IN_TEMPDIR) autotools/sphinx-wrapper $(SPHINX) -q -W -b html \
657
	    -d . \
658
	    -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
659
	    -D release="$(PACKAGE_VERSION)" \
660
	    -D graphviz_dot="$(DOT)" \
661
	    -D enable_manpages="$(ENABLE_MANPAGES)" \
662
	    doc $(CURDIR)/$$dir && \
663
	rm -f $$dir/.buildinfo $$dir/objects.inv
664
	touch $@
665

    
666
doc/html: doc/html/index.html
667

    
668
doc/man-html: doc/man-html/index.html
669

    
670
doc/install-quick.rst: INSTALL
671
doc/news.rst: NEWS
672
doc/upgrade.rst: UPGRADE
673

    
674
doc/install-quick.rst doc/news.rst doc/upgrade.rst:
675
	set -e; \
676
	{ echo '.. This file is automatically updated at build time from $<.'; \
677
	  echo '.. Do not edit.'; \
678
	  echo; \
679
	  cat $<; \
680
	} > $@
681

    
682
doc/manpages-enabled.rst: Makefile | $(built_base_sources)
683
	{ echo '.. This file is automatically generated, do not edit!'; \
684
	  echo ''; \
685
	  echo 'Man pages'; \
686
	  echo '========='; \
687
	  echo; \
688
	  echo '.. toctree::'; \
689
	  echo '   :maxdepth: 1'; \
690
	  echo; \
691
	  for i in $(notdir $(mandocrst)); do \
692
	    echo "   $$i"; \
693
	  done | LC_ALL=C sort; \
694
	} > $@
695

    
696
doc/man-%.rst: man/%.gen Makefile $(REPLACE_VARS_SED) | $(built_base_sources)
697
if MANPAGES_IN_DOC
698
	{ echo '.. This file is automatically updated at build time from $<.'; \
699
	  echo '.. Do not edit.'; \
700
	  echo; \
701
	  echo "$*"; \
702
	  echo '=========================================='; \
703
	  tail -n +3 $< | sed -f $(REPLACE_VARS_SED); \
704
	} > $@
705
else
706
	echo 'Man pages in documentation were disabled at configure time' >&2; \
707
	exit 1;
708
endif
709

    
710
# Things to build but not to install (add it to EXTRA_DIST if it should be
711
# distributed)
712
noinst_DATA = \
713
	doc/html \
714
	$(BUILT_EXAMPLES) \
715
	doc/examples/bash_completion \
716
	doc/examples/bash_completion-debug \
717
	$(manhtml)
718

    
719
if MANPAGES_IN_DOC
720
noinst_DATA += doc/man-html
721
endif
722

    
723
gnt_scripts = \
724
	scripts/gnt-backup \
725
	scripts/gnt-cluster \
726
	scripts/gnt-debug \
727
	scripts/gnt-group \
728
	scripts/gnt-instance \
729
	scripts/gnt-job \
730
	scripts/gnt-network \
731
	scripts/gnt-node \
732
	scripts/gnt-os \
733
	scripts/gnt-storage
734

    
735
PYTHON_BOOTSTRAP_SBIN = \
736
	daemons/ganeti-masterd \
737
	daemons/ganeti-noded \
738
	daemons/ganeti-rapi \
739
	daemons/ganeti-watcher \
740
	$(gnt_scripts)
741

    
742
PYTHON_BOOTSTRAP = \
743
	$(PYTHON_BOOTSTRAP_SBIN) \
744
	tools/burnin \
745
	tools/ensure-dirs \
746
	tools/node-cleanup \
747
	tools/node-daemon-setup \
748
	tools/prepare-node-join
749

    
750
qa_scripts = \
751
	qa/__init__.py \
752
	qa/ganeti-qa.py \
753
	qa/qa_cluster.py \
754
	qa/qa_config.py \
755
	qa/qa_daemon.py \
756
	qa/qa_env.py \
757
	qa/qa_error.py \
758
	qa/qa_group.py \
759
	qa/qa_instance.py \
760
	qa/qa_job.py \
761
	qa/qa_node.py \
762
	qa/qa_os.py \
763
	qa/qa_rapi.py \
764
	qa/qa_tags.py \
765
	qa/qa_utils.py
766

    
767
bin_SCRIPTS =
768
if WANT_HTOOLS
769
bin_SCRIPTS += $(HS_BIN_PROGS)
770
install-exec-hook:
771
	@mkdir_p@ $(DESTDIR)$(iallocatorsdir)
772
# FIXME: this is a hardcoded logic, instead of auto-resolving
773
	$(LN_S) -f ../../../bin/htools \
774
	  $(DESTDIR)$(iallocatorsdir)/hail
775
	for role in $(HS_BIN_ROLES); do \
776
	  $(LN_S) -f htools $(DESTDIR)$(bindir)/$$role ; \
777
	done
778
endif
779

    
780
$(HS_ALL_PROGS): %: %.hs $(HS_LIBTESTBUILT_SRCS) Makefile
781
	@if [ "$(notdir $@)" = "test" ] && [ "$(HS_NODEV)" ]; then \
782
	  echo "Error: cannot run unittests without the development" \
783
	       " libraries (see devnotes.rst)" 1>&2; \
784
	  exit 1; \
785
	fi
786
	@rm -f $(notdir $@).tix
787
	$(GHC) --make \
788
	  $(HFLAGS) \
789
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
790
	  -osuf $(notdir $@).o -hisuf $(notdir $@).hi \
791
	  $(HEXTRA) $(HEXTRA_INT) $@
792
	@touch "$@"
793

    
794
# for the test/hs/htest binary, we need to enable profiling/coverage
795
test/hs/htest: HEXTRA_INT=-fhpc -itest/hs
796

    
797
# we compile the hpc-htools binary with the program coverage
798
test/hs/hpc-htools: HEXTRA_INT=-fhpc
799

    
800
# we compile the hpc-mon-collector binary with the program coverage
801
test/hs/hpc-mon-collector: HEXTRA_INT=-fhpc
802

    
803
# test dependency
804
test/hs/offline-tests.sh: test/hs/hpc-htools test/hs/hpc-mon-collector
805

    
806
# rules for building profiling-enabled versions of the haskell
807
# programs: hs-prof does the full two-step build, whereas
808
# hs-prof-quick does only the final rebuild (hs-prof must have been
809
# run before)
810
.PHONY: hs-prof hs-prof-quick
811
hs-prof:
812
	@if [ -z "$(TARGET)" ]; then \
813
	  echo "You need to define TARGET when running this rule" 1>&2; \
814
	  exit 1; \
815
	fi
816
	$(MAKE) $(AM_MAKEFLAGS) clean
817
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf o"
818
	rm -f $(HS_ALL_PROGS)
819
	$(MAKE) $(AM_MAKEFLAGS) hs-prof-quick
820

    
821
hs-prof-quick:
822
	@if [ -z "$(TARGET)" ]; then \
823
	  echo "You need to define TARGET when running this rule" 1>&2; \
824
	  exit 1; \
825
	fi
826
	$(MAKE) $(AM_MAKEFLAGS) $(TARGET) HEXTRA="-osuf prof_o -prof -auto-all"
827

    
828
dist_sbin_SCRIPTS = \
829
	tools/ganeti-listrunner
830

    
831
nodist_sbin_SCRIPTS = \
832
	$(PYTHON_BOOTSTRAP_SBIN) \
833
	daemons/ganeti-cleaner
834

    
835
if ENABLE_CONFD
836
src/ganeti-confd: src/hconfd
837
	cp -f $< $@
838

    
839
nodist_sbin_SCRIPTS += src/ganeti-confd
840
endif
841

    
842
if ENABLE_MOND
843
nodist_sbin_SCRIPTS += src/ganeti-mond
844
endif
845

    
846
python_scripts = \
847
	tools/cfgshell \
848
	tools/cfgupgrade \
849
	tools/cfgupgrade12 \
850
	tools/cluster-merge \
851
	tools/confd-client \
852
	tools/fmtjson \
853
	tools/lvmstrap \
854
	tools/move-instance \
855
	tools/ovfconverter \
856
	tools/sanitize-config
857

    
858
dist_tools_SCRIPTS = \
859
	$(python_scripts) \
860
	tools/burnin \
861
	tools/kvm-console-wrapper \
862
	tools/master-ip-setup \
863
	tools/xen-console-wrapper
864

    
865
nodist_tools_python_scripts = \
866
	tools/node-cleanup
867

    
868
nodist_tools_SCRIPTS = \
869
	$(nodist_tools_python_scripts) \
870
	tools/users-setup \
871
	tools/vcluster-setup
872

    
873
pkglib_python_scripts = \
874
	daemons/import-export \
875
	tools/check-cert-expired
876

    
877
nodist_pkglib_python_scripts = \
878
	tools/ensure-dirs \
879
	tools/node-daemon-setup \
880
	tools/prepare-node-join
881

    
882
myexeclib_SCRIPTS = \
883
	daemons/daemon-util \
884
	tools/kvm-ifup \
885
	$(pkglib_python_scripts) \
886
	$(HS_MYEXECLIB_PROGS)
887

    
888
nodist_myexeclib_SCRIPTS = \
889
	$(nodist_pkglib_python_scripts)
890

    
891
EXTRA_DIST = \
892
	NEWS \
893
	UPGRADE \
894
	epydoc.conf.in \
895
	pylintrc \
896
	autotools/build-bash-completion \
897
	autotools/build-rpc \
898
	autotools/check-header \
899
	autotools/check-imports \
900
	autotools/check-man-dashes \
901
	autotools/check-man-references \
902
	autotools/check-man-warnings \
903
	autotools/check-news \
904
	autotools/check-python-code \
905
	autotools/check-tar \
906
	autotools/check-version \
907
	autotools/convert-constants \
908
	autotools/docpp \
909
	autotools/gen-py-coverage \
910
	autotools/sphinx-wrapper \
911
	autotools/testrunner \
912
	autotools/wrong-hardcoded-paths \
913
	$(RUN_IN_TEMPDIR) \
914
	daemons/daemon-util.in \
915
	daemons/ganeti-cleaner.in \
916
	$(pkglib_python_scripts) \
917
	devel/upload \
918
	devel/webserver \
919
	tools/kvm-ifup.in \
920
	tools/users-setup.in \
921
	tools/vcluster-setup.in \
922
	$(docinput) \
923
	doc/html \
924
	$(BUILT_EXAMPLES:%=%.in) \
925
	doc/examples/ganeti.default \
926
	doc/examples/ganeti.default-debug \
927
	doc/examples/hooks/ethers \
928
	doc/examples/gnt-debug/README \
929
	doc/examples/gnt-debug/delay0.json \
930
	doc/examples/gnt-debug/delay50.json \
931
	test/py/lockperf.py \
932
	test/py/testutils.py \
933
	test/py/mocks.py \
934
	$(dist_TESTS) \
935
	$(TEST_FILES) \
936
	man/footer.rst \
937
	$(manrst) \
938
	$(maninput) \
939
	qa/qa-sample.json \
940
	$(qa_scripts) \
941
	$(HS_LIBTEST_SRCS) $(HS_BUILT_SRCS_IN) \
942
	$(HS_PROG_SRCS) \
943
	src/lint-hints.hs \
944
	test/hs/cli-tests-defs.sh \
945
	test/hs/offline-test.sh \
946
	.ghci
947

    
948
man_MANS = \
949
	man/ganeti-cleaner.8 \
950
	man/ganeti-confd.8 \
951
	man/ganeti-listrunner.8 \
952
	man/ganeti-masterd.8 \
953
	man/ganeti-mond.8 \
954
	man/ganeti-noded.8 \
955
	man/ganeti-os-interface.7 \
956
	man/ganeti-extstorage-interface.7 \
957
	man/ganeti-rapi.8 \
958
	man/ganeti-watcher.8 \
959
	man/ganeti.7 \
960
	man/gnt-backup.8 \
961
	man/gnt-cluster.8 \
962
	man/gnt-debug.8 \
963
	man/gnt-group.8 \
964
	man/gnt-network.8 \
965
	man/gnt-instance.8 \
966
	man/gnt-job.8 \
967
	man/gnt-node.8 \
968
	man/gnt-os.8 \
969
	man/gnt-storage.8 \
970
	man/hail.1 \
971
	man/hbal.1 \
972
	man/hcheck.1 \
973
	man/hinfo.1 \
974
	man/hscan.1 \
975
	man/hspace.1 \
976
	man/hroller.1 \
977
	man/htools.1 \
978
	man/mon-collector.7
979

    
980
# Remove extensions from all filenames in man_MANS
981
mannoext = $(patsubst %.1,%,$(patsubst %.7,%,$(patsubst %.8,%,$(man_MANS))))
982

    
983
manrst = $(patsubst %,%.rst,$(mannoext))
984
manhtml = $(patsubst %.rst,%.html,$(manrst))
985
mangen = $(patsubst %.rst,%.gen,$(manrst))
986
maninput = \
987
	$(patsubst %.1,%.1.in,$(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS)))) \
988
	$(patsubst %.html,%.html.in,$(manhtml)) \
989
	$(mangen)
990

    
991
TEST_FILES = \
992
	test/data/htools/clean-nonzero-score.data \
993
	test/data/htools/common-suffix.data \
994
	test/data/htools/empty-cluster.data \
995
	test/data/htools/hail-alloc-drbd.json \
996
	test/data/htools/hail-alloc-invalid-twodisks.json \
997
	test/data/htools/hail-alloc-twodisks.json \
998
	test/data/htools/hail-change-group.json \
999
	test/data/htools/hail-invalid-reloc.json \
1000
	test/data/htools/hail-node-evac.json \
1001
	test/data/htools/hail-reloc-drbd.json \
1002
	test/data/htools/hbal-excl-tags.data \
1003
	test/data/htools/hbal-split-insts.data \
1004
	test/data/htools/invalid-node.data \
1005
	test/data/htools/missing-resources.data \
1006
	test/data/htools/n1-failure.data \
1007
	test/data/htools/rapi/groups.json \
1008
	test/data/htools/rapi/info.json \
1009
	test/data/htools/rapi/instances.json \
1010
	test/data/htools/rapi/nodes.json \
1011
	test/hs/shelltests/htools-balancing.test \
1012
	test/hs/shelltests/htools-basic.test \
1013
	test/hs/shelltests/htools-dynutil.test \
1014
	test/hs/shelltests/htools-excl.test \
1015
	test/hs/shelltests/htools-hail.test \
1016
	test/hs/shelltests/htools-hspace.test \
1017
	test/hs/shelltests/htools-invalid.test \
1018
	test/hs/shelltests/htools-multi-group.test \
1019
	test/hs/shelltests/htools-no-backend.test \
1020
	test/hs/shelltests/htools-rapi.test \
1021
	test/hs/shelltests/htools-single-group.test \
1022
	test/hs/shelltests/htools-text-backend.test \
1023
	test/hs/shelltests/htools-mon-collector.test \
1024
	test/data/bdev-drbd-8.0.txt \
1025
	test/data/bdev-drbd-8.3.txt \
1026
	test/data/bdev-drbd-disk.txt \
1027
	test/data/bdev-drbd-net-ip4.txt \
1028
	test/data/bdev-drbd-net-ip6.txt \
1029
	test/data/bdev-rbd/json_output_empty.txt \
1030
	test/data/bdev-rbd/json_output_extra_matches.txt \
1031
	test/data/bdev-rbd/json_output_no_matches.txt \
1032
	test/data/bdev-rbd/json_output_ok.txt \
1033
	test/data/bdev-rbd/plain_output_new_extra_matches.txt \
1034
	test/data/bdev-rbd/plain_output_new_no_matches.txt \
1035
	test/data/bdev-rbd/plain_output_new_ok.txt \
1036
	test/data/bdev-rbd/plain_output_old_empty.txt \
1037
	test/data/bdev-rbd/plain_output_old_extra_matches.txt \
1038
	test/data/bdev-rbd/plain_output_old_no_matches.txt \
1039
	test/data/bdev-rbd/plain_output_old_ok.txt \
1040
	test/data/bdev-rbd/output_invalid.txt \
1041
	test/data/cert1.pem \
1042
	test/data/cert2.pem \
1043
	test/data/instance-minor-pairing.txt \
1044
	test/data/ip-addr-show-dummy0.txt \
1045
	test/data/ip-addr-show-lo-ipv4.txt \
1046
	test/data/ip-addr-show-lo-ipv6.txt \
1047
	test/data/ip-addr-show-lo-oneline-ipv4.txt \
1048
	test/data/ip-addr-show-lo-oneline-ipv6.txt \
1049
	test/data/ip-addr-show-lo-oneline.txt \
1050
	test/data/ip-addr-show-lo.txt \
1051
	test/data/kvm_0.12.5_help.txt \
1052
	test/data/kvm_0.15.90_help.txt \
1053
	test/data/kvm_0.9.1_help.txt \
1054
	test/data/kvm_0.9.1_help_boot_test.txt \
1055
	test/data/kvm_1.0_help.txt \
1056
	test/data/kvm_1.1.2_help.txt \
1057
	test/data/ovfdata/compr_disk.vmdk.gz \
1058
	test/data/ovfdata/config.ini \
1059
	test/data/ovfdata/corrupted_resources.ovf \
1060
	test/data/ovfdata/empty.ini \
1061
	test/data/ovfdata/empty.ovf \
1062
	test/data/ovfdata/ganeti.mf \
1063
	test/data/ovfdata/ganeti.ovf \
1064
	test/data/ovfdata/gzip_disk.ovf \
1065
	test/data/ovfdata/new_disk.vmdk \
1066
	test/data/ovfdata/no_disk.ini \
1067
	test/data/ovfdata/no_disk_in_ref.ovf \
1068
	test/data/ovfdata/no_os.ini \
1069
	test/data/ovfdata/no_ovf.ova \
1070
	test/data/ovfdata/other/rawdisk.raw \
1071
	test/data/ovfdata/ova.ova \
1072
	test/data/ovfdata/rawdisk.raw \
1073
	test/data/ovfdata/second_disk.vmdk \
1074
	test/data/ovfdata/unsafe_path.ini \
1075
	test/data/ovfdata/virtualbox.ovf \
1076
	test/data/ovfdata/wrong_config.ini \
1077
	test/data/ovfdata/wrong_extension.ovd \
1078
	test/data/ovfdata/wrong_manifest.mf \
1079
	test/data/ovfdata/wrong_manifest.ovf \
1080
	test/data/ovfdata/wrong_ova.ova \
1081
	test/data/ovfdata/wrong_xml.ovf \
1082
	test/data/proc_drbd8.txt \
1083
	test/data/proc_drbd80-emptyline.txt \
1084
	test/data/proc_drbd83.txt \
1085
	test/data/proc_drbd83_sync.txt \
1086
	test/data/proc_drbd83_sync_want.txt \
1087
	test/data/proc_drbd83_sync_krnl2.6.39.txt \
1088
	test/data/qa-minimal-nodes-instances-only.json \
1089
	test/data/sys_drbd_usermode_helper.txt \
1090
	test/data/vgreduce-removemissing-2.02.02.txt \
1091
	test/data/vgreduce-removemissing-2.02.66-fail.txt \
1092
	test/data/vgreduce-removemissing-2.02.66-ok.txt \
1093
	test/data/vgs-missing-pvs-2.02.02.txt \
1094
	test/data/vgs-missing-pvs-2.02.66.txt \
1095
	test/data/xen-xm-info-4.0.1.txt \
1096
	test/data/xen-xm-list-4.0.1-dom0-only.txt \
1097
	test/data/xen-xm-list-4.0.1-four-instances.txt \
1098
	test/data/xen-xm-list-long-4.0.1.txt \
1099
	test/data/xen-xm-uptime-4.0.1.txt \
1100
	test/py/ganeti-cli.test \
1101
	test/py/gnt-cli.test \
1102
	test/py/import-export_unittest-helper
1103

    
1104
python_tests = \
1105
	doc/examples/rapi_testutils.py \
1106
	test/py/cfgupgrade_unittest.py \
1107
	test/py/docs_unittest.py \
1108
	test/py/ganeti.asyncnotifier_unittest.py \
1109
	test/py/ganeti.backend_unittest-runasroot.py \
1110
	test/py/ganeti.backend_unittest.py \
1111
	test/py/ganeti.bdev_unittest.py \
1112
	test/py/ganeti.cli_unittest.py \
1113
	test/py/ganeti.client.gnt_cluster_unittest.py \
1114
	test/py/ganeti.client.gnt_instance_unittest.py \
1115
	test/py/ganeti.client.gnt_job_unittest.py \
1116
	test/py/ganeti.cmdlib_unittest.py \
1117
	test/py/ganeti.compat_unittest.py \
1118
	test/py/ganeti.confd.client_unittest.py \
1119
	test/py/ganeti.config_unittest.py \
1120
	test/py/ganeti.constants_unittest.py \
1121
	test/py/ganeti.daemon_unittest.py \
1122
	test/py/ganeti.errors_unittest.py \
1123
	test/py/ganeti.hooks_unittest.py \
1124
	test/py/ganeti.ht_unittest.py \
1125
	test/py/ganeti.http_unittest.py \
1126
	test/py/ganeti.hypervisor.hv_chroot_unittest.py \
1127
	test/py/ganeti.hypervisor.hv_fake_unittest.py \
1128
	test/py/ganeti.hypervisor.hv_kvm_unittest.py \
1129
	test/py/ganeti.hypervisor.hv_lxc_unittest.py \
1130
	test/py/ganeti.hypervisor.hv_xen_unittest.py \
1131
	test/py/ganeti.hypervisor_unittest.py \
1132
	test/py/ganeti.impexpd_unittest.py \
1133
	test/py/ganeti.jqueue_unittest.py \
1134
	test/py/ganeti.jstore_unittest.py \
1135
	test/py/ganeti.locking_unittest.py \
1136
	test/py/ganeti.luxi_unittest.py \
1137
	test/py/ganeti.masterd.iallocator_unittest.py \
1138
	test/py/ganeti.masterd.instance_unittest.py \
1139
	test/py/ganeti.mcpu_unittest.py \
1140
	test/py/ganeti.netutils_unittest.py \
1141
	test/py/ganeti.objects_unittest.py \
1142
	test/py/ganeti.opcodes_unittest.py \
1143
	test/py/ganeti.outils_unittest.py \
1144
	test/py/ganeti.ovf_unittest.py \
1145
	test/py/ganeti.qlang_unittest.py \
1146
	test/py/ganeti.query_unittest.py \
1147
	test/py/ganeti.rapi.baserlib_unittest.py \
1148
	test/py/ganeti.rapi.client_unittest.py \
1149
	test/py/ganeti.rapi.resources_unittest.py \
1150
	test/py/ganeti.rapi.rlib2_unittest.py \
1151
	test/py/ganeti.rapi.testutils_unittest.py \
1152
	test/py/ganeti.rpc_unittest.py \
1153
	test/py/ganeti.runtime_unittest.py \
1154
	test/py/ganeti.serializer_unittest.py \
1155
	test/py/ganeti.server.rapi_unittest.py \
1156
	test/py/ganeti.ssconf_unittest.py \
1157
	test/py/ganeti.ssh_unittest.py \
1158
	test/py/ganeti.storage_unittest.py \
1159
	test/py/ganeti.tools.burnin_unittest.py \
1160
	test/py/ganeti.tools.ensure_dirs_unittest.py \
1161
	test/py/ganeti.tools.node_daemon_setup_unittest.py \
1162
	test/py/ganeti.tools.prepare_node_join_unittest.py \
1163
	test/py/ganeti.uidpool_unittest.py \
1164
	test/py/ganeti.utils.algo_unittest.py \
1165
	test/py/ganeti.utils.filelock_unittest.py \
1166
	test/py/ganeti.utils.hash_unittest.py \
1167
	test/py/ganeti.utils.io_unittest-runasroot.py \
1168
	test/py/ganeti.utils.io_unittest.py \
1169
	test/py/ganeti.utils.log_unittest.py \
1170
	test/py/ganeti.utils.lvm_unittest.py \
1171
	test/py/ganeti.utils.mlock_unittest.py \
1172
	test/py/ganeti.utils.nodesetup_unittest.py \
1173
	test/py/ganeti.utils.process_unittest.py \
1174
	test/py/ganeti.utils.retry_unittest.py \
1175
	test/py/ganeti.utils.text_unittest.py \
1176
	test/py/ganeti.utils.wrapper_unittest.py \
1177
	test/py/ganeti.utils.x509_unittest.py \
1178
	test/py/ganeti.utils_unittest.py \
1179
	test/py/ganeti.vcluster_unittest.py \
1180
	test/py/ganeti.workerpool_unittest.py \
1181
	test/py/pycurl_reset_unittest.py \
1182
	test/py/qa.qa_config_unittest.py \
1183
	test/py/tempfile_fork_unittest.py
1184

    
1185
haskell_tests = test/hs/htest
1186

    
1187
dist_TESTS = \
1188
	test/py/check-cert-expired_unittest.bash \
1189
	test/py/daemon-util_unittest.bash \
1190
	test/py/ganeti-cleaner_unittest.bash \
1191
	test/py/import-export_unittest.bash \
1192
	test/py/cli-test.bash \
1193
	test/py/bash_completion.bash \
1194
	$(python_tests)
1195

    
1196
nodist_TESTS =
1197
check_SCRIPTS =
1198

    
1199
if WANT_HSTESTS
1200
nodist_TESTS += $(haskell_tests)
1201
dist_TESTS += test/hs/offline-test.sh
1202
check_SCRIPTS += \
1203
	test/hs/hpc-htools \
1204
	test/hs/hpc-mon-collector \
1205
	$(HS_BUILT_TEST_HELPERS)
1206
endif
1207

    
1208
TESTS = $(dist_TESTS) $(nodist_TESTS)
1209

    
1210
# Environment for all tests
1211
PLAIN_TESTS_ENVIRONMENT = \
1212
	PYTHONPATH=. \
1213
	TOP_SRCDIR=$(abs_top_srcdir) TOP_BUILDDIR=$(abs_top_builddir) \
1214
	PYTHON=$(PYTHON) FAKEROOT=$(FAKEROOT_PATH) \
1215
	$(RUN_IN_TEMPDIR)
1216

    
1217
# Environment for tests run by automake
1218
TESTS_ENVIRONMENT = \
1219
	$(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
1220

    
1221
all_python_code = \
1222
	$(dist_sbin_SCRIPTS) \
1223
	$(python_scripts) \
1224
	$(pkglib_python_scripts) \
1225
	$(nodist_pkglib_python_scripts) \
1226
	$(nodist_tools_python_scripts) \
1227
	$(python_tests) \
1228
	$(pkgpython_PYTHON) \
1229
	$(client_PYTHON) \
1230
	$(hypervisor_PYTHON) \
1231
	$(rapi_PYTHON) \
1232
	$(server_PYTHON) \
1233
	$(pytools_PYTHON) \
1234
	$(http_PYTHON) \
1235
	$(confd_PYTHON) \
1236
	$(masterd_PYTHON) \
1237
	$(impexpd_PYTHON) \
1238
	$(utils_PYTHON) \
1239
	$(watcher_PYTHON) \
1240
	$(noinst_PYTHON) \
1241
	$(qa_scripts)
1242

    
1243
srclink_files = \
1244
	man/footer.rst \
1245
	test/py/check-cert-expired_unittest.bash \
1246
	test/py/daemon-util_unittest.bash \
1247
	test/py/ganeti-cleaner_unittest.bash \
1248
	test/py/import-export_unittest.bash \
1249
	test/py/cli-test.bash \
1250
	test/py/bash_completion.bash \
1251
	test/hs/offline-test.sh \
1252
	test/hs/cli-tests-defs.sh \
1253
	$(all_python_code) \
1254
	$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS) \
1255
	$(docinput)
1256

    
1257
check_python_code = \
1258
	$(BUILD_BASH_COMPLETION) \
1259
	$(CHECK_IMPORTS) \
1260
	$(CHECK_HEADER) \
1261
	$(DOCPP) \
1262
	$(all_python_code)
1263

    
1264
lint_python_code = \
1265
	ganeti \
1266
	ganeti/http/server.py \
1267
	$(dist_sbin_SCRIPTS) \
1268
	$(python_scripts) \
1269
	$(pkglib_python_scripts) \
1270
	$(BUILD_BASH_COMPLETION) \
1271
	$(CHECK_IMPORTS) \
1272
	$(CHECK_HEADER) \
1273
	$(DOCPP) \
1274
	$(PYTHON_BOOTSTRAP)
1275

    
1276
standalone_python_modules = \
1277
	lib/rapi/client.py \
1278
	tools/ganeti-listrunner
1279

    
1280
pep8_python_code = \
1281
	ganeti \
1282
	ganeti/http/server.py \
1283
	$(dist_sbin_SCRIPTS) \
1284
	$(python_scripts) \
1285
	$(pkglib_python_scripts) \
1286
	$(BUILD_BASH_COMPLETION) \
1287
	$(CHECK_HEADER) \
1288
	$(DOCPP) \
1289
	$(PYTHON_BOOTSTRAP) \
1290
	qa
1291

    
1292
test/py/daemon-util_unittest.bash: daemons/daemon-util
1293

    
1294
test/py/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
1295

    
1296
test/py/bash_completion.bash: doc/examples/bash_completion-debug
1297

    
1298
tools/kvm-ifup: tools/kvm-ifup.in $(REPLACE_VARS_SED)
1299
	sed -f $(REPLACE_VARS_SED) < $< > $@
1300
	chmod +x $@
1301

    
1302
tools/users-setup: tools/users-setup.in $(REPLACE_VARS_SED)
1303
	sed -f $(REPLACE_VARS_SED) < $< > $@
1304
	chmod +x $@
1305

    
1306
tools/vcluster-setup: tools/vcluster-setup.in $(REPLACE_VARS_SED)
1307
	sed -f $(REPLACE_VARS_SED) < $< > $@
1308
	chmod +x $@
1309

    
1310
daemons/%:: daemons/%.in $(REPLACE_VARS_SED)
1311
	sed -f $(REPLACE_VARS_SED) < $< > $@
1312
	chmod +x $@
1313

    
1314
doc/examples/%:: doc/examples/%.in $(REPLACE_VARS_SED)
1315
	sed -f $(REPLACE_VARS_SED) < $< > $@
1316

    
1317
doc/examples/bash_completion: BC_ARGS = --compact
1318
doc/examples/bash_completion-debug: BC_ARGS =
1319

    
1320
doc/examples/bash_completion doc/examples/bash_completion-debug: \
1321
	$(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
1322
	lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin \
1323
	daemons/ganeti-cleaner \
1324
	$(GENERATED_FILES) $(HS_GENERATED_FILES)
1325
	PYTHONPATH=. $(RUN_IN_TEMPDIR) \
1326
	  $(CURDIR)/$(BUILD_BASH_COMPLETION) $(BC_ARGS) > $@
1327

    
1328
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
1329
	lib/build/shell_example_lexer.py \
1330
	| $(RUN_IN_TEMPDIR) $(BUILT_PYTHON_SOURCES)
1331
	@echo "Checking $< for hardcoded paths..."
1332
	@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
1333
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
1334
	  exit 1; \
1335
	fi
1336
	set -e ; \
1337
	trap 'echo auto-removing $@; rm $@' EXIT; \
1338
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
1339
	$(CHECK_MAN_REFERENCES) $@; \
1340
	trap - EXIT
1341

    
1342
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
1343
	@test -n "$(PANDOC)" || \
1344
	  { echo 'pandoc' not found during configure; exit 1; }
1345
	set -o pipefail -e; \
1346
	trap 'echo auto-removing $@; rm $@' EXIT; \
1347
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
1348
	  sed -e 's/\\@/@/g' > $@; \
1349
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN_WARNINGS) $@; fi; \
1350
	$(CHECK_MAN_DASHES) $@; \
1351
	trap - EXIT
1352

    
1353
man/%.html.in: man/%.gen man/footer.rst
1354
	@test -n "$(PANDOC)" || \
1355
	  { echo 'pandoc' not found during configure; exit 1; }
1356
	set -o pipefail ; \
1357
	$(PANDOC) --toc -s -f rst -t html $< man/footer.rst | \
1358
	  sed -e 's/\\@/@/g' > $@
1359

    
1360
man/%: man/%.in  $(REPLACE_VARS_SED)
1361
	sed -f $(REPLACE_VARS_SED) < $< > $@
1362

    
1363
epydoc.conf: epydoc.conf.in $(REPLACE_VARS_SED)
1364
	sed -f $(REPLACE_VARS_SED) < $< > $@
1365

    
1366
vcs-version:
1367
	if test -d .git; then \
1368
	  git describe > $@; \
1369
	elif test ! -f $@ ; then \
1370
	  echo "Cannot auto-generate $@ file"; exit 1; \
1371
	fi
1372

    
1373
.PHONY: clean-vcs-version
1374
clean-vcs-version:
1375
	rm -f vcs-version
1376

    
1377
.PHONY: regen-vcs-version
1378
regen-vcs-version:
1379
	@set -e; \
1380
	cd $(srcdir); \
1381
	if test -d .git; then \
1382
	  T=`mktemp` ; trap 'rm -f $$T' EXIT; \
1383
	  git describe > $$T; \
1384
	  if ! cmp --quiet $$T vcs-version; then \
1385
	    mv $$T vcs-version; \
1386
	  fi; \
1387
	fi
1388

    
1389
src/Ganeti/Version.hs: src/Ganeti/Version.hs.in \
1390
	vcs-version $(built_base_sources)
1391
	set -e; \
1392
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1393
	sed -e "s/%ver%/$$VCSVER/" < $< > $@
1394

    
1395
src/Ganeti/Constants.hs: src/Ganeti/Constants.hs.in \
1396
	lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
1397
	lib/jstore.py $(RUN_IN_TEMPDIR) \
1398
	$(CONVERT_CONSTANTS) $(built_base_sources) \
1399
	| lib/_vcsversion.py
1400
	set -e; \
1401
	{ cat $< ; \
1402
	  PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
1403
	} > $@
1404

    
1405
src/Ganeti/Curl/Internal.hs: src/Ganeti/Curl/Internal.hsc | stamp-directories
1406
	hsc2hs -o $@ $<
1407

    
1408
test/hs/Test/Ganeti/TestImports.hs: test/hs/Test/Ganeti/TestImports.hs.in \
1409
	$(built_base_sources)
1410
	set -e; \
1411
	{ cat $< ; \
1412
	  echo ; \
1413
	  for name in $(filter-out Ganeti.THH,$(subst /,.,$(patsubst %.hs,%,$(patsubst src/%,%,$(HS_LIB_SRCS))))) ; do \
1414
	    echo "import $$name ()" ; \
1415
	  done ; \
1416
	} > $@
1417

    
1418
lib/_autoconf.py: Makefile | stamp-directories
1419
	set -e; \
1420
	{ echo '# This file is automatically generated, do not edit!'; \
1421
	  echo '#'; \
1422
	  echo ''; \
1423
	  echo '"""Build-time configuration for Ganeti.'; \
1424
	  echo '';\
1425
	  echo 'This file is autogenerated by the build process.'; \
1426
	  echo 'For any changes you need to re-run ./configure (and'; \
1427
	  echo 'not edit by hand).'; \
1428
	  echo ''; \
1429
	  echo '"""'; \
1430
	  echo ''; \
1431
	  echo '# pylint: disable=C0301,C0324'; \
1432
	  echo '# because this is autogenerated, we do not want'; \
1433
	  echo '# style warnings' ; \
1434
	  echo ''; \
1435
	  echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
1436
	  echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
1437
	  echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
1438
	  echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
1439
	  echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
1440
	  echo "VERSION_FULL = '$(VERSION_FULL)'"; \
1441
	  echo "LOCALSTATEDIR = '$(localstatedir)'"; \
1442
	  echo "SYSCONFDIR = '$(sysconfdir)'"; \
1443
	  echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
1444
	  echo "SSH_LOGIN_USER = '$(SSH_LOGIN_USER)'"; \
1445
	  echo "SSH_CONSOLE_USER = '$(SSH_CONSOLE_USER)'"; \
1446
	  echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
1447
	  echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
1448
	  echo "ES_SEARCH_PATH = [$(ES_SEARCH_PATH)]"; \
1449
	  echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
1450
	  echo "XEN_CONFIG_DIR = '$(XEN_CONFIG_DIR)'"; \
1451
	  echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
1452
	  echo "XEN_INITRD = '$(XEN_INITRD)'"; \
1453
	  echo "KVM_KERNEL = '$(KVM_KERNEL)'"; \
1454
	  echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
1455
	  echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
1456
	  echo "SHARED_FILE_STORAGE_DIR = '$(SHARED_FILE_STORAGE_DIR)'"; \
1457
	  echo "ENABLE_SHARED_FILE_STORAGE = $(ENABLE_SHARED_FILE_STORAGE)"; \
1458
	  echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
1459
	  echo "KVM_PATH = '$(KVM_PATH)'"; \
1460
	  echo "IP_PATH = '$(IP_PATH)'"; \
1461
	  echo "SOCAT_PATH = '$(SOCAT)'"; \
1462
	  echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
1463
	  echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
1464
	  echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
1465
	  echo "TOOLSDIR = '$(toolsdir)'"; \
1466
	  echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
1467
	  echo "HTOOLS_PROGS = [$(foreach i,$(HS_HTOOLS_PROGS),'$(i)',)]"; \
1468
	  echo "PKGLIBDIR = '$(pkglibdir)'"; \
1469
	  echo "DRBD_BARRIERS = '$(DRBD_BARRIERS)'"; \
1470
	  echo "DRBD_NO_META_FLUSH = $(DRBD_NO_META_FLUSH)"; \
1471
	  echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
1472
	  echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
1473
	  echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
1474
	  echo "MASTERD_USER = '$(MASTERD_USER)'"; \
1475
	  echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
1476
	  echo "RAPI_USER = '$(RAPI_USER)'"; \
1477
	  echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
1478
	  echo "CONFD_USER = '$(CONFD_USER)'"; \
1479
	  echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
1480
	  echo "NODED_USER = '$(NODED_USER)'"; \
1481
	  echo "NODED_GROUP = '$(NODED_GROUP)'"; \
1482
	  echo "MOND_USER = '$(MOND_USER)'"; \
1483
	  echo "MOND_GROUP = '$(MOND_GROUP)'"; \
1484
	  echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
1485
	  echo "QEMUIMG_PATH = '$(QEMUIMG_PATH)'"; \
1486
	  echo "HTOOLS = True"; \
1487
	  echo "ENABLE_CONFD = $(ENABLE_CONFD)"; \
1488
	  echo "XEN_CMD = '$(XEN_CMD)'"; \
1489
	  echo "ENABLE_SPLIT_QUERY = $(ENABLE_SPLIT_QUERY)"; \
1490
	  echo "ENABLE_RESTRICTED_COMMANDS = $(ENABLE_RESTRICTED_COMMANDS)"; \
1491
	  echo "ENABLE_MOND = $(ENABLE_MOND)"; \
1492
## Write dictionary with man page name as the key and the section number as the
1493
## value
1494
	  echo "MAN_PAGES = {"; \
1495
	  for i in $(notdir $(man_MANS)); do \
1496
	    echo "$$i" | sed -re 's/^(.*)\.([0-9]+)$$/  "\1": \2,/g'; \
1497
	  done; \
1498
	  echo "}"; \
1499
	} > $@
1500

    
1501
lib/_vcsversion.py: Makefile vcs-version | stamp-directories
1502
	set -e; \
1503
	VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
1504
	{ echo '# This file is automatically generated, do not edit!'; \
1505
	  echo '#'; \
1506
	  echo ''; \
1507
	  echo '"""Build-time VCS version number for Ganeti.'; \
1508
	  echo '';\
1509
	  echo 'This file is autogenerated by the build process.'; \
1510
	  echo 'For any changes you need to re-run ./configure (and'; \
1511
	  echo 'not edit by hand).'; \
1512
	  echo ''; \
1513
	  echo '"""'; \
1514
	  echo ''; \
1515
	  echo '# pylint: disable=C0301,C0324'; \
1516
	  echo '# because this is autogenerated, we do not want'; \
1517
	  echo '# style warnings' ; \
1518
	  echo ''; \
1519
	  echo "VCS_VERSION = '$$VCSVER'"; \
1520
	} > $@
1521

    
1522
lib/_generated_rpc.py: lib/rpc_defs.py $(BUILD_RPC)
1523
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_RPC) lib/rpc_defs.py > $@
1524

    
1525
$(SHELL_ENV_INIT): Makefile stamp-directories
1526
	set -e; \
1527
	{ echo '# Allow overriding for tests'; \
1528
	  echo 'readonly LOCALSTATEDIR=$${LOCALSTATEDIR:-$${GANETI_ROOTDIR:-}$(localstatedir)}'; \
1529
	  echo 'readonly SYSCONFDIR=$${SYSCONFDIR:-$${GANETI_ROOTDIR:-}$(sysconfdir)}'; \
1530
	  echo; \
1531
	  echo 'readonly PKGLIBDIR=$(pkglibdir)'; \
1532
	  echo 'readonly LOG_DIR="$$LOCALSTATEDIR/log/ganeti"'; \
1533
	  echo 'readonly RUN_DIR="$$LOCALSTATEDIR/run/ganeti"'; \
1534
	  echo 'readonly DATA_DIR="$$LOCALSTATEDIR/lib/ganeti"'; \
1535
	  echo 'readonly CONF_DIR="$$SYSCONFDIR/ganeti"'; \
1536
	} > $@
1537

    
1538
## Writes sed script to replace placeholders with build-time values. The
1539
## additional quotes after the first @ sign are necessary to stop configure
1540
## from replacing those values as well.
1541
$(REPLACE_VARS_SED): $(SHELL_ENV_INIT) Makefile stamp-directories
1542
	set -e; \
1543
	{ echo 's#@''PREFIX@#$(prefix)#g'; \
1544
	  echo 's#@''SYSCONFDIR@#$(sysconfdir)#g'; \
1545
	  echo 's#@''LOCALSTATEDIR@#$(localstatedir)#g'; \
1546
	  echo 's#@''BINDIR@#$(bindir)#g'; \
1547
	  echo 's#@''SBINDIR@#$(sbindir)#g'; \
1548
	  echo 's#@''LIBDIR@#$(libdir)#g'; \
1549
	  echo 's#@''GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
1550
	  echo 's#@''CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
1551
	  echo 's#@''CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
1552
	  echo 's#@''CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
1553
	  echo 's#@''CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
1554
	  echo 's#@''CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
1555
	  echo 's#@''RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
1556
	  echo 's#@''RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
1557
	  echo 's#@''PKGLIBDIR@#$(pkglibdir)#g'; \
1558
	  echo 's#@''GNTMASTERUSER@#$(MASTERD_USER)#g'; \
1559
	  echo 's#@''GNTRAPIUSER@#$(RAPI_USER)#g'; \
1560
	  echo 's#@''GNTCONFDUSER@#$(CONFD_USER)#g'; \
1561
	  echo 's#@''GNTNODEDUSER@#$(NODED_USER)#g'; \
1562
	  echo 's#@''GNTMONDUSER@#$(MOND_USER)#g'; \
1563
	  echo 's#@''GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
1564
	  echo 's#@''GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
1565
	  echo 's#@''GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
1566
	  echo 's#@''GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
1567
	  echo 's#@''GNTMONDGROUP@#$(MOND_GROUP)#g'; \
1568
	  echo 's#@''GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
1569
	  echo 's#@''CUSTOM_ENABLE_CONFD@#$(ENABLE_CONFD)#g'; \
1570
	  echo 's#@''CUSTOM_ENABLE_MOND@#$(ENABLE_MOND)#g'; \
1571
	  echo 's#@''MODULES@#$(strip $(lint_python_code))#g'; \
1572
	  echo 's#@''XEN_CONFIG_DIR@#$(XEN_CONFIG_DIR)#g'; \
1573
	  echo; \
1574
	  echo '/^@SHELL_ENV_INIT@$$/ {'; \
1575
	  echo '  r $(SHELL_ENV_INIT)'; \
1576
	  echo '  d'; \
1577
	  echo '}'; \
1578
	} > $@
1579

    
1580
# Using deferred evaluation
1581
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
1582
daemons/ganeti-watcher: MODULE = ganeti.watcher
1583
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
1584
tools/burnin: MODULE = ganeti.tools.burnin
1585
tools/ensure-dirs: MODULE = ganeti.tools.ensure_dirs
1586
tools/node-daemon-setup: MODULE = ganeti.tools.node_daemon_setup
1587
tools/prepare-node-join: MODULE = ganeti.tools.prepare_node_join
1588
tools/node-cleanup: MODULE = ganeti.tools.node_cleanup
1589
$(HS_BUILT_TEST_HELPERS): TESTROLE = $(patsubst test/hs/%,%,$@)
1590

    
1591
$(PYTHON_BOOTSTRAP): Makefile | stamp-directories
1592
	test -n "$(MODULE)" || { echo Missing module; exit 1; }
1593
	set -e; \
1594
	{ echo '#!/usr/bin/python'; \
1595
	  echo '# This file is automatically generated, do not edit!'; \
1596
	  echo "# Edit $(MODULE) instead."; \
1597
	  echo; \
1598
	  echo '"""Bootstrap script for L{$(MODULE)}"""'; \
1599
	  echo; \
1600
	  echo '# pylint: disable=C0103'; \
1601
	  echo '# C0103: Invalid name'; \
1602
	  echo; \
1603
	  echo 'import sys'; \
1604
	  echo 'import $(MODULE) as main'; \
1605
	  echo; \
1606
	  echo '# Temporarily alias commands until bash completion'; \
1607
	  echo '# generator is changed'; \
1608
	  echo 'if hasattr(main, "commands"):'; \
1609
	  echo '  commands = main.commands # pylint: disable=E1101'; \
1610
	  echo 'if hasattr(main, "aliases"):'; \
1611
	  echo '  aliases = main.aliases # pylint: disable=E1101'; \
1612
	  echo; \
1613
	  echo 'if __name__ == "__main__":'; \
1614
	  echo '  sys.exit(main.Main())'; \
1615
	} > $@
1616
	chmod u+x $@
1617

    
1618
$(HS_BUILT_TEST_HELPERS): Makefile
1619
	@test -n "$(TESTROLE)" || { echo Missing TESTROLE; exit 1; }
1620
	set -e; \
1621
	{ echo '#!/bin/sh'; \
1622
	  echo '# This file is automatically generated, do not edit!'; \
1623
	  echo "# Edit Makefile.am instead."; \
1624
	  echo; \
1625
	  echo "HTOOLS=$(TESTROLE) exec ./test/hs/hpc-htools \"\$$@\""; \
1626
	} > $@
1627
	chmod u+x $@
1628

    
1629
stamp-directories: Makefile
1630
	$(MAKE) $(AM_MAKEFLAGS) ganeti
1631
	@mkdir_p@ $(DIRS) $(BUILDTIME_DIR_AUTOCREATE)
1632
	touch $@
1633

    
1634
# We need to create symlinks because "make distcheck" will not install Python
1635
# files when building.
1636
stamp-srclinks: Makefile | stamp-directories
1637
	set -e; \
1638
	for i in $(srclink_files); do \
1639
	  if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
1640
	    $(LN_S) $(abs_top_srcdir)/$$i $$i; \
1641
	  fi; \
1642
	done
1643
	touch $@
1644

    
1645
.PHONY: ganeti
1646
ganeti:
1647
	cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
1648

    
1649
.PHONY: check-dirs
1650
check-dirs: $(GENERATED_FILES)
1651
	@set -e; \
1652
	find . -type d \( -name . -o -name .git -prune -o -print \) | { \
1653
	  error=; \
1654
	  while read dir; do \
1655
	    case "$$dir" in \
1656
	      $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
1657
	      *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
1658
	    esac; \
1659
	  done; \
1660
	  for dir in $(DIRS); do \
1661
	    if ! test -d "$$dir"; then \
1662
	      echo "Directory $$dir listed in DIRS does not exist" >&2; \
1663
	      error=1; \
1664
	    fi \
1665
	  done; \
1666
	  test -z "$$error"; \
1667
	}
1668

    
1669
.PHONY: check-local
1670
check-local: check-dirs $(GENERATED_FILES)
1671
	$(CHECK_PYTHON_CODE) $(check_python_code)
1672
	PYTHONPATH=. $(CHECK_HEADER) $(check_python_code)
1673
	$(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
1674
	$(CHECK_NEWS) < $(top_srcdir)/NEWS
1675
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CHECK_IMPORTS) . $(standalone_python_modules)
1676
	@expver=$(VERSION_MAJOR).$(VERSION_MINOR); \
1677
	error= ; \
1678
	if test "`head -n 1 $(top_srcdir)/README`" != "Ganeti $$expver"; then \
1679
	  echo "Incorrect version in README, expected $$expver" >&2; \
1680
	  error=1; \
1681
	fi; \
1682
	for file in doc/iallocator.rst doc/hooks.rst doc/virtual-cluster.rst \
1683
	    doc/security.rst; do \
1684
	  if test "`sed -ne '4 p' $(top_srcdir)/$$file`" != \
1685
	    "Documents Ganeti version $$expver"; then \
1686
	    echo "Incorrect version in $$file, expected $$expver" >&2; \
1687
	    error=1; \
1688
	  fi; \
1689
	done; \
1690
	if ! test -f $(top_srcdir)/doc/design-$$expver.rst; then \
1691
	  echo "File $(top_srcdir)/doc/design-$$expver.rst not found" >&2; \
1692
	  error=1; \
1693
	fi; \
1694
	if test "`sed -ne '5 p' $(top_srcdir)/doc/design-draft.rst`" != \
1695
	  ".. Last updated for Ganeti $$expver"; then \
1696
	  echo "doc/design-draft.rst was not updated for version $$expver" >&2; \
1697
	  error=1; \
1698
	fi; \
1699
	for file in configure.ac $(HS_LIBTEST_SRCS) $(HS_PROG_SRCS); do \
1700
	  if test $$(wc --max-line-length < $(top_srcdir)/$$file) -gt 80; then \
1701
	    echo "Longest line in $$file is longer than 80 characters" >&2; \
1702
	    error=1; \
1703
	  fi; \
1704
	done; \
1705
	test -z "$$error"
1706

    
1707
.PHONY: hs-tests
1708
hs-tests: test/hs/htest | $(BUILT_PYTHON_SOURCES)
1709
	@rm -f htest.tix
1710
	./test/hs/htest
1711

    
1712
.PHONY: hs-shell
1713
hs-shell: test/hs/hpc-htools test/hs/hpc-mon-collector $(HS_BUILT_TEST_HELPERS)
1714
	@rm -f hpc-htools.tix hpc-mon-collector.tix
1715
	HBINARY="./test/hs/hpc-htools" ./test/hs/offline-test.sh
1716

    
1717
.PHONY: hs-check
1718
hs-check: hs-tests hs-shell
1719

    
1720
# E111: indentation is not a multiple of four
1721
# E121: continuation line indentation is not a multiple of four
1722
#       (since our indent level is not 4)
1723
# E125: continuation line does not distinguish itself from next logical line
1724
#       (since our indent level is not 4)
1725
# E127: continuation line over-indented for visual indent
1726
#       (since our indent level is not 4)
1727
# note: do NOT add E128 here; it's a valid style error in most cases!
1728
# I've seen real errors, but also some cases were we indent wrongly
1729
# due to line length; try to rework the cases where it is triggered,
1730
# instead of silencing it
1731
# E261: at least two spaces before inline comment
1732
# E501: line too long (80 characters)
1733
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1734

    
1735
# For excluding pep8 expects filenames only, not whole paths
1736
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))
1737

    
1738
LINT_TARGETS = pylint pylint-qa
1739
if HAS_PEP8
1740
LINT_TARGETS += pep8
1741
endif
1742
if HAS_HLINT
1743
LINT_TARGETS += hlint
1744
endif
1745

    
1746
.PHONY: lint
1747
lint: $(LINT_TARGETS)
1748

    
1749
.PHONY: pylint
1750
pylint: $(GENERATED_FILES)
1751
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1752
	$(PYLINT) $(LINT_OPTS) $(lint_python_code)
1753

    
1754
.PHONY: pylint-qa
1755
pylint-qa: $(GENERATED_FILES)
1756
	@test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
1757
	cd $(top_srcdir)/qa && \
1758
	  PYTHONPATH=$(abs_top_srcdir) $(PYLINT) $(LINT_OPTS) \
1759
	  --rcfile  ../pylintrc $(patsubst qa/%.py,%,$(qa_scripts))
1760

    
1761
.PHONY: pep8
1762
pep8: $(GENERATED_FILES)
1763
	@test -n "$(PEP8)" || { echo 'pep8' not found during configure; exit 1; }
1764
	$(PEP8) --ignore='$(PEP8_IGNORE)' --exclude='$(PEP8_EXCLUDE)' \
1765
	  --repeat $(pep8_python_code)
1766

    
1767
# FIXME: remove ignore "Use void" when GHC 6.x is deprecated
1768
HLINT_EXCLUDES = src/Ganeti/THH.hs test/hs/hpc-htools.hs
1769
.PHONY: hlint
1770
hlint: $(HS_BUILT_SRCS) src/lint-hints.hs
1771
	@test -n "$(HLINT)" || { echo 'hlint' not found during configure; exit 1; }
1772
	@rm -f doc/hs-lint.html
1773
	if tty -s; then C="-c"; else C=""; fi; \
1774
	$(HLINT) --utf8 --report=doc/hs-lint.html --cross $$C \
1775
	  --ignore "Use first" \
1776
	  --ignore "Use &&&" \
1777
	  --ignore "Use void" \
1778
	  --ignore "Reduce duplication" \
1779
	  --hint src/lint-hints \
1780
	  $(filter-out $(HLINT_EXCLUDES),$(HS_LIBTEST_SRCS) $(HS_PROG_SRCS))
1781
	@if [ ! -f doc/hs-lint.html ]; then \
1782
	  echo "All good" > doc/hs-lint.html; \
1783
	fi
1784

    
1785
# a dist hook rule for updating the vcs-version file; this is
1786
# hardcoded due to where it needs to build the file...
1787
dist-hook:
1788
	$(MAKE) $(AM_MAKEFLAGS) regen-vcs-version
1789
	rm -f $(top_distdir)/vcs-version
1790
	cp -p $(srcdir)/vcs-version $(top_distdir)
1791

    
1792
# a distcheck hook rule for catching revision control directories
1793
distcheck-hook:
1794
	if find $(top_distdir) -name .svn -or -name .git | grep .; then \
1795
	  echo "Found revision control files in final archive." 1>&2; \
1796
	  exit 1; \
1797
	fi
1798
	if find $(top_distdir) -name '*.py[co]' | grep .; then \
1799
	  echo "Found Python byte code in final archive." 1>&2; \
1800
	  exit 1; \
1801
	fi
1802
	if find $(top_distdir) -name '*~' | grep .; then \
1803
	  echo "Found backup files in final archive." 1>&2; \
1804
	  exit 1; \
1805
	fi
1806
# Empty files or directories should not be distributed. They can cause
1807
# unnecessary warnings for packagers. Directories used by automake during
1808
# distcheck must be excluded.
1809
	if find $(top_distdir) -empty -and -not \( \
1810
	    -path $(top_distdir)/_build -or \
1811
	    -path $(top_distdir)/_inst \) | grep .; then \
1812
	  echo "Found empty files or directories in final archive." 1>&2; \
1813
	  exit 1; \
1814
	fi
1815
	if test -n "$(BUILD_RELEASE)" && \
1816
	   grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
1817
	   echo "Found unreleased version in NEWS." >&2; \
1818
	   exit 1; \
1819
	fi
1820
	if test -e $(top_distdir)/doc/man-html; then \
1821
	  echo "Found documentation including man pages in final archive" >&2; \
1822
	  exit 1; \
1823
	fi
1824

    
1825
# When building a release, stricter checks should be used
1826
distcheck-release dist-release: export BUILD_RELEASE = 1
1827
distcheck-release: distcheck
1828

    
1829
distrebuildcheck: dist
1830
	set -e; \
1831
	builddir=$$(mktemp -d $(abs_srcdir)/distrebuildcheck.XXXXXXX); \
1832
	trap "echo Removing $$builddir; cd $(abs_srcdir); rm -rf $$builddir" EXIT; \
1833
	cd $$builddir; \
1834
	tar xzf $(abs_srcdir)/$(distdir).tar.gz; \
1835
	cd $(distdir); \
1836
	./configure; \
1837
	$(MAKE) maintainer-clean; \
1838
	cp $(abs_srcdir)/vcs-version .; \
1839
	./configure; \
1840
	$(MAKE) $(AM_MAKEFLAGS)
1841

    
1842
dist-release: dist
1843
	set -e; \
1844
	for i in $(DIST_ARCHIVES); do \
1845
	  echo -n "Checking $$i ... "; \
1846
	  autotools/check-tar < $$i; \
1847
	  echo OK; \
1848
	done
1849

    
1850
install-exec-local:
1851
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
1852
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
1853
	  "$(DESTDIR)${localstatedir}/run/ganeti"
1854

    
1855
.PHONY: apidoc
1856
if WANT_HSAPIDOC
1857
apidoc: py-apidoc hs-apidoc
1858
else
1859
apidoc: py-apidoc
1860
endif
1861

    
1862
.PHONY: py-apidoc
1863
py-apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(GENERATED_FILES)
1864
	env - PATH="$$PATH" PYTHONPATH="$$PYTHONPATH" \
1865
	$(RUN_IN_TEMPDIR) epydoc -v \
1866
	  --conf $(CURDIR)/epydoc.conf \
1867
	  --output $(CURDIR)/$(APIDOC_PY_DIR)
1868

    
1869
.PHONY: hs-apidoc
1870
hs-apidoc: $(APIDOC_HS_DIR)/index.html
1871

    
1872
$(APIDOC_HS_DIR)/index.html: $(HS_LIBTESTBUILT_SRCS) Makefile
1873
	@test -n "$(HSCOLOUR)" || \
1874
	    { echo 'HsColour' not found during configure; exit 1; }
1875
	@test -n "$(HADDOCK)" || \
1876
	    { echo 'haddock' not found during configure; exit 1; }
1877
	rm -rf $(APIDOC_HS_DIR)/*
1878
	for i in $(ALL_APIDOC_HS_DIRS); do \
1879
	  @mkdir_p@ $$i; \
1880
	  $(HSCOLOUR) -print-css > $$i/hscolour.css; \
1881
	done
1882
	set -e ; \
1883
	export LC_ALL=en_US.UTF-8; \
1884
	OPTGHC="--optghc=-isrc --optghc=-itest/hs"; \
1885
	if [ "$(HS_PARALLEL3)" ]; \
1886
	then OPTGHC="$$OPTGHC --optghc=$(HS_PARALLEL3)"; \
1887
	fi; \
1888
	if [ "$(HS_REGEX_PCRE)" ]; \
1889
	then OPTGHC="$$OPTGHC --optghc=$(HS_REGEX_PCRE)"; \
1890
	fi; \
1891
	for file in $(HS_LIBTESTBUILT_SRCS); do \
1892
	  f_nosrc=$${file##src/}; \
1893
	  f_notst=$${f_nosrc##test/hs/}; \
1894
	  f_html=$${f_notst%%.hs}.html; \
1895
	  $(HSCOLOUR) -css -anchor $$file > $(APIDOC_HS_DIR)/$$f_html ; \
1896
	done ; \
1897
	$(HADDOCK) --odir $(APIDOC_HS_DIR) --html --ignore-all-exports -w \
1898
	  -t ganeti -p src/haddock-prologue \
1899
	  --source-module="%{MODULE/.//}.html" \
1900
	  --source-entity="%{MODULE/.//}.html#%{NAME}" \
1901
	  $$OPTGHC \
1902
	  $(HS_LIBTESTBUILT_SRCS)
1903

    
1904
.PHONY: TAGS
1905
TAGS: $(GENERATED_FILES)
1906
	rm -f TAGS
1907
	$(GHC) -e ":etags" -v0 \
1908
	  $(filter-out -O -Werror,$(HFLAGS)) \
1909
	  $(HS_PARALLEL3) $(HS_REGEX_PCRE) \
1910
	  $(HS_LIBTEST_SRCS)
1911
	find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
1912
	  -path './daemons/ganeti-*' -o -path './tools/*' -o \
1913
	  -path './qa/*.py' | \
1914
	  etags -l python -a -
1915

    
1916
.PHONY: coverage
1917
if WANT_HTOOLS
1918
coverage: py-coverage hs-coverage
1919
else
1920
coverage: py-coverage
1921
endif
1922

    
1923
.PHONY: py-coverage
1924
py-coverage: $(GENERATED_FILES) $(python_tests)
1925
	@test -n "$(PYCOVERAGE)" || \
1926
	    { echo 'python-coverage' not found during configure; exit 1; }
1927
	set -e; \
1928
	COVERAGE=$(PYCOVERAGE) \
1929
	COVERAGE_FILE=$(CURDIR)/$(COVERAGE_PY_DIR)/data \
1930
	TEXT_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR)/report.txt \
1931
	HTML_COVERAGE=$(CURDIR)/$(COVERAGE_PY_DIR) \
1932
	$(PLAIN_TESTS_ENVIRONMENT) \
1933
	$(abs_top_srcdir)/autotools/gen-py-coverage \
1934
	$(python_tests)
1935

    
1936
.PHONY: hs-coverage
1937
hs-coverage: $(haskell_tests) test/hs/hpc-htools test/hs/hpc-mon-collector
1938
	rm -f *.tix
1939
	$(MAKE) $(AM_MAKEFLAGS) hs-check
1940
	@mkdir_p@ $(COVERAGE_HS_DIR)
1941
	hpc sum --union $(HPCEXCL) \
1942
	  htest.tix hpc-htools.tix hpc-mon-collector.tix > coverage-hs.tix
1943
	hpc markup --destdir=$(COVERAGE_HS_DIR) coverage-hs.tix
1944
	hpc report coverage-hs.tix
1945
	$(LN_S) -f hpc_index.html $(COVERAGE_HS_DIR)/index.html
1946

    
1947
# Special "kind-of-QA" target for htools, needs special setup (all
1948
# tools compiled with -fhpc)
1949
.PHONY: live-test
1950
live-test: all
1951
	set -e ; \
1952
	cd src; \
1953
	rm -f .hpc; $(LN_S) ../.hpc .hpc; \
1954
	rm -f *.tix *.mix; \
1955
	./live-test.sh; \
1956
	hpc sum --union $(HPCEXCL) $(addsuffix .tix,$(HS_PROGS:src/%=%)) \
1957
	  --output=live-test.tix ; \
1958
	@mkdir_p@ ../$(COVERAGE_HS_DIR) ; \
1959
	hpc markup --destdir=../$(COVERAGE_HS_DIR) live-test \
1960
	  --srcdir=.. $(HPCEXCL) ; \
1961
	hpc report --srcdir=.. live-test $(HPCEXCL)
1962

    
1963
commit-check: distcheck lint apidoc
1964

    
1965
.PHONY: gitignore-check
1966
gitignore-check:
1967
	@if [ -n "`git status --short`" ]; then \
1968
	  echo "Git status is not clean!" 1>&2 ; \
1969
	  git status --short; \
1970
	  exit 1; \
1971
	fi
1972

    
1973
# target to rebuild all man pages (both groff and html output)
1974
.PHONY: man
1975
man: $(man_MANS) $(manhtml)
1976

    
1977
# Target that builds all binaries (including those that are not
1978
# rebuilt except when running the tests)
1979
.PHONY: really-all
1980
really-all: all $(check_SCRIPTS) $(haskell_tests) $(HS_ALL_PROGS)
1981

    
1982
# we don't need the ancient implicit rules:
1983
%: %,v
1984
%: RCS/%,v
1985
%: RCS/%
1986
%: s.%
1987
%: SCCS/s.%
1988

    
1989
-include ./Makefile.local
1990

    
1991
# vim: set noet :