mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 14:41:25 +00:00
https://gitlab.freedesktop.org/spice/spice-server/issues/10 Acked-by: Frediano Ziglio <fziglio@redhat.com>
30 lines
483 B
Makefile
30 lines
483 B
Makefile
NULL =
|
|
ASCIIDOC_FLAGS = -a icons -a toc
|
|
|
|
EXTRA_DIST = \
|
|
meson.build \
|
|
spice_style.html \
|
|
spice_style.txt \
|
|
spice_threading_model.html \
|
|
spice_threading_model.txt \
|
|
vd_interfaces.txt \
|
|
$(NULL)
|
|
|
|
HTML_FILES = \
|
|
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)
|