mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 14:41:25 +00:00
The conversion try keeps the content as is no matter if updated or not. Asciidoc format is already used for manual. Using a text format make easier to see git diff and send patches. Also it's easier to convert to different format and copy to web pages. Related: https://bugs.freedesktop.org/show_bug.cgi?id=95258 Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Pavel Grunt <pgrunt@redhat.com>
20 lines
310 B
Makefile
20 lines
310 B
Makefile
NULL =
|
|
ASCIIDOC_FLAGS = -a icons -a toc
|
|
|
|
EXTRA_DIST = \
|
|
spice_style.html \
|
|
spice_style.txt \
|
|
$(NULL)
|
|
|
|
if BUILD_MANUAL
|
|
SUBDIRS = manual
|
|
|
|
all-local: spice_style.html
|
|
|
|
spice_style.html: spice_style.txt
|
|
$(AM_V_GEN) $(ASCIIDOC) -n $(ASCIIDOC_FLAGS) -o $@ $<
|
|
endif
|
|
|
|
clean-local:
|
|
rm -f spice_style.html
|