From: Ian Jackson Date: Wed, 20 Sep 2023 17:47:42 +0000 (+0100) Subject: fix build system X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ijackson/git?a=commitdiff_plain;h=f4ff4b67134151b63981eea9a02a774dc9730bbc;p=the-pointy-bits.git fix build system --- diff --git a/.gitignore b/.gitignore index 5c2f0a1..a136337 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ *.pdf -*.ps diff --git a/Makefile b/Makefile index 935eec9..00cf5fc 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,11 @@ i= mv .tmp.$@ $@ +SHELL=/bin/bash + CHARACTERS=kennocht fabricia all: $(addsuffix .pdf, $(CHARACTERS)) \ - $(addsuffix .ps, $(CHARACTERS)) \ - -%.pdf: %.md - pandoc -Vmargin-{left,right}=1.5cm -t latex -o .tmp.$@ $< && $i -%.ps: %.pdf - pdftops $< .tmp.$@ && $i +%.pdf: %.md Makefile + pandoc -Vmargin-{top,left,right,bottom}=20mm -t latex -o .tmp.$@ $< && $i