]> git.donarmstrong.com Git - lilypond.git/commitdiff
Revert "Doc: add general.pdf to pdf build."
authorGraham Percival <graham@percival-music.ca>
Sun, 16 Aug 2009 09:38:12 +0000 (02:38 -0700)
committerGraham Percival <graham@percival-music.ca>
Sun, 16 Aug 2009 09:39:49 +0000 (02:39 -0700)
This reverts commit 790824854dee18fcfdeed3a5299af5d69ad426c4.
I discovered the real reason: if you have a multi-arg macro, you
*must* fill all args when using the TeX backend.  This doesn't
apply to info and html, growl.  Sometimes I maoing hate texinfo.

Documentation/GNUmakefile
Documentation/common-macros.itexi

index 0384e4c64a3687aabd3aab90eb13cf655d8ce543..36e3d437920c15c104a485975b3139ec874da324 100644 (file)
@@ -53,7 +53,7 @@ OUT_TEXINFO_MANUALS = $(TEXINFO_MANUALS:%=$(outdir)/%.texi)
 # of the NR
 TEXI_FILES_FROM_TELY = $(outdir)/internals.texi
 
-PDF_FILES = $(TEXINFO_MANUALS:%=$(outdir)/%.pdf)
+PDF_FILES = $(subst $(outdir)/general.pdf,,$(TEXINFO_MANUALS:%=$(outdir)/%.pdf))
 
 UNSPLITTED_HTML_MANUALS = changes
 SPLITTED_HTML_MANUALS = $(foreach manual, $(TEXINFO_MANUALS),\
index b9113835d8ab3d22a3079d51b990473ab65acb06..a852227bcfabb64093bf5232803f8000242a0a57 100644 (file)
 @c already generates proper @image commands for images of music; these
 @c macro definitions do the same for other images.
 
-@c can't scale images in tex
 @ifnotinfo
 
-@macro sourceimage{FILENAME}
-@image{pictures/\FILENAME\}
+@macro sourceimage{FILENAME,WIDTH,HEIGHT,ALTTEXT}
+@image{pictures/\FILENAME\,\WIDTH\,\HEIGHT\,\ALTTEXT\}
 @end macro
 
 @end ifnotinfo
 
 @ifinfo
 
-@macro sourceimage{FILENAME}
-@image{lilypond/pictures/\FILENAME\}
+@macro sourceimage{FILENAME,WIDTH,HEIGHT,ALTTEXT}
+@image{lilypond/pictures/\FILENAME\,\WIDTH\,\HEIGHT\,\ALTTEXT\}
 @end macro
 
 @end ifinfo