diff options
Diffstat (limited to 'geo/Makefile')
-rw-r--r-- | geo/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/geo/Makefile b/geo/Makefile new file mode 100644 index 0000000..e374d5d --- /dev/null +++ b/geo/Makefile @@ -0,0 +1,9 @@ +SHELL := /bin/bash +.PHONY: clean default +default: zse.min.pdf zse.min2.pdf +%.min.pdf: %.pdf + pdfjam $< --nup 3x2 --landscape --outfile $@ --no-tidy +%.min2.pdf: %.pdf + pdfjam $< --nup 4x3 --landscape --offset '0in -1in' --outfile $@ --no-tidy +clean: + rm -rf *.min.pdf *.min2.pdf |