# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #

.SUFFIXES:
.SUFFIXES: .ABC .abc .ps .PS
#abc.ps: $*.abc; abc2ps $*.abc -O $*
.abc.ps: $*.abc; abc2ps -n    $*.abc -o ; mv Out.ps $*.ps
.ABC.PS: $*.ABC; abc2ps -n -p $*.ABC -o ; mv Out.ps $*.PS
.abc.PS: $*.abc; abc2ps -n -p $*.abc -o ; mv Out.ps $*.PS

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #

all: JuneApple.ps

neat:
clean: neat
	rm -f *.out *.ps *.PS new.*
clobber: clean
	rm -f core

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# MEDLEYS, using jc's abcmedley program.

medleys:

m3=_1.abc _2.abc _3.abc
m3: m3.ps
m3.ps: m3.abc $(m3)
	abcmedley "Title" $(m3) >Out.abc
	abc2ps -n -p Out.abc -o
	mv Out.ps m3.ps
