spice/docs/Makefile.am
Victor Toso 7f1481dce6 docs: update Makefile to match meson dist
Sort the files names in alphabetic order and include the .html
version for spice_for_newbies and spice_protocol

Signed-off-by: Victor Toso <victortoso@redhat.com>
Acked-by: Frediano Ziglio <fziglio@redhat.com>
2019-10-14 13:49:18 +01:00

42 lines
823 B
Makefile

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)