]> git.donarmstrong.com Git - lilypond.git/blobdiff - make/mutopia-rules.make
patch::: 1.4.1.jcn3
[lilypond.git] / make / mutopia-rules.make
index a901a3be97e2e1ac2d72aa22cbf8035d785fdec4..d75f9197f257675323f5b4f5f07617a2b9022533 100644 (file)
@@ -3,16 +3,19 @@
 $(outdir)/%.gif: $(outdir)/%.ps
        sh $(PS_TO_GIFS) $<
        -mv $(name-stem)-page*.gif $(outdir)/
-       touch $@
+       ln -s $(name-stem)-page1.gif $@
 
 $(outdir)/%.png: $(outdir)/%.ps
        sh $(PS_TO_PNGS) $<
        -mv $(name-stem)-page*.png $(outdir)/
-       touch $@
+       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 $< $@
@@ -21,15 +24,16 @@ $(outdir)/%.ly: %.abc
        $(PYTHON) $(ABC2LY) -o $@ $< 
 
 $(outdir)/%.dvi: $(outdir)/%.ly
-       $(PYTHON) $(LY2DVI) --outdir=$(outdir) --dependencies $< 
+       $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< 
 
 # don't junk intermediate .dvi files.  They're easier to view than
 # .ps or .png
 .PRECIOUS: $(outdir)/%.dvi
 
 $(outdir)/%.dvi: %.ly
-       $(PYTHON) $(LY2DVI) --outdir=$(outdir) --dependencies $< 
+       $(PYTHON) $(LY2DVI) --output=$@ --dependencies $< 
 
 $(outdir)-$(PAPERSIZE)/%.dvi: %.ly
-       $(PYTHON) $(LY2DVI) --outdir=$(outdir)-$(PAPERSIZE) --dependencies --set=papersize=$(PAPERSIZE) $< 
+       $(PYTHON) $(LY2DVI) --output=$@ --dependencies --set=papersize=$(PAPERSIZE) $< 
+