mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2025-12-26 22:55:35 +00:00
The HTML file is not built by default. This fixes make distcheck in spice-gtk. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
18 lines
313 B
Makefile
18 lines
313 B
Makefile
NULL =
|
|
ASCIIDOC_FLAGS = -a icons -a toc
|
|
|
|
EXTRA_DIST = \
|
|
spice_protocol.txt \
|
|
$(NULL)
|
|
|
|
if BUILD_HTML_MANUAL
|
|
all-local: spice_protocol.html
|
|
|
|
spice_protocol.html: spice_protocol.txt
|
|
$(AM_V_GEN) $(ASCIIDOC) -n $(ASCIIDOC_FLAGS) -o $@ $<
|
|
endif
|
|
|
|
CLEANFILES = spice_protocol.html
|
|
|
|
-include $(top_srcdir)/git.mk
|