mini-boards/Makefile

13 lines
248 B
Makefile
Raw Permalink Normal View History

2024-10-14 12:27:33 +00:00
%_Both.pdf: %_Mask.pdf %_Cu.pdf
2024-10-12 13:14:56 +00:00
pdftk ${^} cat output ${@}
%_90.pdf: %_Both.pdf
pdftk ${<} cat 1-endeast output ${@}
2024-10-14 12:27:33 +00:00
%_nup.pdf: %_90.pdf
pdfjam ${<} --nup 2x1 --landscape --outfile ${@}
2024-10-12 13:14:56 +00:00
%.pdf: %_nup.pdf
2024-10-14 12:27:33 +00:00
pdftk ${<} cat 1-endwest output ${@}
2024-10-12 13:14:56 +00:00