]> git.donarmstrong.com Git - lilypond.git/blobdiff - make/mutopia-rules.make
* Documentation/topdocs/NEWS.texi: Add note about info docs with
[lilypond.git] / make / mutopia-rules.make
index 2c82d19e3a92ddc77c1bab3ad98993429fd65501..af73902b9719b4b0042c182038be6465894e9b4f 100644 (file)
@@ -1,41 +1,40 @@
 
 
-$(outdir)/%.gif: $(outdir)/%.ps
-       sh $(buildscript-dir)/ps-to-gifs.sh $<
-       -mv $(name-stem)-page*.gif $(outdir)/
-       touch $@
-
 $(outdir)/%.png: $(outdir)/%.ps
-       sh $(buildscript-dir)/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)/%.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) $(script-dir)/abc2ly.py -o $@ $< 
+       $(PYTHON) $(ABC2LY) --strict -o $@ $< 
 
 $(outdir)/%.dvi: $(outdir)/%.ly
-       $(PYTHON) $(script-dir)/ly2dvi.py -o $(outdir) $< 
-       -mv $(basename $(<F))*.midi $(outdir)
+       $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< 
 
 # don't junk intermediate .dvi files.  They're easier to view than
-# .ps or .gif
+# .ps or .png
 .PRECIOUS: $(outdir)/%.dvi
 
 $(outdir)/%.dvi: %.ly
-       $(PYTHON) $(script-dir)/ly2dvi.py -o $(outdir)  $< 
-       -mv $(basename $<)*.midi $(outdir)
+       $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< 
+
+
+$(outdir)/%.pdf: $(outdir)/%.dvi
+       dvips $(DVIPS_FLAGS) -t $(DVIPS_PAPERSIZE) -o $@.pdfps $<
+       ps2pdf -sPAPERSIZE=$(DVIPS_PAPERSIZE) $@.pdfps $@
 
 $(outdir)-$(PAPERSIZE)/%.dvi: %.ly
-       $(PYTHON) $(script-dir)/ly2dvi.py -o $(outdir)-$(PAPERSIZE) -p $(PAPERSIZE) $< 
-       -mv $(basename $<)*.midi $(outdir)-$(PAPERSIZE)
+       $(PYTHON) $(LY2DVI) --output=$@ --dependencies --set=papersize=$(PAPERSIZE) $< 
+
 
-$(outdir)/%.dvi: %.fly
-       $(PYTHON) $(script-dir)/ly2dvi.py -o $(outdir)  $< 
-       -mv $(basename $<)*.midi $(outdir)