#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# This is the Makefile for the book "Celebrate Fifty Years  of  Dancing  with #
# the  Boston  Branch  RSCDS" This directory contains only the music, not the #
# dance descriptions.                                                         #
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
U=http://trillian.mit.edu/~jc/music/book/SCD/BB50

all: BB50 install

# BB50 Collection
BB50: BB50.abc BB50.ps BB50.pdf
BB50= [0-9][0-9][0-9]_*.abc
BB50.abc: $(BB50)
	abcjoin +S2 $(BB50) >BB50.abc
BB50.ps: BB50.abc fmt/BB50.fmt
	jcabc2ps +n +x +F fmt/BB50 BB50.abc  \
	|PShdr %P 'Celebrate Fifty Years of Dancing with the Boston Branch RSCDS' %P \
	|PSftr %D $U/ %D >BB50.ps
BB50.pdf: BB50.ps
	ps2pdf BB50.ps BB50.pdf

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

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