forked from mzucker/noteshrink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
26 lines (20 loc) · 911 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
all: example_output/notesA.pdf \
example_output/notesB.pdf \
example_output/tree.pdf \
example_output/graph-paper-ink-only.pdf
example_output/notesA.pdf: examples/notesA1.jpg examples/notesA2.jpg
mkdir -p example_output && \
cd example_output && \
../noteshrink.py -O -g -w -s 20 -v 30 -o notesA.pdf ../examples/notesA*.jpg
example_output/notesB.pdf: examples/notesB1.jpg examples/notesB2.jpg
mkdir -p example_output && \
cd example_output && \
../noteshrink.py -O -g -w -s 4.5 -v 30 -o notesB.pdf ../examples/notesB*.jpg
example_output/tree.pdf: examples/tree.jpg
mkdir -p example_output && \
cd example_output && \
../noteshrink.py -O -w -o tree.pdf ../examples/tree.jpg
example_output/graph-paper-ink-only.pdf: examples/graph-paper-ink-only.jpg
mkdir -p example_output && \
cd example_output && \
../noteshrink.py -O -v 5 -o graph-paper-ink-only.pdf ../examples/graph-paper-ink-only.jpg