spice/docs/Makefile.am
2019-05-31 15:01:54 +01:00

32 lines
530 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 \
spice_protocol.txt \
$(NULL)
HTML_FILES = \
spice_style.html \
spice_threading_model.html \
vd_interfaces.html \
spice_protocol.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)