blob: e374d5d81ac2865ada37a714a3bb7c9cdcd9c47e (
plain) (
tree)
|
|
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
|