diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2023-02-12 08:36:28 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2023-02-12 17:31:39 +0100 |
commit | 6e70bc905e002c63d1ca7356cdf749519318143b (patch) | |
tree | 0e66bed335cf38943f00eed4c8cbab10d8dd70ba /Makefile | |
parent | 9ae6f8a2bfbd9601c6a23c11d979474e515255f4 (diff) |
Use pdfjam instead of pdfnup
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,10 +33,10 @@ $(BUILDDIR)/%-a6.pdf: ${BUILDDIR}/%-a6.ps ps2pdf -sPAPERSIZE=a6 $< $@ $(BUILDDIR)/%-a5-nup2.pdf: $(BUILDDIR)/%-a5.pdf - pdfnup --nup 2x1 --landscape -o $@ $< '1,1' + pdfjam --nup 2x1 --landscape -o $@ $< '1,1' $(BUILDDIR)/%-a6-nup4.pdf: $(BUILDDIR)/%-a6.pdf - pdfnup --nup 2x2 --no-landscape -o $@ $< '1,1,1,1' + pdfjam --nup 2x2 --no-landscape -o $@ $< '1,1,1,1' $(BUILDDIR)/%-v.pdf: $(BUILDDIR)/%.pdf pdfjam --reflect true -o $@ $< |