freedoom/manual/Makefile

12 lines
344 B
Makefile
Raw Normal View History

ASCIIDOCTOR_FLAGS = -a toc -a pdf-page-size=A5
all: freedoom-manual.pdf freedoom-manual-es.pdf
2019-08-18 15:50:31 -07:00
freedoom-manual.pdf: manual.adoc
-asciidoctor-pdf $(ASCIIDOCTOR_FLAGS) manual.adoc -o $@
2019-08-18 15:50:31 -07:00
freedoom-manual-es.pdf: manual-es.adoc
2022-06-12 21:01:28 -07:00
-asciidoctor-pdf $(ASCIIDOCTOR_FLAGS) manual-es.adoc -o $@
clean:
$(RM) freedoom-manual.pdf freedoom-manual-es.pdf