lilypond-1.3.138
[lilypond.git] / make / mutopia-rules.make
bloba901a3be97e2e1ac2d72aa22cbf8035d785fdec4
3 $(outdir)/%.gif: $(outdir)/%.ps
4 sh $(PS_TO_GIFS) $<
5 -mv $(name-stem)-page*.gif $(outdir)/
6 touch $@
8 $(outdir)/%.png: $(outdir)/%.ps
9 sh $(PS_TO_PNGS) $<
10 -mv $(name-stem)-page*.png $(outdir)/
11 touch $@
13 $(outdir)/%.ly.txt: %.ly
14 ln -f $< $@
16 $(outdir)/%.ly.txt: %.abc
17 #which file to show here -- abc seems more cute?
18 ln -f $< $@
20 $(outdir)/%.ly: %.abc
21 $(PYTHON) $(ABC2LY) -o $@ $<
23 $(outdir)/%.dvi: $(outdir)/%.ly
24 $(PYTHON) $(LY2DVI) --outdir=$(outdir) --dependencies $<
26 # don't junk intermediate .dvi files. They're easier to view than
27 # .ps or .png
28 .PRECIOUS: $(outdir)/%.dvi
30 $(outdir)/%.dvi: %.ly
31 $(PYTHON) $(LY2DVI) --outdir=$(outdir) --dependencies $<
33 $(outdir)-$(PAPERSIZE)/%.dvi: %.ly
34 $(PYTHON) $(LY2DVI) --outdir=$(outdir)-$(PAPERSIZE) --dependencies --set=papersize=$(PAPERSIZE) $<