From 7ed639e2db6b1d04e8c5d6156f74706918914a71 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 8 Feb 2020 11:10:27 +0200 Subject: Add: Makefile for building subplot --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dff9ea3 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +subplots = worker.md + +pdfs = $(subplots:.md=.pdf) + +all: $(pdfs) + +.SUFFIXES: .md .pdf + +.md.pdf: + sp-docgen -o "$@" "$<" -- cgit v1.2.1