You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
350 B
18 lines
350 B
|
|
.PHONY: pdf
|
|
|
|
help:
|
|
@echo "Please use \`make <target>' where <target> is one of"
|
|
@echo " pdf to make standalone PDF files"
|
|
|
|
clean:
|
|
rm -rf $(BUILDDIR)/*
|
|
|
|
pdf:
|
|
asciidoctor-pdf \
|
|
-r asciidoctor-bibtex \
|
|
-a pdf-themesdir=resources/themes \
|
|
-a pdf-theme=book.yml \
|
|
-a pdf-fontsdir="resources/fonts" \
|
|
source/main.adoc -t \
|
|
--trace
|
|
|