$(outdir)/%.png: $(outdir)/%.ps gs -sDEVICE=pnggray -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -sOutputFile="$(name-stem)-page%d.png" -r90 -dNOPAUSE $< -c quit -mv $(name-stem)-page*.png $(outdir)/ rm -f $@ ln -s $(name-stem)-page1.png $@ $(outdir)/%.ly.txt: %.ly ln -f $< $@ $(outdir)/%.ly.txt: $(outdir)/%.ly cp -f $< $@ $(outdir)/%.ly.txt: %.abc #which file to show here -- abc seems more cute? ln -f $< $@ $(outdir)/%.ly: %.abc $(PYTHON) $(ABC2LY) --strict -o $@ $< $(outdir)/%.dvi: $(outdir)/%.ly $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< # don't junk intermediate .dvi files. They're easier to view than # .ps or .png .PRECIOUS: $(outdir)/%.dvi $(outdir)/%.dvi: %.ly $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< $(outdir)/%.pdf: $(outdir)/%.dvi dvips -u lilypond.map -o $@.pdfps -Ppdf $< ps2pdf $@.pdfps $@ $(outdir)-$(PAPERSIZE)/%.dvi: %.ly $(PYTHON) $(LY2DVI) --output=$@ --dependencies --set=papersize=$(PAPERSIZE) $<