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