diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2021-12-13 22:51:34 +0100 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2021-12-13 22:51:34 +0100 |
commit | 18cd117d1b6a499355b0f2ee17f973fd722b959d (patch) | |
tree | 424942777c664242d52389426af1716b975fdb16 /geo/Makefile | |
parent | test 2 matematika (diff) | |
download | sola-gimb-3-18cd117d1b6a499355b0f2ee17f973fd722b959d.tar sola-gimb-3-18cd117d1b6a499355b0f2ee17f973fd722b959d.tar.gz sola-gimb-3-18cd117d1b6a499355b0f2ee17f973fd722b959d.tar.bz2 sola-gimb-3-18cd117d1b6a499355b0f2ee17f973fd722b959d.tar.lz sola-gimb-3-18cd117d1b6a499355b0f2ee17f973fd722b959d.tar.xz sola-gimb-3-18cd117d1b6a499355b0f2ee17f973fd722b959d.tar.zst sola-gimb-3-18cd117d1b6a499355b0f2ee17f973fd722b959d.zip |
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 |