File: Makefile.am

package info (click to toggle)
spice 0.16.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,460 kB
  • sloc: ansic: 43,305; cpp: 30,185; sh: 5,342; python: 3,040; makefile: 844
file content (41 lines) | stat: -rw-r--r-- 823 bytes parent folder | download | duplicates (4)
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)