mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 06:32:44 +00:00
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>
42 lines
823 B
Makefile
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)
|