blob: 7b29db6cdf13f50586b1822b773f857b177a6db2 (
plain)
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
27
28
29
|
# Makefile for songbook.tex
FIGURES = fellow.pdf happyb.pdf twinkle.pdf
sample-songbook: sample-songbook.tex $(FIGURES)
pdflatex sample-songbook.tex; \
pdflatex sample-songbook.tex; \
pdflatex sample-songbook.tex
fellow.pdf: fellow.abc
abcm2ps -c -O= fellow.abc; \
ps2pdf fellow.ps; \
pdfcrop fellow.pdf; \
/bin/mv -f fellow-crop.pdf fellow.pdf
happyb.pdf: happyb.abc
abcm2ps -O= happyb.abc; \
ps2pdf happyb.ps; \
pdfcrop happyb.pdf; \
/bin/mv -f happyb-crop.pdf happyb.pdf
twinkle.pdf: twinkle.abc
abcm2ps -O= twinkle.abc; \
ps2pdf twinkle.ps; \
pdfcrop twinkle.pdf; \
/bin/mv -f twinkle-crop.pdf twinkle.pdf
clean:
/bin/rm -f .*~ *~ *aux *bak *lo? *to? *out *tmp *bbl *ps
|