spice/docs/Makefile.am
Frediano Ziglio dab09ad66b build: Clean a generated file
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
2019-03-26 15:47:44 +00:00

23 lines
423 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 \
$(NULL)
if BUILD_MANUAL
SUBDIRS = manual
all-local: spice_style.html spice_threading_model.html
%.html: %.txt
$(AM_V_GEN) $(ASCIIDOC) -n $(ASCIIDOC_FLAGS) -o $@ $<
endif
clean-local:
rm -f spice_style.html spice_threading_model.html