]> git.donarmstrong.com Git - lilypond.git/blob - make/mutopia-rules.make
patch::: 1.4.1.jcn2
[lilypond.git] / make / mutopia-rules.make
1
2
3 $(outdir)/%.gif: $(outdir)/%.ps
4         sh $(PS_TO_GIFS) $<
5         -mv $(name-stem)-page*.gif $(outdir)/
6         ln -s $(name-stem)-page1.gif $@
7
8 $(outdir)/%.png: $(outdir)/%.ps
9         sh $(PS_TO_PNGS) $<
10         -mv $(name-stem)-page*.png $(outdir)/
11         ln -s $(name-stem)-page1.png $@
12
13 $(outdir)/%.ly.txt: %.ly
14         ln -f $< $@
15
16 $(outdir)/%.ly.txt: %.abc
17 #which file to show here -- abc seems more cute?
18         ln -f $< $@
19
20 $(outdir)/%.ly: %.abc
21         $(PYTHON) $(ABC2LY) -o $@ $< 
22
23 $(outdir)/%.dvi: $(outdir)/%.ly
24         $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< 
25
26 # don't junk intermediate .dvi files.  They're easier to view than
27 # .ps or .png
28 .PRECIOUS: $(outdir)/%.dvi
29
30 $(outdir)/%.dvi: %.ly
31         $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< 
32
33 $(outdir)-$(PAPERSIZE)/%.dvi: %.ly
34         $(PYTHON) $(LY2DVI) --output=$@ --dependencies --set=papersize=$(PAPERSIZE) $< 
35
36