mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-31 02:41:52 +00:00
It's much much easier to read and edit, and the end results looks better as well, see http://elmarco.fedorapeople.org/manual.html
20 lines
304 B
Makefile
20 lines
304 B
Makefile
NULL =
|
|
SUFFIXES = .html
|
|
ASCIIDOC_FLAGS = -a icons -a toc
|
|
|
|
EXTRA_DIST = \
|
|
docbook-xsl.css \
|
|
images/icons/*.png \
|
|
images/spicec01.png \
|
|
manual.html \
|
|
manual.txt \
|
|
$(NULL)
|
|
|
|
.txt.html:
|
|
$(AM_V_GEN) $(ASCIIDOC) $(ASCIIDOC_FLAGS) $<
|
|
|
|
all-local: manual.html
|
|
|
|
clean-local:
|
|
rm manual.html
|