mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2025-12-25 21:19:07 +00:00
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
28 lines
437 B
Makefile
28 lines
437 B
Makefile
NULL =
|
|
CLEANFILES =
|
|
|
|
ASCIIDOC_FILES = \
|
|
spice_protocol.txt \
|
|
spice_uri_scheme.txt \
|
|
$(NULL)
|
|
|
|
ASCIIDOC_FLAGS = -n -a icons -a toc
|
|
|
|
EXTRA_DIST = \
|
|
$(ASCIIDOC_FILES) \
|
|
meson.build \
|
|
$(NULL)
|
|
|
|
if BUILD_HTML_MANUAL
|
|
ASCIIDOC_HTML = $(ASCIIDOC_FILES:.txt=.html)
|
|
|
|
CLEANFILES += $(ASCIIDOC_HTML)
|
|
|
|
all-local: $(ASCIIDOC_HTML)
|
|
|
|
.txt.html:
|
|
$(AM_V_GEN)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -o $@ $<
|
|
endif
|
|
|
|
-include $(top_srcdir)/git.mk
|