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