summaryrefslogtreecommitdiff
path: root/docs/Makefile.am
blob: 1c96bcaeb5b6a2b02b46a94d42275e0f53d63bf3 (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
NULL =
ASCIIDOC_FLAGS = -a icons -a toc

EXTRA_DIST =					\
	meson.build				\
	spice_for_newbies.html			\
	spice_for_newbies.txt			\
	spice_protocol.html			\
	spice_protocol.txt			\
	spice_style.html			\
	spice_style.txt				\
	spice_threading_model.html		\
	spice_threading_model.txt		\
	vd_interfaces.html			\
	vd_interfaces.txt			\
	images/newbies/g_cmd_flow.png		\
	images/newbies/g_sub.png		\
	images/newbies/cli_bsc_stc.png		\
	images/newbies/srv_stc.png		\
	images/newbies/a_cmd_flow.png		\
	$(NULL)

HTML_FILES = \
	spice_for_newbies.html \
	spice_protocol.html \
	spice_style.html \
	spice_threading_model.html \
	vd_interfaces.html \
	$(NULL)

if BUILD_MANUAL
SUBDIRS = manual

all-local: $(HTML_FILES)

%.html: %.txt
	$(AM_V_GEN) $(ASCIIDOC) -n $(ASCIIDOC_FLAGS) -o $@ $<
endif

clean-local:
	rm -f $(HTML_FILES)