LILY=/Applications/LilyPond.app/Contents/Resources/bin/lilypond

# Peace on Earth/Little Drummer Boy mashup, Bowie/Crosby.

.PHONY: all clean tidy

all: score.pdf scorenoly.pdf duo.pdf duet.pdf book.pdf

clean:
	rm -f *.pdf *.ps

tidy:
	rm -f *~ *.ps

# Everything, in concert pitch.
score.pdf: score.ly title.ly notes.ly
	$(LILY) score.ly

# Everything, in concert pitch.  No lyrics.  (Better note spacing?)
scorenoly.pdf: scorenoly.ly title.ly notes.ly
	$(LILY) scorenoly.ly

# Trumpet/Baritone (or trombone).
duo.pdf: duo.ly title.ly notes.ly
	$(LILY) duo.ly

# Trumpets.
duet.pdf: duet.ly title.ly notes.ly
	$(LILY) duet.ly

# Score book, on 11x17 paper.  With photo cover page and tpt/tbn tpt/tpt pages.
# Manually ordered into a 2-sheet (double-sided 11x17) 8-page book signature.
# Uses the commercial (free trial version) Coherent PDF tool.
# Print using: 11x17 (tabloid, B) paper, double-sided, short-edge binding.
book.pdf: score.pdf duo.pdf duet.pdf
	cpdf -split score.pdf -o score%.pdf
	cpdf duet.pdf crosbow.covr score1.pdf duo.pdf \
		score5.pdf score2.pdf score3.pdf score4.pdf \
		AND -twoup-stack -o book.pdf
	rm -f score?.pdf
