]> git.donarmstrong.com Git - lilypond.git/blobdiff - make/mutopia-rules.make
($(outdir)-$(PAPERSIZE)/%.dvi): incude
[lilypond.git] / make / mutopia-rules.make
index 23887b901c61acb09e03c518de03ad14ffaabf27..8a243f1c17e4a71899cbbbd3af7485f3f89f4d15 100644 (file)
@@ -1,31 +1,40 @@
 
 
-$(outdir)/%.gif: $(outdir)/%.ps
-       sh $(buildscripts)/ps-to-gifs.sh $<
-       -mv $(name-stem)-page*.gif $(outdir)/
-       touch $@
-
 $(outdir)/%.png: $(outdir)/%.ps
-       sh $(buildscripts)/ps-to-pngs.sh $<
+       gs -sDEVICE=pnggray -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -sOutputFile="$(name-stem)-page%d.png" -r90 -dNOPAUSE $< -c quit
        -mv $(name-stem)-page*.png $(outdir)/
-       touch $@
+       rm -f $@
+       ln -s $(name-stem)-page1.png $@
 
 $(outdir)/%.ly.txt: %.ly
        ln -f $< $@
 
-$(outdir)/%.fly.txt: %.fly
+$(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=$@ $<  
 
 # don't junk intermediate .dvi files.  They're easier to view than
-# .ps or .gif
+# .ps or .png
 .PRECIOUS: $(outdir)/%.dvi
 
 $(outdir)/%.dvi: %.ly
-       sh $(depth)/scripts/ly2dvi.sh -S $(topdir) -o $(outdir)  $< 
-       -mv $(basename $<).midi $(outdir)
+       $(PYTHON) $(LY2DVI) --output=$@ $< 
+
+
+$(outdir)/%.pdf: $(outdir)/%.dvi
+       dvips $(DVIPS_FLAGS) -t $(DVIPS_PAPERSIZE) -o $@.pdfps $<
+       ps2pdf -sPAPERSIZE=$(DVIPS_PAPERSIZE) $@.pdfps $@
+
+$(outdir)-$(PAPERSIZE)/%.dvi: %.ly
+       $(PYTHON) $(LY2DVI) --output=$@ --set=papersize=$(PAPERSIZE) $< 
+
 
-$(outdir)/%.dvi: %.fly
-       sh $(depth)/scripts/ly2dvi.sh -S $(topdir) -o $(outdir)  $< 
-       -mv $(basename $<).midi $(outdir)