]> git.donarmstrong.com Git - lilypond.git/blobdiff - make/mutopia-rules.make
($(addprefix $(outdir)/,$(LYM4_FILES):
[lilypond.git] / make / mutopia-rules.make
index f2328cb16a427856c305864c689f721a2d60a576..8c51c6f19778ba47c616e52d3aba7a0c5f8fb407 100644 (file)
@@ -1,38 +1,31 @@
 
 
-$(outdir)/%.gif: $(outdir)/%.ps
-       sh $(PS_TO_GIFS) $<
-       -mv $(name-stem)-page*.gif $(outdir)/
-#      touch $@
-       ln -s $(outdir)/$(name-stem)-page1.gif $@
-
 $(outdir)/%.png: $(outdir)/%.ps
-       sh $(PS_TO_PNGS) $<
+       gs -sDEVICE=pnggray -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -sOutputFile="$(name-stem)-page%d.png" -r90 -dNOPAUSE $< -c quit
        -mv $(name-stem)-page*.png $(outdir)/
-#      touch $@
-       ln -s $(outdir)/$(name-stem)-page1.png $@
+       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) -o $@ $< 
-
-$(outdir)/%.dvi: $(outdir)/%.ly
-       $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< 
+       $(PYTHON) $(ABC2LY) --strict -o $@ $< 
 
-# don't junk intermediate .dvi files.  They're easier to view than
-# .ps or .png
-.PRECIOUS: $(outdir)/%.dvi
+$(outdir)/%.ps: $(outdir)/%.ly
+       $(PYTHON) $(LY2DVI) --output=$@ $<  
 
-$(outdir)/%.dvi: %.ly
-       $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< 
+$(outdir)/%.ps: %.ly
+       $(PYTHON) $(LY2DVI) --output=$@ $<  
 
-$(outdir)-$(PAPERSIZE)/%.dvi: %.ly
-       $(PYTHON) $(LY2DVI) --output=$@ --dependencies --set=papersize=$(PAPERSIZE) $< 
+$(outdir)/%.pdf: $(outdir)/%.ps
+       ps2pdf -sPAPERSIZE=a4 $< $@