aboutsummaryrefslogtreecommitdiff
blob: b18c5ebabf48d497ce13467cbcc395ee166fd33d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
SUBDIRS = examples rootfs
DIST_SUBDIRS = examples rootfs

EXTRA_DIST = \
	FAQ.txt \
	$(man_MANS)

if ENABLE_DOCBOOK
man_MANS = \
	lxc-create.1 \
	lxc-destroy.1 \
	lxc-execute.1 \
	lxc-start.1 \
	lxc-stop.1 \
	lxc-checkpoint.1 \
	lxc-restart.1 \
	lxc-console.1 \
	lxc-freeze.1 \
	lxc-unfreeze.1 \
	lxc-monitor.1 \
	lxc-wait.1 \
	lxc-ls.1 \
	lxc-ps.1 \
	lxc-cgroup.1 \
	lxc-kill.1 \
	lxc-attach.1 \
	\
	lxc.conf.5 \
	\
	lxc.7


%.1 : %.sgml 
	docbook2man -w all $<

%.5 : %.sgml 
	docbook2man -w all $<

%.7 : %.sgml 
	docbook2man -w all $<

lxc-%.sgml : common_options.sgml see_also.sgml

maintainer-clean-local:
	$(RM) manpage.* *.7 *.5 *.1 $(man_MANS)
endif