SHELL := /bin/bash .PHONY: clean default default: zse.min.pdf zse.min2.pdf test3.min.pdf test3.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