makefile 911 B

123456789101112131415161718192021222324252627
  1. all: example_output/notesA.pdf \
  2. example_output/notesB.pdf \
  3. example_output/tree.pdf \
  4. example_output/graph-paper-ink-only.pdf
  5. example_output/notesA.pdf: examples/notesA1.jpg examples/notesA2.jpg
  6. mkdir -p example_output && \
  7. cd example_output && \
  8. ../noteshrink.py -O -g -w -s 20 -v 30 -o notesA.pdf ../examples/notesA*.jpg
  9. example_output/notesB.pdf: examples/notesB1.jpg examples/notesB2.jpg
  10. mkdir -p example_output && \
  11. cd example_output && \
  12. ../noteshrink.py -O -g -w -s 4.5 -v 30 -o notesB.pdf ../examples/notesB*.jpg
  13. example_output/tree.pdf: examples/tree.jpg
  14. mkdir -p example_output && \
  15. cd example_output && \
  16. ../noteshrink.py -O -w -o tree.pdf ../examples/tree.jpg
  17. example_output/graph-paper-ink-only.pdf: examples/graph-paper-ink-only.jpg
  18. mkdir -p example_output && \
  19. cd example_output && \
  20. ../noteshrink.py -O -v 5 -o graph-paper-ink-only.pdf ../examples/graph-paper-ink-only.jpg