]> git.donarmstrong.com Git - lilypond.git/blobdiff - make/mutopia-rules.make
* stepmake/stepmake/*:
[lilypond.git] / make / mutopia-rules.make
index a901a3be97e2e1ac2d72aa22cbf8035d785fdec4..934b9464e09d1083853a44e725ca40681504f2ef 100644 (file)
@@ -1,35 +1,24 @@
 
 
-$(outdir)/%.gif: $(outdir)/%.ps
-       sh $(PS_TO_GIFS) $<
-       -mv $(name-stem)-page*.gif $(outdir)/
-       touch $@
-
-$(outdir)/%.png: $(outdir)/%.ps
-       sh $(PS_TO_PNGS) $<
-       -mv $(name-stem)-page*.png $(outdir)/
-       touch $@
-
 $(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) --outdir=$(outdir) --dependencies $< 
+       $(PYTHON) $(ABC2LY) --strict -o $@ $< 
 
-# don't junk intermediate .dvi files.  They're easier to view than
-# .ps or .png
-.PRECIOUS: $(outdir)/%.dvi
+# hmm. notdir builds src-dir builds? 
+$(outdir)/%.png $(outdir)/%.pdf $(outdir)/%.ly $(outdir)/%.ps: $(outdir)/%.ly
+       cd $(outdir); $(LILYPOND) --pdf --png -danti-alias-factor=2 -ddelete-intermediate-files -dno-point-and-click -I $(shell pwd)/ $(notdir $<)
+       touch $(outdir)/$(basename $(notdir $<)).png
 
-$(outdir)/%.dvi: %.ly
-       $(PYTHON) $(LY2DVI) --outdir=$(outdir) --dependencies $< 
+$(outdir)/%.ly: %.ly
+       cp $< $@ 
 
-$(outdir)-$(PAPERSIZE)/%.dvi: %.ly
-       $(PYTHON) $(LY2DVI) --outdir=$(outdir)-$(PAPERSIZE) --dependencies --set=papersize=$(PAPERSIZE) $<