U=http://trillian.mit.edu/~jc/music/book/24CountryDances/1785

all:  tunes install

tunes= [0-9]*.abc
tunes: tunes.abc tunes.ps tunes.pdf
tunes.abc: $(tunes)
	abcjoin +S $(tunes) >tunes.abc
tunes.ps: tunes.abc fmt/tunes.fmt
	jcabc2ps tunes.abc +k4 +x +Ffmt/tunes.fmt \
	|PShdr '' '' '' \
	|PSftr %D $U/ %D >tunes.ps
tunes.pdf: tunes.ps
	ps2pdf tunes.ps tunes.pdf

tunes.fmt: fmt/tunes.fmt
	ln -f fmt/tunes.fmt tunes.fmt

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

install: tunes.abc
	ln -f tunes.abc ../Cantelo_24AmericanCountryDances.abc
	ln -f tunes.abc ../../1785_Cantelo.abc
	ln -f tunes.abc ../../1785_Cantelo_24AmericanCountryDances.abc
	ln -f tunes.abc ../../../24AmericanCountryDances_1785_Cantelo.abc

