#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# This is the Makefile for music from the book "Social  Dances  2002  by  Roy #
# Goldring" AKA the "Leeds RSCDS 40th Anniversary Book".                      #
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
U=http://trillian.mit.edu/~jc/music/book/SCD/SocialDances2002

all: SocialDances2002 install

# Social Dances 2002 Collection
SocialDances2002: SocialDances2002.abc SocialDances2002.ps SocialDances2002.pdf
SocialDances2002= T[0-9][0-9]*.abc
SocialDances2002.abc: $(SocialDances2002)
	abcjoin +C +S2 $(SocialDances2002) >SocialDances2002.abc
SocialDances2002.ps: SocialDances2002.abc fmt/SocialDances2002.fmt
	jcabc2ps +n +x +F fmt/SocialDances2002 SocialDances2002.abc  \
	|PShdr %P 'Social Dances 2002 by Roy Goldring' %P \
	|PSftr %D $U/ %D >SocialDances2002.ps
SocialDances2002.pdf: SocialDances2002.ps
	ps2pdf SocialDances2002.ps SocialDances2002.pdf

install:  ../SocialDances2002.abc ../../SocialDances2002.abc
../SocialDances2002.abc: SocialDances2002.abc; ln -f SocialDances2002.abc ../SocialDances2002.abc
../../SocialDances2002.abc: SocialDances2002.abc; ln -f SocialDances2002.abc ../../SocialDances2002.abc

neat: ; /bin/rm -f *-
clean: neat; /bin/rm -f *.ps *.pdf
clobber: clean; /bin/rm -rf proto.* img
