# Makefile for HMS docs from AsciiDoctor format # To HTML and PDF SRC = $(wildcard *.adoc) PDF = $(SRC:.adoc=.pdf) build: $(SRC) asciidoctor-pdf -a pdf-themesdir=themes -a pdf-theme=basic $^ asciidoctor $^ .PHONY: clean clean: rm -f $(PDF)