#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# Makefile for the Thomas Wilson & Willian Harmony "Four New Country  Dances" #
# flyer, published in 1812. The format was a single sheet of paper, folded in #
# half to make 2 pages, each with 2 tunes and two dances.  This  Makefile  is #
# set  up  to  test  the  tunes+dances  against  two different ABC formatting #
# programs.  But in this case, there are no "advanced" features in the music, #
# and all 4 tunes should work with any ABC software.                          #
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
U=http://trillian.mit.edu/~jc/music/book/Wilson_Harmony/4NCD/
a2p=jcabc2ps

all: 4NCD_1812 install

4NCD_1812: 4NCD_1812_V1 4NCD_1812_V2

# Format using jcabc2ps (no overlays):
4NCD_1812_V1: 4NCD_1812_V1.abc 4NCD_1812_V1.ps 4NCD_1812_V1.pdf
4NCD_1812_V1= [0-9][-_]*.abc
4NCD_1812_V1.abc: $(4NCD_1812_V1)
	abcjoin +C +S2 $(4NCD_1812_V1) >4NCD_1812_V1.abc
4NCD_1812_V1.ps: 4NCD_1812_V1.abc fmt/4NCD_1812_V1.fmt
	jcabc2ps +k2 +Ffmt/4NCD_1812_V1.fmt +n +x 4NCD_1812_V1.abc \
	|PShdr %P "Skillon & Challoner's Popular Country Dances" %P \
	|PSftr %D $U/ %D >4NCD_1812_V1.ps
4NCD_1812_V1.pdf: 4NCD_1812_V1.ps
	ps2pdf 4NCD_1812_V1.ps 4NCD_1812_V1.pdf

# Format using abcm2ps (may use overlays):
4NCD_1812_V2: 4NCD_1812_V2.abc 4NCD_1812_V2.ps 4NCD_1812_V2.pdf
4NCD_1812_V2= [0-9][=_]*.abc
4NCD_1812_V2.abc: $(4NCD_1812_V2)
	abcjoin +C +S2 $(4NCD_1812_V2) >4NCD_1812_V2.abc
4NCD_1812_V2.ps: 4NCD_1812_V2.abc fmt/4NCD_1812_V2.fmt
	abcm2ps -x -j 4 -F fmt/4NCD_1812_V2.fmt 4NCD_1812_V2.abc -O tmp.ps
	PShdr <tmp.ps %P "Skillon & Challoner's Popular Country Dances" %P \
	|PSftr %D $U/ %D >4NCD_1812_V2.ps
	rm tmp.ps
4NCD_1812_V2.pdf: 4NCD_1812_V2.ps
	ps2pdf 4NCD_1812_V2.ps 4NCD_1812_V2.pdf

neat:         ; /bin/rm -f *- *.bak
clean:    neat; /bin/rm -f *.ps *.pdf
clobber: clean; /bin/rm -f 4NCD_1812_V*.abc

install: ../4NCD_1812_V1.abc ../../Wilson_Harmony_4NCD_1812_V1.abc \
	     ../4NCD_1812_V2.abc ../../Wilson_Harmony_4NCD_1812_V2.abc
../4NCD_1812_V1.abc: 4NCD_1812_V1.abc
	ln -f 4NCD_1812_V1.abc ../4NCD_1812_V1.abc
../../Wilson_Harmony_4NCD_1812_V1.abc: 4NCD_1812_V1.abc
	ln -f 4NCD_1812_V1.abc ../../Wilson_Harmony_4NCD_1812_V1.abc
../4NCD_1812_V2.abc: 4NCD_1812_V2.abc
	ln -f 4NCD_1812_V2.abc ../4NCD_1812_V2.abc
../../Wilson_Harmony_4NCD_1812_V2.abc: 4NCD_1812_V2.abc
	ln -f 4NCD_1812_V2.abc ../../Wilson_Harmony_4NCD_1812_V2.abc
