diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-10-13 23:10:31 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-10-13 23:10:31 +0000 |
commit | d00dc3632dfab6012803ea50764cfd431d3ff42f (patch) | |
tree | 13a79949d37e0b355cad1e6a4005451a8f6154d5 /print/lilypond | |
parent | 8648dd0f12aac42bfab29df8c9ed55ed8a001f42 (diff) | |
download | ports-d00dc3632dfab6012803ea50764cfd431d3ff42f.tar.gz ports-d00dc3632dfab6012803ea50764cfd431d3ff42f.zip |
Notes
Diffstat (limited to 'print/lilypond')
-rw-r--r-- | print/lilypond/Makefile | 76 | ||||
-rw-r--r-- | print/lilypond/distinfo | 2 | ||||
-rw-r--r-- | print/lilypond/files/patch-Doc-user-GNUmakefile | 20 | ||||
-rw-r--r-- | print/lilypond/pkg-descr | 5 | ||||
-rw-r--r-- | print/lilypond/pkg-message | 2 | ||||
-rw-r--r-- | print/lilypond/pkg-plist | 1882 |
6 files changed, 1053 insertions, 934 deletions
diff --git a/print/lilypond/Makefile b/print/lilypond/Makefile index 2937019811c3..bf169ca3c5e1 100644 --- a/print/lilypond/Makefile +++ b/print/lilypond/Makefile @@ -8,46 +8,86 @@ # PORTNAME= lilypond -PORTVERSION= 1.6.0 +PORTVERSION= 2.0.1 CATEGORIES= print audio -MASTER_SITES= ftp://ftp.lilypond.org/pub/LilyPond/v1.6/ +MASTER_SITES= ftp://ftp.lilypond.org//pub/LilyPond/v2.0/ -MAINTAINER= trevor@FreeBSD.org +MAINTAINER= atamaniuk@frobs.net COMMENT= The GNU music typesetter BUILD_DEPENDS= ${LOCALBASE}/bin/latex:${PORTSDIR}/print/teTeX LIB_DEPENDS= guile.15:${PORTSDIR}/lang/guile -MAN1= abc2ly.1 as2text.1 convert-ly.1 etf2ly.1 lilypond.1 \ - lilypond-book.1 ly2dvi.1 midi2ly.1 mup2ly.1 musedata2ly.1 pmx2ly.1 +MAN1= abc2ly.1 as2text.1 convert-ly.1 etf2ly.1 lilypond.1 lilypond-bin.1 \ + lilypond-book.1 midi2ly.1 mup2ly.1 musedata2ly.1 pmx2ly.1 +INFO= lilypond lilypond-internals GNU_CONFIGURE= yes USE_BISON= yes USE_GMAKE= YES USE_PYTHON= YES -USE_GCC= 2.95 -USE_REINPLACE= yes MAKEFILE= GNUmakefile -INFO_FILES= lilypond.info lilypond-internals.info CONFIGURE_ARGS+= --with-kpathsea-include=${PREFIX}/include \ --with-kpathsea-lib=${PREFIX}/lib +# inform kpathsea.h of getopt-prototype version +CFLAGS+= -D__GNU_LIBRARY__ + .include <bsd.port.pre.mk> +.if !defined(WITHOUT_PFA_FONTS) +BUILD_DEPENDS+= ${PREFIX}/bin/mftrace:${PORTSDIR}/print/pktrace +MAKE_ENV+= MAKE_PFA_FILES=1 +ALL_TARGET= all # XXX pfa-fonts +.endif -.if ${OSVERSION} >= 500113 -BROKEN= "Configure fails" +.if ${OSVERSION} < 500000 +USE_GCC= 3.3 +OLD_CPP_INCLUDEDIR= /usr/include/g++ +CONFIGURE_ENV+= "CPPFLAGS=$${CPPFLAGS} -idirafter ${OLD_CPP_INCLUDEDIR}" .endif -post-configure: - ${REINPLACE_CMD} -e "s:^INFO_FILES:xxxINFO_FILES:g" \ - ${WRKSRC}/Documentation/user/GNUmakefile +SCRIPTS_ENV+= PORTVERSION=${PORTVERSION} + +pre-everything:: + @${CAT} ${PKGMESSAGE} + @${ECHO_CMD} Pausing ten seconds--press control-C to cancel the build. + @sleep 10 post-install: - @cd ${WRKSRC}/input ; \ - ${MKDIR} ${PREFIX}/share/examples/lilypond ;\ - ${TAR} -chf - . | ${TAR} -xf - -C ${PREFIX}/share/examples/lilypond ;\ - ${FIND} ${PREFIX}/share/examples/lilypond -name "GNUmakefile" | xargs ${RM} ;\ - ${FIND} ${PREFIX}/share/examples/lilypond -name "out" | xargs ${RM} -rf ;\ +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} ${EXAMPLESDIR}/scripts + cd ${WRKSRC}/input ; \ + ${TAR} -chf - --exclude=out --exclude=CVS --exclude=GNUmakefile . | \ + ${TAR} -xf - -C ${EXAMPLESDIR};\ + ${FIND} ${EXAMPLESDIR} -name "out" | xargs ${RM} -rf ;\ +.for ii in login profile + ${INSTALL_SCRIPT} ${WRKSRC}/buildscripts/out/lilypond-${ii} \ + ${EXAMPLESDIR}/scripts +.endfor +.for ii in lilypond-font-lock.el lilypond-indent.el lilypond-init.el \ + lilypond-mode.el lilypond-init.el + ${INSTALL_SCRIPT} ${WRKSRC}/elisp/${ii} ${EXAMPLESDIR}/scripts +.endfor +.for ii in lilypond.vim server.el.patch + ${INSTALL_SCRIPT} ${WRKSRC}/${ii} ${EXAMPLESDIR}/scripts +.endfor + cd ${WRKSRC}/Documentation/topdocs/out && ${TAR} -chf - \ + --exclude=dummy.dep --exclude=CVS --exclude=GNUmakefile . \ + | ${TAR} -xf - -C ${DOCSDIR} + +.for file in ${INFO} + ${INSTALL_DATA} ${WRKSRC}/Documentation/user/out/${file}.info \ + ${PREFIX}/info/ + install-info ${PREFIX}/info/${file}.info ${PREFIX}/info/dir +.endfor +.endif + ${ENV} PKG_PREFIX=${PREFIX} ${PKGINSTALL} ${PKGNAME} POST-INSTALL +# ${ENV} PATH=${LOCALBASE}/bin:${PREFIX}/bin:${PATH} \ +# TEXMF="{${DATADIR}/${PORTVERSION}},"`kpsexpand \\$$TEXMF`"}" texhash + + @${ECHO_CMD} "* Look in ${EXAMPLESDIR}/scripts for needed additions to" + @${ECHO_CMD} "* your .profile (at least the TEXMF environment variable" + @${ECHO_CMD} "* is required)." .include <bsd.port.post.mk> diff --git a/print/lilypond/distinfo b/print/lilypond/distinfo index 70d86c92bfcd..924edd1f7c0a 100644 --- a/print/lilypond/distinfo +++ b/print/lilypond/distinfo @@ -1 +1 @@ -MD5 (lilypond-1.6.0.tar.gz) = 6408500246655cc4a0d74fbcf3f66f0c +MD5 (lilypond-2.0.1.tar.gz) = 04dcc17cf238b0bb5e31c993bfcc76b4 diff --git a/print/lilypond/files/patch-Doc-user-GNUmakefile b/print/lilypond/files/patch-Doc-user-GNUmakefile new file mode 100644 index 000000000000..893715e8b1a7 --- /dev/null +++ b/print/lilypond/files/patch-Doc-user-GNUmakefile @@ -0,0 +1,20 @@ +$FreeBSD$ + +--- Documentation/user/GNUmakefile.orig Fri Sep 19 13:25:01 2003 ++++ Documentation/user/GNUmakefile Fri Sep 19 13:25:16 2003 +@@ -21,12 +21,12 @@ + + PS_GZ_FILES= $(addsuffix .gz, $(PS_FILES)) + +-INFO_DOCS = lilypond lilypond-internals music-glossary ++INFO_DOCS = lilypond lilypond-internals + INFO_FILES = $(INFO_DOCS:%=$(outdir)/%.info) + +-STEPMAKE_TEMPLATES=tex texinfo omf documentation ++STEPMAKE_TEMPLATES=tex texinfo documentation + +-OMF_FILES += $(outdir)/lilypond-internals.html.omf ++#OMF_FILES += $(outdir)/lilypond-internals.html.omf + + LOCALSTEPMAKE_TEMPLATES=lilypond ly + LILYPOND_BOOK_FLAGS=--extra-options '-e "(ly:set-option (quote internal-type-checking) \#t)"' diff --git a/print/lilypond/pkg-descr b/print/lilypond/pkg-descr index defd7c539a71..77ae247fd8ff 100644 --- a/print/lilypond/pkg-descr +++ b/print/lilypond/pkg-descr @@ -7,9 +7,6 @@ can write MIDI files, and there is a MIDI to lilypond conversion tool, midi2ly. Conversion tools for PMX, MUP, ABC, Finale and Musedata are also included. -The texinfo files are not installed by this port. - -WWW: http://lilypond.org/development/ +WWW: http://lilypond.org/web/ Trevor Johnson -trevor@FreeBSD.org diff --git a/print/lilypond/pkg-message b/print/lilypond/pkg-message new file mode 100644 index 000000000000..b6607f17cfb1 --- /dev/null +++ b/print/lilypond/pkg-message @@ -0,0 +1,2 @@ +* WARNING: +* source code of lilypond has not been reviewed by the FreeBSD port maintainer. diff --git a/print/lilypond/pkg-plist b/print/lilypond/pkg-plist index 2e03e732faa7..79565e4200fa 100644 --- a/print/lilypond/pkg-plist +++ b/print/lilypond/pkg-plist @@ -1,3 +1,933 @@ +@comment $FreeBSD$ +%%DATADIR%%/2.0.1/dvips/lilypond.map +%%DATADIR%%/2.0.1/fonts/afm/as-braces5.afm +%%DATADIR%%/2.0.1/fonts/afm/as-braces9.afm +%%DATADIR%%/2.0.1/fonts/afm/as-dummy.afm +%%DATADIR%%/2.0.1/fonts/afm/as-dummy1.afm +%%DATADIR%%/2.0.1/fonts/afm/as-number1.afm +%%DATADIR%%/2.0.1/fonts/afm/as-number4.afm +%%DATADIR%%/2.0.1/fonts/afm/as5.afm +%%DATADIR%%/2.0.1/fonts/afm/as9.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces00.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces10.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces20.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces30.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces40.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces50.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces60.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces70.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-braces80.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din10.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din11.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din12.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din13.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din14.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din17.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din19.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din4.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din5.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din6.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din7.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din8.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-din9.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer10.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer11.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer12.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer13.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer16.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer20.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer23.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer26.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer4.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer5.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer6.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer7.afm +%%DATADIR%%/2.0.1/fonts/afm/feta-nummer8.afm +%%DATADIR%%/2.0.1/fonts/afm/feta11.afm +%%DATADIR%%/2.0.1/fonts/afm/feta13.afm +%%DATADIR%%/2.0.1/fonts/afm/feta16.afm +%%DATADIR%%/2.0.1/fonts/afm/feta19.afm +%%DATADIR%%/2.0.1/fonts/afm/feta20.afm +%%DATADIR%%/2.0.1/fonts/afm/feta23.afm +%%DATADIR%%/2.0.1/fonts/afm/feta26.afm +%%DATADIR%%/2.0.1/fonts/afm/parmesan11.afm +%%DATADIR%%/2.0.1/fonts/afm/parmesan13.afm +%%DATADIR%%/2.0.1/fonts/afm/parmesan16.afm +%%DATADIR%%/2.0.1/fonts/afm/parmesan19.afm +%%DATADIR%%/2.0.1/fonts/afm/parmesan20.afm +%%DATADIR%%/2.0.1/fonts/afm/parmesan23.afm +%%DATADIR%%/2.0.1/fonts/afm/parmesan26.afm +%%DATADIR%%/2.0.1/fonts/source/as-braces5.af +%%DATADIR%%/2.0.1/fonts/source/as-braces9.af +%%DATADIR%%/2.0.1/fonts/source/as-dummy.af +%%DATADIR%%/2.0.1/fonts/source/as-dummy1.af +%%DATADIR%%/2.0.1/fonts/source/as-number1.af +%%DATADIR%%/2.0.1/fonts/source/as-number4.af +%%DATADIR%%/2.0.1/fonts/source/as5.af +%%DATADIR%%/2.0.1/fonts/source/as9.af +%%DATADIR%%/2.0.1/fonts/source/feta-accordion.mf +%%DATADIR%%/2.0.1/fonts/source/feta-autometric.mf +%%DATADIR%%/2.0.1/fonts/source/feta-banier.mf +%%DATADIR%%/2.0.1/fonts/source/feta-beugel.mf +%%DATADIR%%/2.0.1/fonts/source/feta-beum.mf +%%DATADIR%%/2.0.1/fonts/source/feta-bolletjes.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces00.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces10.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces20.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces30.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces40.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces50.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces60.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces70.mf +%%DATADIR%%/2.0.1/fonts/source/feta-braces80.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din-code.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din10.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din11.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din12.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din13.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din14.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din17.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din19.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din4.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din5.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din6.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din7.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din8.mf +%%DATADIR%%/2.0.1/fonts/source/feta-din9.mf +%%DATADIR%%/2.0.1/fonts/source/feta-eindelijk.mf +%%DATADIR%%/2.0.1/fonts/source/feta-generic.mf +%%DATADIR%%/2.0.1/fonts/source/feta-haak.mf +%%DATADIR%%/2.0.1/fonts/source/feta-harmonica.mf +%%DATADIR%%/2.0.1/fonts/source/feta-ital-f.mf +%%DATADIR%%/2.0.1/fonts/source/feta-ital-m.mf +%%DATADIR%%/2.0.1/fonts/source/feta-ital-p.mf +%%DATADIR%%/2.0.1/fonts/source/feta-ital-r.mf +%%DATADIR%%/2.0.1/fonts/source/feta-ital-s.mf +%%DATADIR%%/2.0.1/fonts/source/feta-ital-z.mf +%%DATADIR%%/2.0.1/fonts/source/feta-klef.mf +%%DATADIR%%/2.0.1/fonts/source/feta-macros.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer-code.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer10.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer11.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer12.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer13.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer16.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer20.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer23.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer26.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer4.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer5.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer6.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer7.mf +%%DATADIR%%/2.0.1/fonts/source/feta-nummer8.mf +%%DATADIR%%/2.0.1/fonts/source/feta-params.mf +%%DATADIR%%/2.0.1/fonts/source/feta-pendaal.mf +%%DATADIR%%/2.0.1/fonts/source/feta-puntje.mf +%%DATADIR%%/2.0.1/fonts/source/feta-schrift.mf +%%DATADIR%%/2.0.1/fonts/source/feta-slag.mf +%%DATADIR%%/2.0.1/fonts/source/feta-sleur.mf +%%DATADIR%%/2.0.1/fonts/source/feta-solfa.mf +%%DATADIR%%/2.0.1/fonts/source/feta-test11.mf +%%DATADIR%%/2.0.1/fonts/source/feta-test13.mf +%%DATADIR%%/2.0.1/fonts/source/feta-test16.mf +%%DATADIR%%/2.0.1/fonts/source/feta-test20.mf +%%DATADIR%%/2.0.1/fonts/source/feta-test23.mf +%%DATADIR%%/2.0.1/fonts/source/feta-test26.mf +%%DATADIR%%/2.0.1/fonts/source/feta-timesig.mf +%%DATADIR%%/2.0.1/fonts/source/feta-toevallig.mf +%%DATADIR%%/2.0.1/fonts/source/feta11.mf +%%DATADIR%%/2.0.1/fonts/source/feta13.mf +%%DATADIR%%/2.0.1/fonts/source/feta16.mf +%%DATADIR%%/2.0.1/fonts/source/feta19.mf +%%DATADIR%%/2.0.1/fonts/source/feta20.mf +%%DATADIR%%/2.0.1/fonts/source/feta23.mf +%%DATADIR%%/2.0.1/fonts/source/feta26.mf +%%DATADIR%%/2.0.1/fonts/source/graycx.mf +%%DATADIR%%/2.0.1/fonts/source/graylj.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-accidentals.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-clefs.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-custodes.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-flags.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-generic.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-heads.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-rests.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-scripts.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan-timesig.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan11.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan13.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan16.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan19.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan20.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan23.mf +%%DATADIR%%/2.0.1/fonts/source/parmesan26.mf +%%DATADIR%%/2.0.1/fonts/source/slur.mf +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces00.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces10.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces20.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces30.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces40.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces50.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces60.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces70.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-braces80.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din10.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din11.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din12.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din13.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din14.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din17.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din19.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din4.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din5.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din6.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din7.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din8.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-din9.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer10.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer11.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer12.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer13.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer16.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer20.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer23.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer26.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer4.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer5.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer6.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer7.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta-nummer8.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta11.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta13.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta16.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta19.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta20.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta23.tfm +%%DATADIR%%/2.0.1/fonts/tfm/feta26.tfm +%%DATADIR%%/2.0.1/fonts/tfm/parmesan11.tfm +%%DATADIR%%/2.0.1/fonts/tfm/parmesan13.tfm +%%DATADIR%%/2.0.1/fonts/tfm/parmesan16.tfm +%%DATADIR%%/2.0.1/fonts/tfm/parmesan19.tfm +%%DATADIR%%/2.0.1/fonts/tfm/parmesan20.tfm +%%DATADIR%%/2.0.1/fonts/tfm/parmesan23.tfm +%%DATADIR%%/2.0.1/fonts/tfm/parmesan26.tfm +%%DATADIR%%/2.0.1/fonts/type1/cmbx14.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmbx17.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmbxti12.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmbxti14.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmbxti7.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmbxti8.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmcsc12.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmcsc7.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmtt17.pfa +%%DATADIR%%/2.0.1/fonts/type1/cmtt6.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces00.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces10.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces20.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces30.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces40.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces50.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces60.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces70.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-braces80.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din10.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din11.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din12.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din13.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din14.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din17.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din19.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din4.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din5.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din6.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din7.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din8.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-din9.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer10.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer11.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer12.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer13.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer16.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer20.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer23.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer26.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer4.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer5.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer6.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer7.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta-nummer8.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta11.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta13.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta16.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta19.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta20.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta23.pfa +%%DATADIR%%/2.0.1/fonts/type1/feta26.pfa +%%DATADIR%%/2.0.1/fonts/type1/fonts.scale +%%DATADIR%%/2.0.1/fonts/type1/parmesan11.pfa +%%DATADIR%%/2.0.1/fonts/type1/parmesan13.pfa +%%DATADIR%%/2.0.1/fonts/type1/parmesan16.pfa +%%DATADIR%%/2.0.1/fonts/type1/parmesan19.pfa +%%DATADIR%%/2.0.1/fonts/type1/parmesan20.pfa +%%DATADIR%%/2.0.1/fonts/type1/parmesan23.pfa +%%DATADIR%%/2.0.1/fonts/type1/parmesan26.pfa +%%DATADIR%%/2.0.1/ly/a3-init.ly +%%DATADIR%%/2.0.1/ly/a4-init.ly +%%DATADIR%%/2.0.1/ly/accordion-defs-init.ly +%%DATADIR%%/2.0.1/ly/book-init-init.ly +%%DATADIR%%/2.0.1/ly/catalan.ly +%%DATADIR%%/2.0.1/ly/center-init.ly +%%DATADIR%%/2.0.1/ly/chord-modifiers-init.ly +%%DATADIR%%/2.0.1/ly/declarations-init.ly +%%DATADIR%%/2.0.1/ly/deutsch.ly +%%DATADIR%%/2.0.1/ly/drumpitch-init.ly +%%DATADIR%%/2.0.1/ly/dynamic-scripts-init.ly +%%DATADIR%%/2.0.1/ly/english.ly +%%DATADIR%%/2.0.1/ly/engraver-init.ly +%%DATADIR%%/2.0.1/ly/espanol.ly +%%DATADIR%%/2.0.1/ly/generate-documentation.ly +%%DATADIR%%/2.0.1/ly/generate-interface-doc-init.ly +%%DATADIR%%/2.0.1/ly/generic-paper-init.ly +%%DATADIR%%/2.0.1/ly/grace-init.ly +%%DATADIR%%/2.0.1/ly/gregorian-init.ly +%%DATADIR%%/2.0.1/ly/init.ly +%%DATADIR%%/2.0.1/ly/italiano.ly +%%DATADIR%%/2.0.1/ly/ledger-init.ly +%%DATADIR%%/2.0.1/ly/legal-init.ly +%%DATADIR%%/2.0.1/ly/letter-init.ly +%%DATADIR%%/2.0.1/ly/midi-init.ly +%%DATADIR%%/2.0.1/ly/nederlands.ly +%%DATADIR%%/2.0.1/ly/norsk.ly +%%DATADIR%%/2.0.1/ly/paper-as5-init.ly +%%DATADIR%%/2.0.1/ly/paper-as5.ly +%%DATADIR%%/2.0.1/ly/paper-as9-init.ly +%%DATADIR%%/2.0.1/ly/paper-as9.ly +%%DATADIR%%/2.0.1/ly/paper-init.ly +%%DATADIR%%/2.0.1/ly/paper11-init.ly +%%DATADIR%%/2.0.1/ly/paper11.ly +%%DATADIR%%/2.0.1/ly/paper13-init.ly +%%DATADIR%%/2.0.1/ly/paper13.ly +%%DATADIR%%/2.0.1/ly/paper16-init.ly +%%DATADIR%%/2.0.1/ly/paper16.ly +%%DATADIR%%/2.0.1/ly/paper19-init.ly +%%DATADIR%%/2.0.1/ly/paper19.ly +%%DATADIR%%/2.0.1/ly/paper20-init.ly +%%DATADIR%%/2.0.1/ly/paper20.ly +%%DATADIR%%/2.0.1/ly/paper23-init.ly +%%DATADIR%%/2.0.1/ly/paper23.ly +%%DATADIR%%/2.0.1/ly/paper26-init.ly +%%DATADIR%%/2.0.1/ly/paper26.ly +%%DATADIR%%/2.0.1/ly/params-as-init.ly +%%DATADIR%%/2.0.1/ly/params-init.ly +%%DATADIR%%/2.0.1/ly/part-paper-init.ly +%%DATADIR%%/2.0.1/ly/performer-init.ly +%%DATADIR%%/2.0.1/ly/property-init.ly +%%DATADIR%%/2.0.1/ly/scale-definitions-init.ly +%%DATADIR%%/2.0.1/ly/script-init.ly +%%DATADIR%%/2.0.1/ly/spanners-init.ly +%%DATADIR%%/2.0.1/ly/suomi.ly +%%DATADIR%%/2.0.1/ly/svenska.ly +%%DATADIR%%/2.0.1/make/GNUmakefile +%%DATADIR%%/2.0.1/make/asciifont-rules.make +%%DATADIR%%/2.0.1/make/asciifont-targets.make +%%DATADIR%%/2.0.1/make/asciifont-vars.make +%%DATADIR%%/2.0.1/make/generic-rules.make +%%DATADIR%%/2.0.1/make/generic-targets.make +%%DATADIR%%/2.0.1/make/generic-vars.make +%%DATADIR%%/2.0.1/make/lilypond-rules.make +%%DATADIR%%/2.0.1/make/lilypond-targets.make +%%DATADIR%%/2.0.1/make/lilypond-vars.make +%%DATADIR%%/2.0.1/make/lilypond.mandrake.spec.in +%%DATADIR%%/2.0.1/make/lilypond.redhat.spec.in +%%DATADIR%%/2.0.1/make/lilypond.suse.spec.in +%%DATADIR%%/2.0.1/make/ly-rules.make +%%DATADIR%%/2.0.1/make/ly-targets.make +%%DATADIR%%/2.0.1/make/ly-vars.make +%%DATADIR%%/2.0.1/make/ly.make +%%DATADIR%%/2.0.1/make/lysdoc-rules.make +%%DATADIR%%/2.0.1/make/lysdoc-targets.make +%%DATADIR%%/2.0.1/make/lysdoc-vars.make +%%DATADIR%%/2.0.1/make/mutopia-inclusions.make +%%DATADIR%%/2.0.1/make/mutopia-rules.make +%%DATADIR%%/2.0.1/make/mutopia-targets.make +%%DATADIR%%/2.0.1/make/mutopia-vars.make +%%DATADIR%%/2.0.1/make/ports-rules.make +%%DATADIR%%/2.0.1/make/ports-targets.make +%%DATADIR%%/2.0.1/make/ports-vars.make +%%DATADIR%%/2.0.1/make/srcdir.make.in +%%DATADIR%%/2.0.1/make/stepmake.make +%%DATADIR%%/2.0.1/make/substitute.make +%%DATADIR%%/2.0.1/make/toplevel-version.make +%%DATADIR%%/2.0.1/ps/lilyponddefs.ps +%%DATADIR%%/2.0.1/ps/music-drawing-routines.ps +%%DATADIR%%/2.0.1/python/lilylib.py +%%DATADIR%%/2.0.1/python/lilylib.pyc +%%DATADIR%%/2.0.1/scm/auto-beam.scm +%%DATADIR%%/2.0.1/scm/bass-figure.scm +%%DATADIR%%/2.0.1/scm/beam.scm +%%DATADIR%%/2.0.1/scm/c++.scm +%%DATADIR%%/2.0.1/scm/chord-entry.scm +%%DATADIR%%/2.0.1/scm/chord-generic-names.scm +%%DATADIR%%/2.0.1/scm/chord-ignatzek-names.scm +%%DATADIR%%/2.0.1/scm/chord-name.scm +%%DATADIR%%/2.0.1/scm/clef.scm +%%DATADIR%%/2.0.1/scm/define-grob-interfaces.scm +%%DATADIR%%/2.0.1/scm/define-grob-properties.scm +%%DATADIR%%/2.0.1/scm/define-grobs.scm +%%DATADIR%%/2.0.1/scm/define-music-properties.scm +%%DATADIR%%/2.0.1/scm/define-music-types.scm +%%DATADIR%%/2.0.1/scm/define-translator-properties.scm +%%DATADIR%%/2.0.1/scm/describe-context.scm +%%DATADIR%%/2.0.1/scm/document-backend.scm +%%DATADIR%%/2.0.1/scm/document-functions.scm +%%DATADIR%%/2.0.1/scm/document-markup.scm +%%DATADIR%%/2.0.1/scm/document-music.scm +%%DATADIR%%/2.0.1/scm/document-translation.scm +%%DATADIR%%/2.0.1/scm/documentation-generate.scm +%%DATADIR%%/2.0.1/scm/documentation-lib.scm +%%DATADIR%%/2.0.1/scm/drums.scm +%%DATADIR%%/2.0.1/scm/font.scm +%%DATADIR%%/2.0.1/scm/lily.scm +%%DATADIR%%/2.0.1/scm/midi.scm +%%DATADIR%%/2.0.1/scm/molecule.scm +%%DATADIR%%/2.0.1/scm/music-functions.scm +%%DATADIR%%/2.0.1/scm/new-markup.scm +%%DATADIR%%/2.0.1/scm/output-ascii-script.scm +%%DATADIR%%/2.0.1/scm/output-lib.scm +%%DATADIR%%/2.0.1/scm/output-pdf.scm +%%DATADIR%%/2.0.1/scm/output-pdftex.scm +%%DATADIR%%/2.0.1/scm/output-ps.scm +%%DATADIR%%/2.0.1/scm/output-sketch.scm +%%DATADIR%%/2.0.1/scm/output-sodipodi.scm +%%DATADIR%%/2.0.1/scm/output-tex.scm +%%DATADIR%%/2.0.1/scm/script.scm +%%DATADIR%%/2.0.1/scm/slur.scm +%%DATADIR%%/2.0.1/scm/standalone.scm +%%DATADIR%%/2.0.1/scm/to-xml.scm +%%DATADIR%%/2.0.1/scm/translation-functions.scm +%%DATADIR%%/2.0.1/tex/feta-braces00.tex +%%DATADIR%%/2.0.1/tex/feta-braces10.tex +%%DATADIR%%/2.0.1/tex/feta-braces20.tex +%%DATADIR%%/2.0.1/tex/feta-braces30.tex +%%DATADIR%%/2.0.1/tex/feta-braces40.tex +%%DATADIR%%/2.0.1/tex/feta-braces50.tex +%%DATADIR%%/2.0.1/tex/feta-braces60.tex +%%DATADIR%%/2.0.1/tex/feta-braces70.tex +%%DATADIR%%/2.0.1/tex/feta-braces80.tex +%%DATADIR%%/2.0.1/tex/feta-din10.tex +%%DATADIR%%/2.0.1/tex/feta-din11.tex +%%DATADIR%%/2.0.1/tex/feta-din12.tex +%%DATADIR%%/2.0.1/tex/feta-din13.tex +%%DATADIR%%/2.0.1/tex/feta-din14.tex +%%DATADIR%%/2.0.1/tex/feta-din17.tex +%%DATADIR%%/2.0.1/tex/feta-din19.tex +%%DATADIR%%/2.0.1/tex/feta-din4.tex +%%DATADIR%%/2.0.1/tex/feta-din5.tex +%%DATADIR%%/2.0.1/tex/feta-din6.tex +%%DATADIR%%/2.0.1/tex/feta-din7.tex +%%DATADIR%%/2.0.1/tex/feta-din8.tex +%%DATADIR%%/2.0.1/tex/feta-din9.tex +%%DATADIR%%/2.0.1/tex/feta-nummer10.tex +%%DATADIR%%/2.0.1/tex/feta-nummer11.tex +%%DATADIR%%/2.0.1/tex/feta-nummer12.tex +%%DATADIR%%/2.0.1/tex/feta-nummer13.tex +%%DATADIR%%/2.0.1/tex/feta-nummer16.tex +%%DATADIR%%/2.0.1/tex/feta-nummer20.tex +%%DATADIR%%/2.0.1/tex/feta-nummer23.tex +%%DATADIR%%/2.0.1/tex/feta-nummer26.tex +%%DATADIR%%/2.0.1/tex/feta-nummer4.tex +%%DATADIR%%/2.0.1/tex/feta-nummer5.tex +%%DATADIR%%/2.0.1/tex/feta-nummer6.tex +%%DATADIR%%/2.0.1/tex/feta-nummer7.tex +%%DATADIR%%/2.0.1/tex/feta-nummer8.tex +%%DATADIR%%/2.0.1/tex/feta11.tex +%%DATADIR%%/2.0.1/tex/feta13.tex +%%DATADIR%%/2.0.1/tex/feta16.tex +%%DATADIR%%/2.0.1/tex/feta19.tex +%%DATADIR%%/2.0.1/tex/feta20.tex +%%DATADIR%%/2.0.1/tex/feta23.tex +%%DATADIR%%/2.0.1/tex/feta26.tex +%%DATADIR%%/2.0.1/tex/headers.tex +%%DATADIR%%/2.0.1/tex/lily-debug.tex +%%DATADIR%%/2.0.1/tex/lily-pdf-defs.tex +%%DATADIR%%/2.0.1/tex/lily-ps-defs.tex +%%DATADIR%%/2.0.1/tex/lilyponddefs.tex +%%DATADIR%%/2.0.1/tex/ltest.tex +%%DATADIR%%/2.0.1/tex/music-drawing-routines.ps +%%DATADIR%%/2.0.1/tex/number.tex +%%DATADIR%%/2.0.1/tex/parmesan11.tex +%%DATADIR%%/2.0.1/tex/parmesan13.tex +%%DATADIR%%/2.0.1/tex/parmesan16.tex +%%DATADIR%%/2.0.1/tex/parmesan19.tex +%%DATADIR%%/2.0.1/tex/parmesan20.tex +%%DATADIR%%/2.0.1/tex/parmesan23.tex +%%DATADIR%%/2.0.1/tex/parmesan26.tex +%%DATADIR%%/2.0.1/tex/test-pedal.tex +%%DATADIR%%/2.0.1/tex/titledefs.tex +%%DOCSDIR%%/AUTHORS.txt +%%DOCSDIR%%/INSTALL.txt +%%DOCSDIR%%/NEWS.txt +%%DOCSDIR%%/README.txt +%%EXAMPLESDIR%%/ascii-art/as-email.ly +%%EXAMPLESDIR%%/ascii-art/as1.ly +%%EXAMPLESDIR%%/ascii-art/as2.ly +%%EXAMPLESDIR%%/ascii-art/asciiscript5.ly +%%EXAMPLESDIR%%/ascii-art/asciiscript9.ly +%%EXAMPLESDIR%%/ascii-art/r-as.ly +%%EXAMPLESDIR%%/ascii-art/standchen-as5.ly +%%EXAMPLESDIR%%/ascii-art/standchen-as9.ly +%%EXAMPLESDIR%%/ascii-art/twinkle-as5.ly +%%EXAMPLESDIR%%/example-1.ly +%%EXAMPLESDIR%%/example-2.ly +%%EXAMPLESDIR%%/example-3.ly +%%EXAMPLESDIR%%/les-nereides.ly +%%EXAMPLESDIR%%/mutopia-header.ly +%%EXAMPLESDIR%%/mutopia/E.Satie/petite-ouverture-a-danser.ly +%%EXAMPLESDIR%%/mutopia/F.Schubert/standchen.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes/header.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes/preludes-1.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes/preludes-2.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes/preludes-3.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes/preludes-4.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes/preludes-5.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes/preludes-6.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes/preludes-score.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/baerenreiter-sarabande.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/wtk1-fugue1.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/wtk1-fugue2.ly +%%EXAMPLESDIR%%/mutopia/J.S.Bach/wtk1-prelude1.ly +%%EXAMPLESDIR%%/mutopia/R.Schumann/romanze-op28-2.ly +%%EXAMPLESDIR%%/mutopia/W.A.Mozart/mozart-hrn-3.ly +%%EXAMPLESDIR%%/mutopia/W.A.Mozart/mozart-hrn3-allegro.ly +%%EXAMPLESDIR%%/mutopia/W.A.Mozart/mozart-hrn3-defs.ly +%%EXAMPLESDIR%%/mutopia/W.A.Mozart/mozart-hrn3-romanze.ly +%%EXAMPLESDIR%%/mutopia/W.A.Mozart/mozart-hrn3-rondo.ly +%%EXAMPLESDIR%%/mutopia/claop.py +%%EXAMPLESDIR%%/no-notation/README +%%EXAMPLESDIR%%/no-notation/bar-check.ly +%%EXAMPLESDIR%%/no-notation/beam-warn.ly +%%EXAMPLESDIR%%/no-notation/denneboom.ly +%%EXAMPLESDIR%%/no-notation/die-staff.ly +%%EXAMPLESDIR%%/no-notation/midi-grace.ly +%%EXAMPLESDIR%%/no-notation/midi-transposing.ly +%%EXAMPLESDIR%%/no-notation/midi-tuplets.ly +%%EXAMPLESDIR%%/no-notation/midi-volume-equaliser.ly +%%EXAMPLESDIR%%/no-notation/parse.ly +%%EXAMPLESDIR%%/no-notation/parse2.ly +%%EXAMPLESDIR%%/no-notation/parse3.ly +%%EXAMPLESDIR%%/no-notation/parse4.ly +%%EXAMPLESDIR%%/no-notation/parse5.ly +%%EXAMPLESDIR%%/no-notation/pc-direction.ly +%%EXAMPLESDIR%%/no-notation/textcresc.ly +%%EXAMPLESDIR%%/paddy.abc +%%EXAMPLESDIR%%/puer-fragment.ly +%%EXAMPLESDIR%%/regression/+.ly +%%EXAMPLESDIR%%/regression/accidental-cautionary.ly +%%EXAMPLESDIR%%/regression/accidental-double.ly +%%EXAMPLESDIR%%/regression/accidental-ledger.ly +%%EXAMPLESDIR%%/regression/accidental-octave.ly +%%EXAMPLESDIR%%/regression/accidental-placement.ly +%%EXAMPLESDIR%%/regression/accidental-single-double.ly +%%EXAMPLESDIR%%/regression/accidental-unbroken-tie-spacing.ly +%%EXAMPLESDIR%%/regression/accidental-voice.ly +%%EXAMPLESDIR%%/regression/accidental.ly +%%EXAMPLESDIR%%/regression/accidentals.ly +%%EXAMPLESDIR%%/regression/allfontstyle.ly +%%EXAMPLESDIR%%/regression/ambitus.ly +%%EXAMPLESDIR%%/regression/apply-context.ly +%%EXAMPLESDIR%%/regression/apply-output.ly +%%EXAMPLESDIR%%/regression/arpeggio-collision.ly +%%EXAMPLESDIR%%/regression/arpeggio.ly +%%EXAMPLESDIR%%/regression/auto-beam-bar.ly +%%EXAMPLESDIR%%/regression/auto-beam-triplet.ly +%%EXAMPLESDIR%%/regression/auto-beam-tuplets.ly +%%EXAMPLESDIR%%/regression/auto-beam.ly +%%EXAMPLESDIR%%/regression/auto-change.ly +%%EXAMPLESDIR%%/regression/bar-number.ly +%%EXAMPLESDIR%%/regression/bar-scripts.ly +%%EXAMPLESDIR%%/regression/beam-auto-knee.ly +%%EXAMPLESDIR%%/regression/beam-break.ly +%%EXAMPLESDIR%%/regression/beam-center-slope.ly +%%EXAMPLESDIR%%/regression/beam-chord.ly +%%EXAMPLESDIR%%/regression/beam-concave.ly +%%EXAMPLESDIR%%/regression/beam-cross-staff-auto-knee.ly +%%EXAMPLESDIR%%/regression/beam-cross-staff-slope.ly +%%EXAMPLESDIR%%/regression/beam-cross-staff.ly +%%EXAMPLESDIR%%/regression/beam-damp.ly +%%EXAMPLESDIR%%/regression/beam-default-lengths.ly +%%EXAMPLESDIR%%/regression/beam-extreme.ly +%%EXAMPLESDIR%%/regression/beam-french.ly +%%EXAMPLESDIR%%/regression/beam-funky-beamlet.ly +%%EXAMPLESDIR%%/regression/beam-funky.ly +%%EXAMPLESDIR%%/regression/beam-knee-symmetry.ly +%%EXAMPLESDIR%%/regression/beam-length.ly +%%EXAMPLESDIR%%/regression/beam-manual-beaming.ly +%%EXAMPLESDIR%%/regression/beam-manual.ly +%%EXAMPLESDIR%%/regression/beam-multiple-cross-staff.ly +%%EXAMPLESDIR%%/regression/beam-over-barline.ly +%%EXAMPLESDIR%%/regression/beam-position.ly +%%EXAMPLESDIR%%/regression/beam-postfix-notation.ly +%%EXAMPLESDIR%%/regression/beam-quanting-horizontal.ly +%%EXAMPLESDIR%%/regression/beam-quarter.ly +%%EXAMPLESDIR%%/regression/beam-rest.ly +%%EXAMPLESDIR%%/regression/beam-second.ly +%%EXAMPLESDIR%%/regression/beam-shortened-lengths.ly +%%EXAMPLESDIR%%/regression/beamed-chord.ly +%%EXAMPLESDIR%%/regression/beaming-ternary-metrum.ly +%%EXAMPLESDIR%%/regression/beaming.ly +%%EXAMPLESDIR%%/regression/beams.ly +%%EXAMPLESDIR%%/regression/between-systems.ly +%%EXAMPLESDIR%%/regression/break.ly +%%EXAMPLESDIR%%/regression/breathing-sign.ly +%%EXAMPLESDIR%%/regression/chord-changes.ly +%%EXAMPLESDIR%%/regression/chord-name-entry-11.ly +%%EXAMPLESDIR%%/regression/chord-name-entry.ly +%%EXAMPLESDIR%%/regression/chord-name-exceptions.ly +%%EXAMPLESDIR%%/regression/chord-name-major7.ly +%%EXAMPLESDIR%%/regression/chord-names-bass.ly +%%EXAMPLESDIR%%/regression/chord-scripts.ly +%%EXAMPLESDIR%%/regression/chord-tremolo.ly +%%EXAMPLESDIR%%/regression/chords-funky-ignatzek.ly +%%EXAMPLESDIR%%/regression/clefs.ly +%%EXAMPLESDIR%%/regression/cluster.ly +%%EXAMPLESDIR%%/regression/collision-2.ly +%%EXAMPLESDIR%%/regression/collision-dots.ly +%%EXAMPLESDIR%%/regression/collision-head-chords.ly +%%EXAMPLESDIR%%/regression/collision-heads.ly +%%EXAMPLESDIR%%/regression/collision-merge-differently-dotted.ly +%%EXAMPLESDIR%%/regression/collision-mesh.ly +%%EXAMPLESDIR%%/regression/collisions.ly +%%EXAMPLESDIR%%/regression/completion-heads-polyphony.ly +%%EXAMPLESDIR%%/regression/completion-heads.ly +%%EXAMPLESDIR%%/regression/custos.ly +%%EXAMPLESDIR%%/regression/dot-flag-collision.ly +%%EXAMPLESDIR%%/regression/dots.ly +%%EXAMPLESDIR%%/regression/drums.ly +%%EXAMPLESDIR%%/regression/dynamics-broken-hairpin.ly +%%EXAMPLESDIR%%/regression/dynamics-glyphs.ly +%%EXAMPLESDIR%%/regression/dynamics-line.ly +%%EXAMPLESDIR%%/regression/dynamics-unbound-hairpin.ly +%%EXAMPLESDIR%%/regression/easy-notation.ly +%%EXAMPLESDIR%%/regression/figured-bass.ly +%%EXAMPLESDIR%%/regression/finger-chords.ly +%%EXAMPLESDIR%%/regression/fingering.ly +%%EXAMPLESDIR%%/regression/follow-voice-break.ly +%%EXAMPLESDIR%%/regression/font-magnification.ly +%%EXAMPLESDIR%%/regression/font-name.ly +%%EXAMPLESDIR%%/regression/generic-output-property.ly +%%EXAMPLESDIR%%/regression/glissando.ly +%%EXAMPLESDIR%%/regression/grace-auto-beam.ly +%%EXAMPLESDIR%%/regression/grace-bar-line.ly +%%EXAMPLESDIR%%/regression/grace-bar-number.ly +%%EXAMPLESDIR%%/regression/grace-beam.ly +%%EXAMPLESDIR%%/regression/grace-dynamic.ly +%%EXAMPLESDIR%%/regression/grace-end.ly +%%EXAMPLESDIR%%/regression/grace-nest.ly +%%EXAMPLESDIR%%/regression/grace-nest1.ly +%%EXAMPLESDIR%%/regression/grace-nest2.ly +%%EXAMPLESDIR%%/regression/grace-nest3.ly +%%EXAMPLESDIR%%/regression/grace-nest4.ly +%%EXAMPLESDIR%%/regression/grace-nest5.ly +%%EXAMPLESDIR%%/regression/grace-part-combine.ly +%%EXAMPLESDIR%%/regression/grace-staff-length.ly +%%EXAMPLESDIR%%/regression/grace-start.ly +%%EXAMPLESDIR%%/regression/grace-stems.ly +%%EXAMPLESDIR%%/regression/grace-sync.ly +%%EXAMPLESDIR%%/regression/grace-unfold-repeat.ly +%%EXAMPLESDIR%%/regression/grace-volta-repeat-2.ly +%%EXAMPLESDIR%%/regression/grace-volta-repeat.ly +%%EXAMPLESDIR%%/regression/grace.ly +%%EXAMPLESDIR%%/regression/hairpin-ending.ly +%%EXAMPLESDIR%%/regression/hara-kiri-pianostaff.ly +%%EXAMPLESDIR%%/regression/instrument-name-markup.ly +%%EXAMPLESDIR%%/regression/instrument-name-partial.ly +%%EXAMPLESDIR%%/regression/instrument-name.ly +%%EXAMPLESDIR%%/regression/key-clefs.ly +%%EXAMPLESDIR%%/regression/key-signature-scordatura.ly +%%EXAMPLESDIR%%/regression/keys.ly +%%EXAMPLESDIR%%/regression/lyric-align.ly +%%EXAMPLESDIR%%/regression/lyric-combine-polyphonic.ly +%%EXAMPLESDIR%%/regression/lyric-combine.ly +%%EXAMPLESDIR%%/regression/lyric-extender.ly +%%EXAMPLESDIR%%/regression/lyric-hyphen.ly +%%EXAMPLESDIR%%/regression/lyric-phrasing.ly +%%EXAMPLESDIR%%/regression/lyrics-bar.ly +%%EXAMPLESDIR%%/regression/lyrics-extender.ly +%%EXAMPLESDIR%%/regression/lyrics-melisma-beam.ly +%%EXAMPLESDIR%%/regression/lyrics-multi-stanza.ly +%%EXAMPLESDIR%%/regression/markup-note.ly +%%EXAMPLESDIR%%/regression/markup-stack.ly +%%EXAMPLESDIR%%/regression/measure-grouping.ly +%%EXAMPLESDIR%%/regression/mensural.ly +%%EXAMPLESDIR%%/regression/metronome-marking.ly +%%EXAMPLESDIR%%/regression/mm-rests2.ly +%%EXAMPLESDIR%%/regression/mmrest-collision.ly +%%EXAMPLESDIR%%/regression/molecule-hacking.ly +%%EXAMPLESDIR%%/regression/multi-measure-rest-center.ly +%%EXAMPLESDIR%%/regression/multi-measure-rest-grace.ly +%%EXAMPLESDIR%%/regression/multi-measure-rest-instr-name.ly +%%EXAMPLESDIR%%/regression/multi-measure-rest-text.ly +%%EXAMPLESDIR%%/regression/multi-measure-rest.ly +%%EXAMPLESDIR%%/regression/music-map.ly +%%EXAMPLESDIR%%/regression/new-markup-syntax.ly +%%EXAMPLESDIR%%/regression/non-empty-text.ly +%%EXAMPLESDIR%%/regression/note-group-bracket.ly +%%EXAMPLESDIR%%/regression/note-head-chord.ly +%%EXAMPLESDIR%%/regression/note-head-style.ly +%%EXAMPLESDIR%%/regression/note-line.ly +%%EXAMPLESDIR%%/regression/number-staff-lines.ly +%%EXAMPLESDIR%%/regression/ottava-broken.ly +%%EXAMPLESDIR%%/regression/ottava.ly +%%EXAMPLESDIR%%/regression/output-property.ly +%%EXAMPLESDIR%%/regression/pc-mmrest.ly +%%EXAMPLESDIR%%/regression/pc-switch-slur.ly +%%EXAMPLESDIR%%/regression/percent-repeat-skipbars.ly +%%EXAMPLESDIR%%/regression/percent-repeat.ly +%%EXAMPLESDIR%%/regression/phrasing-slur.ly +%%EXAMPLESDIR%%/regression/prefatory-empty-spacing.ly +%%EXAMPLESDIR%%/regression/prefatory-spacing-matter.ly +%%EXAMPLESDIR%%/regression/property-once.ly +%%EXAMPLESDIR%%/regression/rehearsal-mark.ly +%%EXAMPLESDIR%%/regression/repeat-fold.ly +%%EXAMPLESDIR%%/regression/repeat-line-break.ly +%%EXAMPLESDIR%%/regression/repeat-percent-skipbars.ly +%%EXAMPLESDIR%%/regression/repeat-percent.ly +%%EXAMPLESDIR%%/regression/repeat-slash.ly +%%EXAMPLESDIR%%/regression/repeat-unfold-all.ly +%%EXAMPLESDIR%%/regression/repeat-unfold.ly +%%EXAMPLESDIR%%/regression/repeat-volta-skip-alternatives.ly +%%EXAMPLESDIR%%/regression/repeat-volta.ly +%%EXAMPLESDIR%%/regression/rest-collision-default.ly +%%EXAMPLESDIR%%/regression/rest-collision.ly +%%EXAMPLESDIR%%/regression/rest-ledger.ly +%%EXAMPLESDIR%%/regression/rest-pitch.ly +%%EXAMPLESDIR%%/regression/rest.ly +%%EXAMPLESDIR%%/regression/rhythmic-staff.ly +%%EXAMPLESDIR%%/regression/script-collision.ly +%%EXAMPLESDIR%%/regression/script-stack-order.ly +%%EXAMPLESDIR%%/regression/script-stacked.ly +%%EXAMPLESDIR%%/regression/size11.ly +%%EXAMPLESDIR%%/regression/size13.ly +%%EXAMPLESDIR%%/regression/size16.ly +%%EXAMPLESDIR%%/regression/size20.ly +%%EXAMPLESDIR%%/regression/size23.ly +%%EXAMPLESDIR%%/regression/size26.ly +%%EXAMPLESDIR%%/regression/slur-area.ly +%%EXAMPLESDIR%%/regression/slur-attachment.ly +%%EXAMPLESDIR%%/regression/slur-broken-trend.ly +%%EXAMPLESDIR%%/regression/slur-cross-staff.ly +%%EXAMPLESDIR%%/regression/slur-dots.ly +%%EXAMPLESDIR%%/regression/slur-nice.ly +%%EXAMPLESDIR%%/regression/slur-rest.ly +%%EXAMPLESDIR%%/regression/slur-staccato.ly +%%EXAMPLESDIR%%/regression/slur-stem-broken.ly +%%EXAMPLESDIR%%/regression/slur-symmetry-1.ly +%%EXAMPLESDIR%%/regression/slur-symmetry.ly +%%EXAMPLESDIR%%/regression/spacing-accidental-staffs.ly +%%EXAMPLESDIR%%/regression/spacing-accidental-stretch.ly +%%EXAMPLESDIR%%/regression/spacing-accidental.ly +%%EXAMPLESDIR%%/regression/spacing-bar-stem.ly +%%EXAMPLESDIR%%/regression/spacing-clef-first-note.ly +%%EXAMPLESDIR%%/regression/spacing-end-of-line.ly +%%EXAMPLESDIR%%/regression/spacing-ended-voice.ly +%%EXAMPLESDIR%%/regression/spacing-folded-clef.ly +%%EXAMPLESDIR%%/regression/spacing-folded-clef2.ly +%%EXAMPLESDIR%%/regression/spacing-grace-duration.ly +%%EXAMPLESDIR%%/regression/spacing-grace.ly +%%EXAMPLESDIR%%/regression/spacing-knee.ly +%%EXAMPLESDIR%%/regression/spacing-multi-tuplet.ly +%%EXAMPLESDIR%%/regression/spacing-note-flags.ly +%%EXAMPLESDIR%%/regression/spacing-rest.ly +%%EXAMPLESDIR%%/regression/spacing-short-notes.ly +%%EXAMPLESDIR%%/regression/spacing-stem-bar.ly +%%EXAMPLESDIR%%/regression/spacing-stem-direction.ly +%%EXAMPLESDIR%%/regression/spacing-stem-same-direction.ly +%%EXAMPLESDIR%%/regression/spacing-to-grace.ly +%%EXAMPLESDIR%%/regression/spacing-very-tight.ly +%%EXAMPLESDIR%%/regression/span-bar.ly +%%EXAMPLESDIR%%/regression/staccato-pos.ly +%%EXAMPLESDIR%%/regression/staff-tweak.ly +%%EXAMPLESDIR%%/regression/stanza-number.ly +%%EXAMPLESDIR%%/regression/stem-direction.ly +%%EXAMPLESDIR%%/regression/stem-shorten.ly +%%EXAMPLESDIR%%/regression/stem-spacing.ly +%%EXAMPLESDIR%%/regression/stem-tremolo.ly +%%EXAMPLESDIR%%/regression/system-extents.ly +%%EXAMPLESDIR%%/regression/system-start-bracket.ly +%%EXAMPLESDIR%%/regression/text-spanner.ly +%%EXAMPLESDIR%%/regression/tie-accidental.ly +%%EXAMPLESDIR%%/regression/tie-break-accidental.ly +%%EXAMPLESDIR%%/regression/tie-busy-grobs.ly +%%EXAMPLESDIR%%/regression/tie-chord-partial.ly +%%EXAMPLESDIR%%/regression/tie-chord.ly +%%EXAMPLESDIR%%/regression/tie-dots.ly +%%EXAMPLESDIR%%/regression/tie-grace.ly +%%EXAMPLESDIR%%/regression/tie.ly +%%EXAMPLESDIR%%/regression/tuplet-beam.ly +%%EXAMPLESDIR%%/regression/tuplet-nest.ly +%%EXAMPLESDIR%%/regression/tuplet-properties.ly +%%EXAMPLESDIR%%/regression/tuplet-rest.ly +%%EXAMPLESDIR%%/regression/tuplet-staffline-collision.ly +%%EXAMPLESDIR%%/regression/tuplets.ly +%%EXAMPLESDIR%%/regression/voice-follower.ly +%%EXAMPLESDIR%%/regression/volta-broken-left-edge.ly +%%EXAMPLESDIR%%/regression/volta-multi-staff.ly +%%EXAMPLESDIR%%/screech-boink.ly +%%EXAMPLESDIR%%/scripts/lilypond-login +%%EXAMPLESDIR%%/scripts/lilypond-profile +%%EXAMPLESDIR%%/template/README +%%EXAMPLESDIR%%/template/gregorian-transcription.ly +%%EXAMPLESDIR%%/template/header.ly +%%EXAMPLESDIR%%/template/jazz-combo.ly +%%EXAMPLESDIR%%/template/melody-chords.ly +%%EXAMPLESDIR%%/template/melody-lyrics-chords.ly +%%EXAMPLESDIR%%/template/melody-lyrics.ly +%%EXAMPLESDIR%%/template/melody.ly +%%EXAMPLESDIR%%/template/piano-4-voices.ly +%%EXAMPLESDIR%%/template/piano-dynamics.ly +%%EXAMPLESDIR%%/template/piano-lyrics.ly +%%EXAMPLESDIR%%/template/piano-melody-lyrics.ly +%%EXAMPLESDIR%%/template/piano.ly +%%EXAMPLESDIR%%/template/satb.ly +%%EXAMPLESDIR%%/test/+.ly +%%EXAMPLESDIR%%/test/ac-extra-voice.ly +%%EXAMPLESDIR%%/test/add-staccato.ly +%%EXAMPLESDIR%%/test/add-text-script.ly +%%EXAMPLESDIR%%/test/ancient-accidentals.ly +%%EXAMPLESDIR%%/test/ancient-font.ly +%%EXAMPLESDIR%%/test/ancient-time.ly +%%EXAMPLESDIR%%/test/bagpipe.ly +%%EXAMPLESDIR%%/test/bar-always.ly +%%EXAMPLESDIR%%/test/bar-lines-lyric-only.ly +%%EXAMPLESDIR%%/test/bar-lines.ly +%%EXAMPLESDIR%%/test/bar-number-every-five-reset.ly +%%EXAMPLESDIR%%/test/bar-number-regular-interval.ly +%%EXAMPLESDIR%%/test/bar-number-show-all.ly +%%EXAMPLESDIR%%/test/beam-auto-4-8.ly +%%EXAMPLESDIR%%/test/beam-auto-override.ly +%%EXAMPLESDIR%%/test/beam-auto.ly +%%EXAMPLESDIR%%/test/beam-control.ly +%%EXAMPLESDIR%%/test/beam-count.ly +%%EXAMPLESDIR%%/test/beam-dir-functions.ly +%%EXAMPLESDIR%%/test/beam-isknee.ly +%%EXAMPLESDIR%%/test/beam-neutral-direction.ly +%%EXAMPLESDIR%%/test/beam-rest.ly +%%EXAMPLESDIR%%/test/blank-notes.ly +%%EXAMPLESDIR%%/test/blank-paper-tab.ly +%%EXAMPLESDIR%%/test/blank-paper.ly +%%EXAMPLESDIR%%/test/boxed-molecule.ly +%%EXAMPLESDIR%%/test/caps.ly +%%EXAMPLESDIR%%/test/cautionaries.ly +%%EXAMPLESDIR%%/test/chord-names-german.ly +%%EXAMPLESDIR%%/test/chord-names-jazz.ly +%%EXAMPLESDIR%%/test/chord-names-no-inversions.ly +%%EXAMPLESDIR%%/test/chords-without-melody.ly +%%EXAMPLESDIR%%/test/clef-8-syntax.ly +%%EXAMPLESDIR%%/test/clef-end-of-line.ly +%%EXAMPLESDIR%%/test/clef-manual-control.ly +%%EXAMPLESDIR%%/test/coriolan-margin.ly +%%EXAMPLESDIR%%/test/count-systems.ly +%%EXAMPLESDIR%%/test/crescendi.ly +%%EXAMPLESDIR%%/test/cue-notes.ly +%%EXAMPLESDIR%%/test/divisiones.ly +%%EXAMPLESDIR%%/test/drarn-slurs.ly +%%EXAMPLESDIR%%/test/drarn.ly +%%EXAMPLESDIR%%/test/dynamic-absolute-volume.ly +%%EXAMPLESDIR%%/test/dynamic-extra.ly +%%EXAMPLESDIR%%/test/embedded-postscript.ly +%%EXAMPLESDIR%%/test/embedded-scm.ly +%%EXAMPLESDIR%%/test/embedded-tex.ly +%%EXAMPLESDIR%%/test/explicit.ly +%%EXAMPLESDIR%%/test/extra-offset.ly +%%EXAMPLESDIR%%/test/extra-staff.ly +%%EXAMPLESDIR%%/test/fill-a4.ly +%%EXAMPLESDIR%%/test/follow-thread.ly +%%EXAMPLESDIR%%/test/force-hshift.ly +%%EXAMPLESDIR%%/test/gourlay.ly +%%EXAMPLESDIR%%/test/gregorian-scripts.ly +%%EXAMPLESDIR%%/test/harmonic.ly +%%EXAMPLESDIR%%/test/header-ifelse.ly +%%EXAMPLESDIR%%/test/hshift.ly +%%EXAMPLESDIR%%/test/hymn.ly +%%EXAMPLESDIR%%/test/improv.ly +%%EXAMPLESDIR%%/test/incipit.ly +%%EXAMPLESDIR%%/test/instrument-name-grandstaff.ly +%%EXAMPLESDIR%%/test/ly2dvi-testpage.ly +%%EXAMPLESDIR%%/test/maximum-rest-count.ly +%%EXAMPLESDIR%%/test/mensural-ligatures.ly +%%EXAMPLESDIR%%/test/midi-scales.ly +%%EXAMPLESDIR%%/test/move-accidentals.ly +%%EXAMPLESDIR%%/test/move-specific-text.ly +%%EXAMPLESDIR%%/test/music-box.ly +%%EXAMPLESDIR%%/test/music-creation.ly +%%EXAMPLESDIR%%/test/nested-groups.ly +%%EXAMPLESDIR%%/test/no-bar-lines.ly +%%EXAMPLESDIR%%/test/no-staff.ly +%%EXAMPLESDIR%%/test/octave-duplicate.ly +%%EXAMPLESDIR%%/test/ossia.ly +%%EXAMPLESDIR%%/test/part-combine-moments.ly +%%EXAMPLESDIR%%/test/part-combine-staff.ly +%%EXAMPLESDIR%%/test/part-combine.ly +%%EXAMPLESDIR%%/test/partial-blank.ly +%%EXAMPLESDIR%%/test/pedal.ly +%%EXAMPLESDIR%%/test/phrasing-slur-height.ly +%%EXAMPLESDIR%%/test/polymetric-differing-notes.ly +%%EXAMPLESDIR%%/test/polymetric.ly +%%EXAMPLESDIR%%/test/preset-extent.ly +%%EXAMPLESDIR%%/test/repeat-manual.ly +%%EXAMPLESDIR%%/test/repeat-shorter-bracket.ly +%%EXAMPLESDIR%%/test/repeat.ly +%%EXAMPLESDIR%%/test/rest-dot-positions.ly +%%EXAMPLESDIR%%/test/rests.ly +%%EXAMPLESDIR%%/test/reverse-music.ly +%%EXAMPLESDIR%%/test/rhythm-excercise.ly +%%EXAMPLESDIR%%/test/scales-greek.ly +%%EXAMPLESDIR%%/test/scheme-interactions.ly +%%EXAMPLESDIR%%/test/script-abbreviations.ly +%%EXAMPLESDIR%%/test/script-chart.ly +%%EXAMPLESDIR%%/test/script-priority.ly +%%EXAMPLESDIR%%/test/script-stack.ly +%%EXAMPLESDIR%%/test/separate-staccato.ly +%%EXAMPLESDIR%%/test/slur-attachment-override.ly +%%EXAMPLESDIR%%/test/slur-beautiful.ly +%%EXAMPLESDIR%%/test/slur-dash.ly +%%EXAMPLESDIR%%/test/slur-minimum-length.ly +%%EXAMPLESDIR%%/test/slur-shape.ly +%%EXAMPLESDIR%%/test/slur-ugly.ly +%%EXAMPLESDIR%%/test/smart-transpose.ly +%%EXAMPLESDIR%%/test/spacing-2.ly +%%EXAMPLESDIR%%/test/spanner-after-break-tweak.ly +%%EXAMPLESDIR%%/test/staff-bracket.ly +%%EXAMPLESDIR%%/test/staff-container.ly +%%EXAMPLESDIR%%/test/staff-lines.ly +%%EXAMPLESDIR%%/test/staff-size.ly +%%EXAMPLESDIR%%/test/staff-space.ly +%%EXAMPLESDIR%%/test/stem-centered.ly +%%EXAMPLESDIR%%/test/stem-cross-staff.ly +%%EXAMPLESDIR%%/test/stem-extend.ly +%%EXAMPLESDIR%%/test/stem-length.ly +%%EXAMPLESDIR%%/test/tablature-hammer.ly +%%EXAMPLESDIR%%/test/tablature.ly +%%EXAMPLESDIR%%/test/text-spanner.ly +%%EXAMPLESDIR%%/test/textscript.ly +%%EXAMPLESDIR%%/test/tie-sparse.ly +%%EXAMPLESDIR%%/test/time-signature-double.ly +%%EXAMPLESDIR%%/test/time.ly +%%EXAMPLESDIR%%/test/timing.ly +%%EXAMPLESDIR%%/test/title.ly +%%EXAMPLESDIR%%/test/to-xml.ly +%%EXAMPLESDIR%%/test/transposition.ly +%%EXAMPLESDIR%%/test/trill.ly +%%EXAMPLESDIR%%/test/trills.ly +%%EXAMPLESDIR%%/test/unfold-all-repeats.ly +%%EXAMPLESDIR%%/test/vaticana.ly +%%EXAMPLESDIR%%/test/version-output.ly +%%EXAMPLESDIR%%/test/vertical-extent.ly +%%EXAMPLESDIR%%/tutorial/brahms-original.ly +%%EXAMPLESDIR%%/tutorial/brahms-tweaked.ly +%%EXAMPLESDIR%%/tutorial/lilbook.tex +%%EXAMPLESDIR%%/twinkle-pop.ly bin/abc2ly bin/as2text bin/convert-ly @@ -6,922 +936,52 @@ bin/lilypond bin/lilypond-book bin/ly2dvi bin/midi2ly +bin/mup2ly bin/musedata2ly bin/pmx2ly -@comment @exec install-info --delete %D/info/lilypond.info %D/info/dir -@comment @exec install-info --delete %D/info/lilypond-internals.info %D/info/dir -@comment info/lilypond-internals.info -@comment info/lilypond-internals.info-1 -@comment info/lilypond-internals.info-10 -@comment info/lilypond-internals.info-11 -@comment info/lilypond-internals.info-2 -@comment info/lilypond-internals.info-3 -@comment info/lilypond-internals.info-4 -@comment info/lilypond-internals.info-5 -@comment info/lilypond-internals.info-6 -@comment info/lilypond-internals.info-7 -@comment info/lilypond-internals.info-8 -@comment info/lilypond-internals.info-9 -@comment info/lilypond.info -@comment info/lilypond.info-1 -@comment info/lilypond.info-2 -@comment info/lilypond.info-3 -@comment info/lilypond.info-4 -@comment info/lilypond.info-5 -@comment @exec install-info %D/info/lilypond.info %D/info/dir -@comment @exec install-info %D/info/lilypond-internals.info %D/info/dir -share/examples/lilypond/allfontstyle.ly -share/examples/lilypond/ascii-art/as-email.ly -share/examples/lilypond/ascii-art/as1.ly -share/examples/lilypond/ascii-art/as2.ly -share/examples/lilypond/ascii-art/asciiscript5.ly -share/examples/lilypond/ascii-art/asciiscript9.ly -share/examples/lilypond/ascii-art/r-as.ly -share/examples/lilypond/ascii-art/standchen-as5.ly -share/examples/lilypond/ascii-art/standchen-as9.ly -share/examples/lilypond/ascii-art/twinkle-as5.ly -share/examples/lilypond/dummy.m4 -share/examples/lilypond/example-1.ly -share/examples/lilypond/example-2.ly -share/examples/lilypond/example-3.ly -share/examples/lilypond/just-friends.ly -share/examples/lilypond/les-nereides.ly -share/examples/lilypond/mutopia-header.ly -share/examples/lilypond/mutopia/E.Satie/petite-ouverture-a-danser.ly -share/examples/lilypond/mutopia/F.Schubert/standchen.ly -share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes/header.ly -share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes/preludes-1.ly -share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes/preludes-2.ly -share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes/preludes-3.ly -share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes/preludes-4.ly -share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes/preludes-5.ly -share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes/preludes-6.ly -share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes/preludes-score.ly -share/examples/lilypond/mutopia/J.S.Bach/baerenreiter-sarabande.ly -share/examples/lilypond/mutopia/J.S.Bach/wtk1-fugue1.ly -share/examples/lilypond/mutopia/J.S.Bach/wtk1-fugue2.ly -share/examples/lilypond/mutopia/J.S.Bach/wtk1-prelude1.ly -share/examples/lilypond/mutopia/R.Schumann/romanze-op28-2.ly -share/examples/lilypond/mutopia/W.A.Mozart/mozart-hrn-3.ly -share/examples/lilypond/mutopia/W.A.Mozart/mozart-hrn3-allegro.ly -share/examples/lilypond/mutopia/W.A.Mozart/mozart-hrn3-defs.ly -share/examples/lilypond/mutopia/W.A.Mozart/mozart-hrn3-romanze.ly -share/examples/lilypond/mutopia/W.A.Mozart/mozart-hrn3-rondo.ly -share/examples/lilypond/mutopia/claop.py -share/examples/lilypond/no-notation/README -share/examples/lilypond/no-notation/bar-check.ly -share/examples/lilypond/no-notation/beam-warn.ly -share/examples/lilypond/no-notation/denneboom.ly -share/examples/lilypond/no-notation/die-staff.ly -share/examples/lilypond/no-notation/parse.ly -share/examples/lilypond/no-notation/parse2.ly -share/examples/lilypond/no-notation/parse3.ly -share/examples/lilypond/no-notation/parse4.ly -share/examples/lilypond/no-notation/pc-direction.ly -share/examples/lilypond/no-notation/textcresc.ly -share/examples/lilypond/opus-130.ly -share/examples/lilypond/paddy.abc -share/examples/lilypond/praeludium-fuga-E.ly -share/examples/lilypond/regression/+.ly -share/examples/lilypond/regression/abe.ly -share/examples/lilypond/regression/accidental-cautionary.ly -share/examples/lilypond/regression/accidental-double.ly -share/examples/lilypond/regression/accidental-ledger.ly -share/examples/lilypond/regression/accidental-octave.ly -share/examples/lilypond/regression/accidental-placement.ly -share/examples/lilypond/regression/accidental-single-double.ly -share/examples/lilypond/regression/accidental-unbroken-tie-spacing.ly -share/examples/lilypond/regression/accidental-voice.ly -share/examples/lilypond/regression/accidental.ly -share/examples/lilypond/regression/accidentals.ly -share/examples/lilypond/regression/arpeggio-collision.ly -share/examples/lilypond/regression/arpeggio.ly -share/examples/lilypond/regression/auto-beam-bar.ly -share/examples/lilypond/regression/auto-beam-tuplets.ly -share/examples/lilypond/regression/auto-change.ly -share/examples/lilypond/regression/bar-number.ly -share/examples/lilypond/regression/bar-scripts.ly -share/examples/lilypond/regression/beam-auto-knee.ly -share/examples/lilypond/regression/beam-center-slope.ly -share/examples/lilypond/regression/beam-concave.ly -share/examples/lilypond/regression/beam-cross-staff-auto-knee.ly -share/examples/lilypond/regression/beam-cross-staff-slope.ly -share/examples/lilypond/regression/beam-cross-staff.ly -share/examples/lilypond/regression/beam-default-lengths.ly -share/examples/lilypond/regression/beam-extreme.ly -share/examples/lilypond/regression/beam-french.ly -share/examples/lilypond/regression/beam-funky-beamlet.ly -share/examples/lilypond/regression/beam-funky.ly -share/examples/lilypond/regression/beam-length.ly -share/examples/lilypond/regression/beam-manual.ly -share/examples/lilypond/regression/beam-multiple-cross-staff.ly -share/examples/lilypond/regression/beam-over-barline.ly -share/examples/lilypond/regression/beam-position.ly -share/examples/lilypond/regression/beam-quarter.ly -share/examples/lilypond/regression/beam-shortened-lengths.ly -share/examples/lilypond/regression/beamed-chord.ly -share/examples/lilypond/regression/beaming-ternary-metrum.ly -share/examples/lilypond/regression/beaming.ly -share/examples/lilypond/regression/beams.ly -share/examples/lilypond/regression/between-systems.ly -share/examples/lilypond/regression/break.ly -share/examples/lilypond/regression/breathing-sign.ly -share/examples/lilypond/regression/chord-changes.ly -share/examples/lilypond/regression/chord-names.ly -share/examples/lilypond/regression/chord-tremolo.ly -share/examples/lilypond/regression/clefs.ly -share/examples/lilypond/regression/collision-2.ly -share/examples/lilypond/regression/collision-dots.ly -share/examples/lilypond/regression/collision-heads.ly -share/examples/lilypond/regression/collision-mesh.ly -share/examples/lilypond/regression/collisions.ly -share/examples/lilypond/regression/completion-heads.ly -share/examples/lilypond/regression/dot-flag-collision.ly -share/examples/lilypond/regression/dots.ly -share/examples/lilypond/regression/drums.ly -share/examples/lilypond/regression/dynamics-broken-hairpin.ly -share/examples/lilypond/regression/dynamics-glyphs.ly -share/examples/lilypond/regression/dynamics-line.ly -share/examples/lilypond/regression/dynamics-unbound-hairpin.ly -share/examples/lilypond/regression/easy-notation.ly -share/examples/lilypond/regression/figured-bass.ly -share/examples/lilypond/regression/fingering.ly -share/examples/lilypond/regression/font-magnification.ly -share/examples/lilypond/regression/generic-output-property.ly -share/examples/lilypond/regression/glissando.ly -share/examples/lilypond/regression/grace-auto-beam.ly -share/examples/lilypond/regression/grace-bar-line.ly -share/examples/lilypond/regression/grace-bar-number.ly -share/examples/lilypond/regression/grace-beam.ly -share/examples/lilypond/regression/grace-dynamic.ly -share/examples/lilypond/regression/grace-nest.ly -share/examples/lilypond/regression/grace-nest1.ly -share/examples/lilypond/regression/grace-nest2.ly -share/examples/lilypond/regression/grace-nest3.ly -share/examples/lilypond/regression/grace-nest4.ly -share/examples/lilypond/regression/grace-nest5.ly -share/examples/lilypond/regression/grace-part-combine.ly -share/examples/lilypond/regression/grace-staff-length.ly -share/examples/lilypond/regression/grace-start.ly -share/examples/lilypond/regression/grace-stems.ly -share/examples/lilypond/regression/grace-sync.ly -share/examples/lilypond/regression/grace-unfold-repeat.ly -share/examples/lilypond/regression/grace-volta-repeat.ly -share/examples/lilypond/regression/grace.ly -share/examples/lilypond/regression/hairpin-ending.ly -share/examples/lilypond/regression/hara-kiri-pianostaff.ly -share/examples/lilypond/regression/hara-kiri-short.ly -share/examples/lilypond/regression/key-signature-scordatura.ly -share/examples/lilypond/regression/keys.ly -share/examples/lilypond/regression/lyric-align.ly -share/examples/lilypond/regression/lyric-combine.ly -share/examples/lilypond/regression/lyric-phrasing.ly -share/examples/lilypond/regression/lyrics-bar.ly -share/examples/lilypond/regression/lyrics-extender.ly -share/examples/lilypond/regression/lyrics-multi-stanza.ly -share/examples/lilypond/regression/markup-stack.ly -share/examples/lilypond/regression/mensural.ly -share/examples/lilypond/regression/merge-differently-dotted.ly -share/examples/lilypond/regression/mm-rests2.ly -share/examples/lilypond/regression/molecule-hacking.ly -share/examples/lilypond/regression/multi-measure-rest.ly -share/examples/lilypond/regression/non-empty-text.ly -share/examples/lilypond/regression/note-head-chord.ly -share/examples/lilypond/regression/note-head-style.ly -share/examples/lilypond/regression/note-line.ly -share/examples/lilypond/regression/number-staff-lines.ly -share/examples/lilypond/regression/pc-mmrest.ly -share/examples/lilypond/regression/pc-switch-slur.ly -share/examples/lilypond/regression/pedal.ly -share/examples/lilypond/regression/percent-repeat.ly -share/examples/lilypond/regression/phrasing-slur.ly -share/examples/lilypond/regression/prefatory-spacing-matter.ly -share/examples/lilypond/regression/repeat-fold.ly -share/examples/lilypond/regression/repeat-line-break.ly -share/examples/lilypond/regression/repeat-unfold-all.ly -share/examples/lilypond/regression/repeat-unfold.ly -share/examples/lilypond/regression/repeat-volta-skip-alternatives.ly -share/examples/lilypond/regression/repeat-volta.ly -share/examples/lilypond/regression/rest-collision-default.ly -share/examples/lilypond/regression/rest-collision.ly -share/examples/lilypond/regression/rest-ledger.ly -share/examples/lilypond/regression/rest-pitch.ly -share/examples/lilypond/regression/rest.ly -share/examples/lilypond/regression/rhythmic-staff.ly -share/examples/lilypond/regression/script-collision.ly -share/examples/lilypond/regression/script-stack-order.ly -share/examples/lilypond/regression/script-stacked.ly -share/examples/lilypond/regression/slur-attachment.ly -share/examples/lilypond/regression/slur-broken-trend.ly -share/examples/lilypond/regression/slur-cross-staff.ly -share/examples/lilypond/regression/slur-dots.ly -share/examples/lilypond/regression/slur-nice.ly -share/examples/lilypond/regression/slur-rest.ly -share/examples/lilypond/regression/slur-staccato.ly -share/examples/lilypond/regression/slur-stem-broken.ly -share/examples/lilypond/regression/slur-symmetry-1.ly -share/examples/lilypond/regression/slur-symmetry.ly -share/examples/lilypond/regression/spacing-accidental-staffs.ly -share/examples/lilypond/regression/spacing-accidental.ly -share/examples/lilypond/regression/spacing-bar-stem.ly -share/examples/lilypond/regression/spacing-clef-first-note.ly -share/examples/lilypond/regression/spacing-ended-voice.ly -share/examples/lilypond/regression/spacing-folded-clef.ly -share/examples/lilypond/regression/spacing-folded-clef2.ly -share/examples/lilypond/regression/spacing-grace-duration.ly -share/examples/lilypond/regression/spacing-grace.ly -share/examples/lilypond/regression/spacing-knee.ly -share/examples/lilypond/regression/spacing-loose.ly -share/examples/lilypond/regression/spacing-natural.ly -share/examples/lilypond/regression/spacing-note-flags.ly -share/examples/lilypond/regression/spacing-rest.ly -share/examples/lilypond/regression/spacing-short-notes.ly -share/examples/lilypond/regression/spacing-stem-bar.ly -share/examples/lilypond/regression/spacing-stem-direction.ly -share/examples/lilypond/regression/spacing-stem-same-direction.ly -share/examples/lilypond/regression/spacing-tight.ly -share/examples/lilypond/regression/spacing-very-tight.ly -share/examples/lilypond/regression/span-bar.ly -share/examples/lilypond/regression/staccato-pos.ly -share/examples/lilypond/regression/staff-margin.ly -share/examples/lilypond/regression/staff-tweak.ly -share/examples/lilypond/regression/stanza-number.ly -share/examples/lilypond/regression/stem-direction-down.ly -share/examples/lilypond/regression/stem-direction.ly -share/examples/lilypond/regression/stem-spacing.ly -share/examples/lilypond/regression/stem-tremolo.ly -share/examples/lilypond/regression/system-extents.ly -share/examples/lilypond/regression/system-start-bracket.ly -share/examples/lilypond/regression/text-spanner.ly -share/examples/lilypond/regression/tie-accidental.ly -share/examples/lilypond/regression/tie-break-accidental.ly -share/examples/lilypond/regression/tie-busy-grobs.ly -share/examples/lilypond/regression/tie-chord.ly -share/examples/lilypond/regression/tie-dots.ly -share/examples/lilypond/regression/tie-grace.ly -share/examples/lilypond/regression/tie.ly -share/examples/lilypond/regression/triplets.ly -share/examples/lilypond/regression/tup.ly -share/examples/lilypond/regression/tuplet-beam.ly -share/examples/lilypond/regression/tuplet-nest.ly -share/examples/lilypond/regression/tuplet-properties.ly -share/examples/lilypond/regression/tuplet-staffline-collision.ly -share/examples/lilypond/regression/volta-broken-left-edge.ly -share/examples/lilypond/rhythm.ly -share/examples/lilypond/scarlatti-paper.ly -share/examples/lilypond/scarlatti-properties.ly -share/examples/lilypond/scarlatti-test.ly -share/examples/lilypond/size11.ly -share/examples/lilypond/size13.ly -share/examples/lilypond/size16.ly -share/examples/lilypond/size20.ly -share/examples/lilypond/size23.ly -share/examples/lilypond/size26.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-folded.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-intro.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-lyrics.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-notes.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-omkvaed-volta1.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-omkvaed-volta2.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-omkvaed-volta3.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-omkvaed.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-outro.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-unfolded.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-vers-volta1.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-vers-volta2.ly -share/examples/lilypond/sondag-morgen/sondag-morgen-vers.ly -share/examples/lilypond/sondag-morgen/sondag-morgen.ly -share/examples/lilypond/star-spangled-banner.ly -share/examples/lilypond/template/README -share/examples/lilypond/template/header.ly -share/examples/lilypond/template/melody-chords.ly -share/examples/lilypond/template/melody-lyrics-chords.ly -share/examples/lilypond/template/melody-lyrics.ly -share/examples/lilypond/template/melody.ly -share/examples/lilypond/template/piano-4-voices.ly -share/examples/lilypond/template/piano-dynamics.ly -share/examples/lilypond/template/piano-lyrics.ly -share/examples/lilypond/template/piano-melody-lyrics.ly -share/examples/lilypond/template/piano.ly -share/examples/lilypond/template/satb.ly -share/examples/lilypond/test/+.ly -share/examples/lilypond/test/Cc-chords.ly -share/examples/lilypond/test/absolute-volume.ly -share/examples/lilypond/test/ac-extra-voice.ly -share/examples/lilypond/test/accid.ly -share/examples/lilypond/test/accidental-spacing.ly -share/examples/lilypond/test/add-staccato.ly -share/examples/lilypond/test/add-text-script.ly -share/examples/lilypond/test/ambitus.ly -share/examples/lilypond/test/american-chords.ly -share/examples/lilypond/test/ancient-font.ly -share/examples/lilypond/test/ancient-time.ly -share/examples/lilypond/test/auto-beam-4-8.ly -share/examples/lilypond/test/auto-beam-override.ly -share/examples/lilypond/test/auto-beam-triplet.ly -share/examples/lilypond/test/auto-beam.ly -share/examples/lilypond/test/bagpipe.ly -share/examples/lilypond/test/banter-chords.ly -share/examples/lilypond/test/bar-lines.ly -share/examples/lilypond/test/bar-script-visibility.ly -share/examples/lilypond/test/barline-lyric-only.ly -share/examples/lilypond/test/beam-abbrev.ly -share/examples/lilypond/test/beam-chord.ly -share/examples/lilypond/test/beam-control.ly -share/examples/lilypond/test/beam-count.ly -share/examples/lilypond/test/beam-damp.ly -share/examples/lilypond/test/beam-dir-function.ly -share/examples/lilypond/test/beam-dir-functions.ly -share/examples/lilypond/test/beam-dir.ly -share/examples/lilypond/test/beam-isknee.ly -share/examples/lilypond/test/beam-neutral-direction.ly -share/examples/lilypond/test/beam-pos.ly -share/examples/lilypond/test/beam-position.ly -share/examples/lilypond/test/beam-rest.ly -share/examples/lilypond/test/beam-second.ly -share/examples/lilypond/test/beam-stem-test.ly -share/examples/lilypond/test/beam-suspect.ly -share/examples/lilypond/test/beam-trend.ly -share/examples/lilypond/test/beamed-slur-endings.ly -share/examples/lilypond/test/beams.ly -share/examples/lilypond/test/blank-notes.ly -share/examples/lilypond/test/blank.ly -share/examples/lilypond/test/boxed-molecule.ly -share/examples/lilypond/test/broken-spanner-adjustment.ly -share/examples/lilypond/test/broken-thread-line.ly -share/examples/lilypond/test/broken.ly -share/examples/lilypond/test/caps.ly -share/examples/lilypond/test/cautionaries.ly -share/examples/lilypond/test/chord-banter.ly -share/examples/lilypond/test/chord-changes.ly -share/examples/lilypond/test/chord-inversion.ly -share/examples/lilypond/test/chord-markup.ly -share/examples/lilypond/test/chord-table.ly -share/examples/lilypond/test/chord-taxonomy.ly -share/examples/lilypond/test/chords.ly -share/examples/lilypond/test/clef-8-syntax.ly -share/examples/lilypond/test/coda-kludge.ly -share/examples/lilypond/test/coriolan-margin.ly -share/examples/lilypond/test/count-systems.ly -share/examples/lilypond/test/crescendi.ly -share/examples/lilypond/test/crescendo-text.ly -share/examples/lilypond/test/ct-jazz.ly -share/examples/lilypond/test/cue-notes.ly -share/examples/lilypond/test/custos.ly -share/examples/lilypond/test/default-neutral-dir.ly -share/examples/lilypond/test/defaultbars.ly -share/examples/lilypond/test/different-time-signatures.ly -share/examples/lilypond/test/diverse-spacing.ly -share/examples/lilypond/test/drarn-slurs.ly -share/examples/lilypond/test/drarn.ly -share/examples/lilypond/test/duration-check.ly -share/examples/lilypond/test/embedded-postscript.ly -share/examples/lilypond/test/embedded-scm.ly -share/examples/lilypond/test/embedded-tex.ly -share/examples/lilypond/test/equaliser.ly -share/examples/lilypond/test/explicit.ly -share/examples/lilypond/test/extra-staff.ly -share/examples/lilypond/test/fake-grace.ly -share/examples/lilypond/test/figured-bass.ly -share/examples/lilypond/test/fill-a4.ly -share/examples/lilypond/test/fingering.ly -share/examples/lilypond/test/follow-thread.ly -share/examples/lilypond/test/force-hshift.ly -share/examples/lilypond/test/gmsusd.ly -share/examples/lilypond/test/gourlay.ly -share/examples/lilypond/test/grace-end.ly -share/examples/lilypond/test/hara-kiri-switch.ly -share/examples/lilypond/test/hara-kiri.ly -share/examples/lilypond/test/harmonic.ly -share/examples/lilypond/test/header-ifelse.ly -share/examples/lilypond/test/hshift.ly -share/examples/lilypond/test/hymn.ly -share/examples/lilypond/test/improv.ly -share/examples/lilypond/test/incipit.ly -share/examples/lilypond/test/instrument-name-grandstaff.ly -share/examples/lilypond/test/instrument-name-mmrest.ly -share/examples/lilypond/test/instrument-name.ly -share/examples/lilypond/test/jazz-chords.ly -share/examples/lilypond/test/key-clefs.ly -share/examples/lilypond/test/knee-mult.ly -share/examples/lilypond/test/knee-sym.ly -share/examples/lilypond/test/knee.ly -share/examples/lilypond/test/lines.ly -share/examples/lilypond/test/ly2dvi-testpage.ly -share/examples/lilypond/test/lyric-extender.ly -share/examples/lilypond/test/lyric-hyphen.ly -share/examples/lilypond/test/lyric-phrasing.ly -share/examples/lilypond/test/lyrics.ly -share/examples/lilypond/test/manual-clef.ly -share/examples/lilypond/test/mark.ly -share/examples/lilypond/test/markup.ly -share/examples/lilypond/test/maximum-rest-count.ly -share/examples/lilypond/test/mensural-ligatures.ly -share/examples/lilypond/test/metronome.ly -share/examples/lilypond/test/midi-scales.ly -share/examples/lilypond/test/midi-tuplets.ly -share/examples/lilypond/test/mmrest-collision.ly -share/examples/lilypond/test/monstrous.ly -share/examples/lilypond/test/move-accidentals.ly -share/examples/lilypond/test/move-mark.ly -share/examples/lilypond/test/move-notehead.ly -share/examples/lilypond/test/move-specific-text.ly -share/examples/lilypond/test/multi-slope.ly -share/examples/lilypond/test/music-box.ly -share/examples/lilypond/test/music-creation.ly -share/examples/lilypond/test/nested-groups.ly -share/examples/lilypond/test/no-bar-lines.ly -share/examples/lilypond/test/no-staff.ly -share/examples/lilypond/test/no-stem-extend.ly -share/examples/lilypond/test/note-chords.ly -share/examples/lilypond/test/note-shift.ly -share/examples/lilypond/test/notemode-chords.ly -share/examples/lilypond/test/octave-duplicate.ly -share/examples/lilypond/test/orchestalpart.ly -share/examples/lilypond/test/orchestscore.ly -share/examples/lilypond/test/ossia.ly -share/examples/lilypond/test/ottava.ly -share/examples/lilypond/test/part-combine-moments.ly -share/examples/lilypond/test/part-combine-score.ly -share/examples/lilypond/test/part-combine-staff.ly -share/examples/lilypond/test/part-combine.ly -share/examples/lilypond/test/partial-blank.ly -share/examples/lilypond/test/pedal.ly -share/examples/lilypond/test/perform-grace.ly -share/examples/lilypond/test/perform-tie.ly -share/examples/lilypond/test/phrasing-slur-height.ly -share/examples/lilypond/test/preset-extent.ly -share/examples/lilypond/test/repeat-manual.ly -share/examples/lilypond/test/repeat.ly -share/examples/lilypond/test/rests.ly -share/examples/lilypond/test/reverse-music.ly -share/examples/lilypond/test/rhythm-excercise.ly -share/examples/lilypond/test/rhythmic-staff.ly -share/examples/lilypond/test/scales-greek.ly -share/examples/lilypond/test/scales.ly -share/examples/lilypond/test/script-horizontal.ly -share/examples/lilypond/test/script-priority.ly -share/examples/lilypond/test/scripts.ly -share/examples/lilypond/test/separate-staccato.ly -share/examples/lilypond/test/short-part-combine.ly -share/examples/lilypond/test/simple-slur-endings.ly -share/examples/lilypond/test/sketch.ly -share/examples/lilypond/test/sleur.ly -share/examples/lilypond/test/slur-area.ly -share/examples/lilypond/test/slur-attachment-override.ly -share/examples/lilypond/test/slur-attachment.ly -share/examples/lilypond/test/slur-broken-cross-staff.ly -share/examples/lilypond/test/slur-broken.ly -share/examples/lilypond/test/slur-damping.ly -share/examples/lilypond/test/slur-dash.ly -share/examples/lilypond/test/slur-follow-music.ly -share/examples/lilypond/test/slur-mininum.ly -share/examples/lilypond/test/slur-positions.ly -share/examples/lilypond/test/slur-proof.ly -share/examples/lilypond/test/slur-symmetry-2.ly -share/examples/lilypond/test/slur-symmetry-3.ly -share/examples/lilypond/test/slur-ugly.ly -share/examples/lilypond/test/smart-transpose.ly -share/examples/lilypond/test/solo-a2.ly -share/examples/lilypond/test/spacing-2.ly -share/examples/lilypond/test/spacing.ly -share/examples/lilypond/test/span-bars.ly -share/examples/lilypond/test/stacked-scripts.ly -share/examples/lilypond/test/staff-bracket.ly -share/examples/lilypond/test/staff-container.ly -share/examples/lilypond/test/staff-line-leading.ly -share/examples/lilypond/test/staff-lines.ly -share/examples/lilypond/test/staff-margin-partial.ly -share/examples/lilypond/test/staff-size.ly -share/examples/lilypond/test/stem-centered.ly -share/examples/lilypond/test/stem-extend.ly -share/examples/lilypond/test/stem-length.ly -share/examples/lilypond/test/stem.ly -share/examples/lilypond/test/super-sub.ly -share/examples/lilypond/test/system-start-brace.ly -share/examples/lilypond/test/system-start-bracket.ly -share/examples/lilypond/test/tab-staff.ly -share/examples/lilypond/test/tablature-hammer.ly -share/examples/lilypond/test/tablature.ly -share/examples/lilypond/test/tchaikovsky.ly -share/examples/lilypond/test/test-german-chords.ly -share/examples/lilypond/test/text-spanner.ly -share/examples/lilypond/test/textscript.ly -share/examples/lilypond/test/thumb.ly -share/examples/lilypond/test/tie-broken.ly -share/examples/lilypond/test/tie-sparse.ly -share/examples/lilypond/test/time.ly -share/examples/lilypond/test/timing.ly -share/examples/lilypond/test/title.ly -share/examples/lilypond/test/transposing.ly -share/examples/lilypond/test/transposition.ly -share/examples/lilypond/test/trill.ly -share/examples/lilypond/test/trills.ly -share/examples/lilypond/test/tuplet-rest.ly -share/examples/lilypond/test/tuplet-spanner-duration.ly -share/examples/lilypond/test/two-key.ly -share/examples/lilypond/test/two-slurs.ly -share/examples/lilypond/test/unfold-all-repeats.ly -share/examples/lilypond/test/uniform-breaking.ly -share/examples/lilypond/test/vertical-align.ly -share/examples/lilypond/test/vertical-extent.ly -share/examples/lilypond/test/vertical-text.ly -share/examples/lilypond/test/voice-switch.ly -share/examples/lilypond/test/voicify-chords.ly -share/examples/lilypond/test/volta-start.ly -share/examples/lilypond/test/volta.ly -share/examples/lilypond/trip.ly -share/examples/lilypond/tutorial/brahms-original.ly -share/examples/lilypond/tutorial/brahms-tweaked.ly -share/examples/lilypond/tutorial/flowing.ly -share/examples/lilypond/tutorial/galuppi.ly -share/examples/lilypond/tutorial/lilbook.tex -share/examples/lilypond/tutorial/miniatures.ly -share/examples/lilypond/tutorial/minuet.ly -share/examples/lilypond/tutorial/os-flute-2.ly -share/examples/lilypond/tutorial/os-music.ly -share/examples/lilypond/tutorial/os-score.ly -share/examples/lilypond/tutorial/sammartini.ly -share/examples/lilypond/tutorial/singing-saw.ly -share/examples/lilypond/tutorial/solar.ly -share/examples/lilypond/tutorial/test.ly -share/examples/lilypond/twinkle-pop.ly -share/examples/lilypond/twinkle.ly -@dirrm share/examples/lilypond/tutorial -@dirrm share/examples/lilypond/test -@dirrm share/examples/lilypond/template -@dirrm share/examples/lilypond/sondag-morgen -@dirrm share/examples/lilypond/regression -@dirrm share/examples/lilypond/no-notation -@dirrm share/examples/lilypond/mutopia/W.A.Mozart -@dirrm share/examples/lilypond/mutopia/R.Schumann -@dirrm share/examples/lilypond/mutopia/J.S.Bach/Petites-Preludes -@dirrm share/examples/lilypond/mutopia/J.S.Bach -@dirrm share/examples/lilypond/mutopia/F.Schubert -@dirrm share/examples/lilypond/mutopia/E.Satie -@dirrm share/examples/lilypond/mutopia -@dirrm share/examples/lilypond/ascii-art -@dirrm share/examples/lilypond -share/lilypond/1.6.0/VERSION -share/lilypond/1.6.0/config.make -share/lilypond/1.6.0/fonts/afm/as-braces5.afm -share/lilypond/1.6.0/fonts/afm/as-braces9.afm -share/lilypond/1.6.0/fonts/afm/as-dummy.afm -share/lilypond/1.6.0/fonts/afm/as-dummy1.afm -share/lilypond/1.6.0/fonts/afm/as-number1.afm -share/lilypond/1.6.0/fonts/afm/as-number4.afm -share/lilypond/1.6.0/fonts/afm/as5.afm -share/lilypond/1.6.0/fonts/afm/as9.afm -share/lilypond/1.6.0/fonts/afm/feta-braces0.afm -share/lilypond/1.6.0/fonts/afm/feta-braces1.afm -share/lilypond/1.6.0/fonts/afm/feta-braces2.afm -share/lilypond/1.6.0/fonts/afm/feta-braces3.afm -share/lilypond/1.6.0/fonts/afm/feta-braces4.afm -share/lilypond/1.6.0/fonts/afm/feta-braces5.afm -share/lilypond/1.6.0/fonts/afm/feta-braces6.afm -share/lilypond/1.6.0/fonts/afm/feta-braces7.afm -share/lilypond/1.6.0/fonts/afm/feta-braces8.afm -share/lilypond/1.6.0/fonts/afm/feta11.afm -share/lilypond/1.6.0/fonts/afm/feta13.afm -share/lilypond/1.6.0/fonts/afm/feta16.afm -share/lilypond/1.6.0/fonts/afm/feta19.afm -share/lilypond/1.6.0/fonts/afm/feta20.afm -share/lilypond/1.6.0/fonts/afm/feta23.afm -share/lilypond/1.6.0/fonts/afm/feta26.afm -share/lilypond/1.6.0/fonts/afm/parmesan11.afm -share/lilypond/1.6.0/fonts/afm/parmesan13.afm -share/lilypond/1.6.0/fonts/afm/parmesan16.afm -share/lilypond/1.6.0/fonts/afm/parmesan19.afm -share/lilypond/1.6.0/fonts/afm/parmesan20.afm -share/lilypond/1.6.0/fonts/afm/parmesan23.afm -share/lilypond/1.6.0/fonts/afm/parmesan26.afm -share/lilypond/1.6.0/fonts/source/as-braces5.af -share/lilypond/1.6.0/fonts/source/as-braces9.af -share/lilypond/1.6.0/fonts/source/as-dummy.af -share/lilypond/1.6.0/fonts/source/as-dummy1.af -share/lilypond/1.6.0/fonts/source/as-number1.af -share/lilypond/1.6.0/fonts/source/as-number4.af -share/lilypond/1.6.0/fonts/source/as5.af -share/lilypond/1.6.0/fonts/source/as9.af -share/lilypond/1.6.0/fonts/source/feta-accordion.mf -share/lilypond/1.6.0/fonts/source/feta-autometric.mf -share/lilypond/1.6.0/fonts/source/feta-banier.mf -share/lilypond/1.6.0/fonts/source/feta-beugel.mf -share/lilypond/1.6.0/fonts/source/feta-beum.mf -share/lilypond/1.6.0/fonts/source/feta-bolletjes.mf -share/lilypond/1.6.0/fonts/source/feta-braces0.mf -share/lilypond/1.6.0/fonts/source/feta-braces1.mf -share/lilypond/1.6.0/fonts/source/feta-braces2.mf -share/lilypond/1.6.0/fonts/source/feta-braces3.mf -share/lilypond/1.6.0/fonts/source/feta-braces4.mf -share/lilypond/1.6.0/fonts/source/feta-braces5.mf -share/lilypond/1.6.0/fonts/source/feta-braces6.mf -share/lilypond/1.6.0/fonts/source/feta-braces7.mf -share/lilypond/1.6.0/fonts/source/feta-braces8.mf -share/lilypond/1.6.0/fonts/source/feta-din-code.mf -share/lilypond/1.6.0/fonts/source/feta-din.mf -share/lilypond/1.6.0/fonts/source/feta-din10.mf -share/lilypond/1.6.0/fonts/source/feta-din11.mf -share/lilypond/1.6.0/fonts/source/feta-din12.mf -share/lilypond/1.6.0/fonts/source/feta-din13.mf -share/lilypond/1.6.0/fonts/source/feta-din14.mf -share/lilypond/1.6.0/fonts/source/feta-din17.mf -share/lilypond/1.6.0/fonts/source/feta-din19.mf -share/lilypond/1.6.0/fonts/source/feta-din4.mf -share/lilypond/1.6.0/fonts/source/feta-din5.mf -share/lilypond/1.6.0/fonts/source/feta-din6.mf -share/lilypond/1.6.0/fonts/source/feta-din7.mf -share/lilypond/1.6.0/fonts/source/feta-din8.mf -share/lilypond/1.6.0/fonts/source/feta-din9.mf -share/lilypond/1.6.0/fonts/source/feta-eindelijk.mf -share/lilypond/1.6.0/fonts/source/feta-generic.mf -share/lilypond/1.6.0/fonts/source/feta-haak.mf -share/lilypond/1.6.0/fonts/source/feta-harmonica.mf -share/lilypond/1.6.0/fonts/source/feta-ital-f.mf -share/lilypond/1.6.0/fonts/source/feta-ital-m.mf -share/lilypond/1.6.0/fonts/source/feta-ital-p.mf -share/lilypond/1.6.0/fonts/source/feta-ital-r.mf -share/lilypond/1.6.0/fonts/source/feta-ital-s.mf -share/lilypond/1.6.0/fonts/source/feta-ital-z.mf -share/lilypond/1.6.0/fonts/source/feta-klef.mf -share/lilypond/1.6.0/fonts/source/feta-macros.mf -share/lilypond/1.6.0/fonts/source/feta-nummer-code.mf -share/lilypond/1.6.0/fonts/source/feta-nummer.mf -share/lilypond/1.6.0/fonts/source/feta-nummer10.mf -share/lilypond/1.6.0/fonts/source/feta-nummer11.mf -share/lilypond/1.6.0/fonts/source/feta-nummer12.mf -share/lilypond/1.6.0/fonts/source/feta-nummer13.mf -share/lilypond/1.6.0/fonts/source/feta-nummer16.mf -share/lilypond/1.6.0/fonts/source/feta-nummer20.mf -share/lilypond/1.6.0/fonts/source/feta-nummer23.mf -share/lilypond/1.6.0/fonts/source/feta-nummer26.mf -share/lilypond/1.6.0/fonts/source/feta-nummer4.mf -share/lilypond/1.6.0/fonts/source/feta-nummer5.mf -share/lilypond/1.6.0/fonts/source/feta-nummer6.mf -share/lilypond/1.6.0/fonts/source/feta-nummer7.mf -share/lilypond/1.6.0/fonts/source/feta-nummer8.mf -share/lilypond/1.6.0/fonts/source/feta-params.mf -share/lilypond/1.6.0/fonts/source/feta-pendaal.mf -share/lilypond/1.6.0/fonts/source/feta-puntje.mf -share/lilypond/1.6.0/fonts/source/feta-schrift.mf -share/lilypond/1.6.0/fonts/source/feta-slag.mf -share/lilypond/1.6.0/fonts/source/feta-sleur.mf -share/lilypond/1.6.0/fonts/source/feta-solfa.mf -share/lilypond/1.6.0/fonts/source/feta-test11.mf -share/lilypond/1.6.0/fonts/source/feta-test13.mf -share/lilypond/1.6.0/fonts/source/feta-test16.mf -share/lilypond/1.6.0/fonts/source/feta-test20.mf -share/lilypond/1.6.0/fonts/source/feta-test23.mf -share/lilypond/1.6.0/fonts/source/feta-test26.mf -share/lilypond/1.6.0/fonts/source/feta-timesig.mf -share/lilypond/1.6.0/fonts/source/feta-toevallig.mf -share/lilypond/1.6.0/fonts/source/feta11.mf -share/lilypond/1.6.0/fonts/source/feta13.mf -share/lilypond/1.6.0/fonts/source/feta16.mf -share/lilypond/1.6.0/fonts/source/feta19.mf -share/lilypond/1.6.0/fonts/source/feta20.mf -share/lilypond/1.6.0/fonts/source/feta23.mf -share/lilypond/1.6.0/fonts/source/feta26.mf -share/lilypond/1.6.0/fonts/source/graycx.mf -share/lilypond/1.6.0/fonts/source/graylj.mf -share/lilypond/1.6.0/fonts/source/parmesan-accidentals.mf -share/lilypond/1.6.0/fonts/source/parmesan-clefs.mf -share/lilypond/1.6.0/fonts/source/parmesan-custodes.mf -share/lilypond/1.6.0/fonts/source/parmesan-flags.mf -share/lilypond/1.6.0/fonts/source/parmesan-generic.mf -share/lilypond/1.6.0/fonts/source/parmesan-heads.mf -share/lilypond/1.6.0/fonts/source/parmesan-rests.mf -share/lilypond/1.6.0/fonts/source/parmesan-scripts.mf -share/lilypond/1.6.0/fonts/source/parmesan-timesig.mf -share/lilypond/1.6.0/fonts/source/parmesan11.mf -share/lilypond/1.6.0/fonts/source/parmesan13.mf -share/lilypond/1.6.0/fonts/source/parmesan16.mf -share/lilypond/1.6.0/fonts/source/parmesan19.mf -share/lilypond/1.6.0/fonts/source/parmesan20.mf -share/lilypond/1.6.0/fonts/source/parmesan23.mf -share/lilypond/1.6.0/fonts/source/parmesan26.mf -share/lilypond/1.6.0/fonts/source/slur.mf -share/lilypond/1.6.0/fonts/tfm/feta-braces0.tfm -share/lilypond/1.6.0/fonts/tfm/feta-braces1.tfm -share/lilypond/1.6.0/fonts/tfm/feta-braces2.tfm -share/lilypond/1.6.0/fonts/tfm/feta-braces3.tfm -share/lilypond/1.6.0/fonts/tfm/feta-braces4.tfm -share/lilypond/1.6.0/fonts/tfm/feta-braces5.tfm -share/lilypond/1.6.0/fonts/tfm/feta-braces6.tfm -share/lilypond/1.6.0/fonts/tfm/feta-braces7.tfm -share/lilypond/1.6.0/fonts/tfm/feta-braces8.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din10.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din11.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din12.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din13.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din14.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din17.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din19.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din4.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din5.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din6.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din7.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din8.tfm -share/lilypond/1.6.0/fonts/tfm/feta-din9.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer10.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer11.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer12.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer13.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer16.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer20.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer23.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer26.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer4.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer5.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer6.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer7.tfm -share/lilypond/1.6.0/fonts/tfm/feta-nummer8.tfm -share/lilypond/1.6.0/fonts/tfm/feta11.tfm -share/lilypond/1.6.0/fonts/tfm/feta13.tfm -share/lilypond/1.6.0/fonts/tfm/feta16.tfm -share/lilypond/1.6.0/fonts/tfm/feta19.tfm -share/lilypond/1.6.0/fonts/tfm/feta20.tfm -share/lilypond/1.6.0/fonts/tfm/feta23.tfm -share/lilypond/1.6.0/fonts/tfm/feta26.tfm -share/lilypond/1.6.0/fonts/tfm/parmesan11.tfm -share/lilypond/1.6.0/fonts/tfm/parmesan13.tfm -share/lilypond/1.6.0/fonts/tfm/parmesan16.tfm -share/lilypond/1.6.0/fonts/tfm/parmesan19.tfm -share/lilypond/1.6.0/fonts/tfm/parmesan20.tfm -share/lilypond/1.6.0/fonts/tfm/parmesan23.tfm -share/lilypond/1.6.0/fonts/tfm/parmesan26.tfm -share/lilypond/1.6.0/ly/a4-init.ly -share/lilypond/1.6.0/ly/accordion-defs-init.ly -share/lilypond/1.6.0/ly/book-init-init.ly -share/lilypond/1.6.0/ly/catalan.ly -share/lilypond/1.6.0/ly/center-init.ly -share/lilypond/1.6.0/ly/chord-modifiers-init.ly -share/lilypond/1.6.0/ly/declarations-init.ly -share/lilypond/1.6.0/ly/deutsch.ly -share/lilypond/1.6.0/ly/drumpitch-init.ly -share/lilypond/1.6.0/ly/dynamic-scripts-init.ly -share/lilypond/1.6.0/ly/english.ly -share/lilypond/1.6.0/ly/engraver-init.ly -share/lilypond/1.6.0/ly/espanol.ly -share/lilypond/1.6.0/ly/generate-documentation.ly -share/lilypond/1.6.0/ly/generate-interface-doc-init.ly -share/lilypond/1.6.0/ly/generic-paper-init.ly -share/lilypond/1.6.0/ly/german-chords-init.ly -share/lilypond/1.6.0/ly/grace-init.ly -share/lilypond/1.6.0/ly/init.ly -share/lilypond/1.6.0/ly/italiano.ly -share/lilypond/1.6.0/ly/ledger-init.ly -share/lilypond/1.6.0/ly/legal-init.ly -share/lilypond/1.6.0/ly/letter-init.ly -share/lilypond/1.6.0/ly/midi-init.ly -share/lilypond/1.6.0/ly/nederlands.ly -share/lilypond/1.6.0/ly/norsk.ly -share/lilypond/1.6.0/ly/paper-as5-init.ly -share/lilypond/1.6.0/ly/paper-as9-init.ly -share/lilypond/1.6.0/ly/paper-init.ly -share/lilypond/1.6.0/ly/paper11-init.ly -share/lilypond/1.6.0/ly/paper11.ly -share/lilypond/1.6.0/ly/paper13-init.ly -share/lilypond/1.6.0/ly/paper13.ly -share/lilypond/1.6.0/ly/paper16-init.ly -share/lilypond/1.6.0/ly/paper16.ly -share/lilypond/1.6.0/ly/paper19.ly -share/lilypond/1.6.0/ly/paper20-init.ly -share/lilypond/1.6.0/ly/paper20.ly -share/lilypond/1.6.0/ly/paper23-init.ly -share/lilypond/1.6.0/ly/paper23.ly -share/lilypond/1.6.0/ly/paper26-init.ly -share/lilypond/1.6.0/ly/paper26.ly -share/lilypond/1.6.0/ly/params-as-init.ly -share/lilypond/1.6.0/ly/params-init.ly -share/lilypond/1.6.0/ly/part-paper-init.ly -share/lilypond/1.6.0/ly/performer-init.ly -share/lilypond/1.6.0/ly/property-init.ly -share/lilypond/1.6.0/ly/scale-definitions-init.ly -share/lilypond/1.6.0/ly/script-init.ly -share/lilypond/1.6.0/ly/spanners-init.ly -share/lilypond/1.6.0/ly/suomi.ly -share/lilypond/1.6.0/ly/svenska.ly -share/lilypond/1.6.0/make/GNUmakefile -share/lilypond/1.6.0/make/asciifont-rules.make -share/lilypond/1.6.0/make/asciifont-targets.make -share/lilypond/1.6.0/make/asciifont-vars.make -share/lilypond/1.6.0/make/generic-rules.make -share/lilypond/1.6.0/make/generic-targets.make -share/lilypond/1.6.0/make/generic-vars.make -share/lilypond/1.6.0/make/lilypond-rules.make -share/lilypond/1.6.0/make/lilypond-targets.make -share/lilypond/1.6.0/make/lilypond-vars.make -share/lilypond/1.6.0/make/lilypond.lsm.in -share/lilypond/1.6.0/make/lilypond.mandrake.spec.in -share/lilypond/1.6.0/make/lilypond.redhat.spec.in -share/lilypond/1.6.0/make/lilypond.suse.spec.in -share/lilypond/1.6.0/make/ly-rules.make -share/lilypond/1.6.0/make/ly-targets.make -share/lilypond/1.6.0/make/ly-vars.make -share/lilypond/1.6.0/make/ly.make -share/lilypond/1.6.0/make/lysdoc-rules.make -share/lilypond/1.6.0/make/lysdoc-targets.make -share/lilypond/1.6.0/make/lysdoc-vars.make -share/lilypond/1.6.0/make/mutopia-inclusions.make -share/lilypond/1.6.0/make/mutopia-rules.make -share/lilypond/1.6.0/make/mutopia-targets.make -share/lilypond/1.6.0/make/mutopia-vars.make -share/lilypond/1.6.0/make/ports-rules.make -share/lilypond/1.6.0/make/ports-targets.make -share/lilypond/1.6.0/make/ports-vars.make -share/lilypond/1.6.0/make/srcdir.make.in -share/lilypond/1.6.0/make/stepmake.make -share/lilypond/1.6.0/make/substitute.make -share/lilypond/1.6.0/make/toplevel-version.make -share/lilypond/1.6.0/ps/lilyponddefs.ps -share/lilypond/1.6.0/ps/music-drawing-routines.ps -share/lilypond/1.6.0/python/midi.so -share/lilypond/1.6.0/scm/ascii-script.scm -share/lilypond/1.6.0/scm/auto-beam.scm -share/lilypond/1.6.0/scm/backend-documentation-lib.scm -share/lilypond/1.6.0/scm/basic-properties.scm -share/lilypond/1.6.0/scm/bass-figure.scm -share/lilypond/1.6.0/scm/beam.scm -share/lilypond/1.6.0/scm/c++.scm -share/lilypond/1.6.0/scm/chord-name.scm -share/lilypond/1.6.0/scm/clef.scm -share/lilypond/1.6.0/scm/context-description.scm -share/lilypond/1.6.0/scm/documentation-lib.scm -share/lilypond/1.6.0/scm/drums.scm -share/lilypond/1.6.0/scm/engraver-documentation-lib.scm -share/lilypond/1.6.0/scm/font.scm -share/lilypond/1.6.0/scm/function-documentation.scm -share/lilypond/1.6.0/scm/generate-documentation.scm -share/lilypond/1.6.0/scm/grob-description.scm -share/lilypond/1.6.0/scm/grob-property-description.scm -share/lilypond/1.6.0/scm/interface-description.scm -share/lilypond/1.6.0/scm/lily.scm -share/lilypond/1.6.0/scm/midi.scm -share/lilypond/1.6.0/scm/molecule.scm -share/lilypond/1.6.0/scm/music-documentation-lib.scm -share/lilypond/1.6.0/scm/music-functions.scm -share/lilypond/1.6.0/scm/music-property-description.scm -share/lilypond/1.6.0/scm/output-lib.scm -share/lilypond/1.6.0/scm/pdf.scm -share/lilypond/1.6.0/scm/pdftex.scm -share/lilypond/1.6.0/scm/ps.scm -share/lilypond/1.6.0/scm/pysk.scm -share/lilypond/1.6.0/scm/script.scm -share/lilypond/1.6.0/scm/sketch.scm -share/lilypond/1.6.0/scm/slur.scm -share/lilypond/1.6.0/scm/standalone.scm -share/lilypond/1.6.0/scm/tex.scm -share/lilypond/1.6.0/scm/translator-property-description.scm -share/lilypond/1.6.0/tex/feta-braces0.tex -share/lilypond/1.6.0/tex/feta-braces1.tex -share/lilypond/1.6.0/tex/feta-braces2.tex -share/lilypond/1.6.0/tex/feta-braces3.tex -share/lilypond/1.6.0/tex/feta-braces4.tex -share/lilypond/1.6.0/tex/feta-braces5.tex -share/lilypond/1.6.0/tex/feta-braces6.tex -share/lilypond/1.6.0/tex/feta-braces7.tex -share/lilypond/1.6.0/tex/feta-braces8.tex -share/lilypond/1.6.0/tex/feta11.tex -share/lilypond/1.6.0/tex/feta13.tex -share/lilypond/1.6.0/tex/feta16.tex -share/lilypond/1.6.0/tex/feta19.tex -share/lilypond/1.6.0/tex/feta20.tex -share/lilypond/1.6.0/tex/feta23.tex -share/lilypond/1.6.0/tex/feta26.tex -share/lilypond/1.6.0/tex/headers.tex -share/lilypond/1.6.0/tex/lily-debug.tex -share/lilypond/1.6.0/tex/lily-pdf-defs.tex -share/lilypond/1.6.0/tex/lily-ps-defs.tex -share/lilypond/1.6.0/tex/lilypond-latex.tex -share/lilypond/1.6.0/tex/lilypond-plaintex.tex -share/lilypond/1.6.0/tex/lilyponddefs.tex -share/lilypond/1.6.0/tex/ltest.tex -share/lilypond/1.6.0/tex/number.tex -share/lilypond/1.6.0/tex/parmesan11.tex -share/lilypond/1.6.0/tex/parmesan13.tex -share/lilypond/1.6.0/tex/parmesan16.tex -share/lilypond/1.6.0/tex/parmesan19.tex -share/lilypond/1.6.0/tex/parmesan20.tex -share/lilypond/1.6.0/tex/parmesan23.tex -share/lilypond/1.6.0/tex/parmesan26.tex -share/lilypond/1.6.0/tex/test-pedal.tex -share/lilypond/1.6.0/tex/titledefs.tex +lib/lilypond/2.0.1/python/midi.so +share/locale/cs/LC_MESSAGES/lilypond.mo +share/locale/da/LC_MESSAGES/lilypond.mo share/locale/de/LC_MESSAGES/lilypond.mo +share/locale/es/LC_MESSAGES/lilypond.mo +share/locale/fi/LC_MESSAGES/lilypond.mo share/locale/fr/LC_MESSAGES/lilypond.mo share/locale/it/LC_MESSAGES/lilypond.mo share/locale/ja/LC_MESSAGES/lilypond.mo share/locale/nl/LC_MESSAGES/lilypond.mo share/locale/ru/LC_MESSAGES/lilypond.mo -@dirrm share/lilypond/1.6.0/tex -@dirrm share/lilypond/1.6.0/scm -@dirrm share/lilypond/1.6.0/python -@dirrm share/lilypond/1.6.0/ps -@dirrm share/lilypond/1.6.0/make -@dirrm share/lilypond/1.6.0/ly -@dirrm share/lilypond/1.6.0/fonts/tfm -@dirrm share/lilypond/1.6.0/fonts/source -@dirrm share/lilypond/1.6.0/fonts/afm -@dirrm share/lilypond/1.6.0/fonts -@dirrm share/lilypond/1.6.0 -@dirrm share/lilypond +share/locale/sv/LC_MESSAGES/lilypond.mo +@unexec rm -f %D/%%DATADIR%%/2.0.1/ls-R +@dirrm lib/lilypond/2.0.1/python +@dirrm lib/lilypond/2.0.1 +@dirrm lib/lilypond +@dirrm %%EXAMPLESDIR%%/tutorial +@dirrm %%EXAMPLESDIR%%/test +@dirrm %%EXAMPLESDIR%%/template +@dirrm %%EXAMPLESDIR%%/scripts +@dirrm %%EXAMPLESDIR%%/regression +@dirrm %%EXAMPLESDIR%%/no-notation +@dirrm %%EXAMPLESDIR%%/mutopia/W.A.Mozart +@dirrm %%EXAMPLESDIR%%/mutopia/R.Schumann +@dirrm %%EXAMPLESDIR%%/mutopia/J.S.Bach/Petites-Preludes +@dirrm %%EXAMPLESDIR%%/mutopia/J.S.Bach +@dirrm %%EXAMPLESDIR%%/mutopia/F.Schubert +@dirrm %%EXAMPLESDIR%%/mutopia/E.Satie +@dirrm %%EXAMPLESDIR%%/mutopia +@dirrm %%EXAMPLESDIR%%/ascii-art +@dirrm %%EXAMPLESDIR%% +@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%%/2.0.1/tex +@dirrm %%DATADIR%%/2.0.1/scm +@dirrm %%DATADIR%%/2.0.1/python +@dirrm %%DATADIR%%/2.0.1/ps +@dirrm %%DATADIR%%/2.0.1/make +@dirrm %%DATADIR%%/2.0.1/ly +@dirrm %%DATADIR%%/2.0.1/fonts/type1 +@dirrm %%DATADIR%%/2.0.1/fonts/tfm +@dirrm %%DATADIR%%/2.0.1/fonts/source +@dirrm %%DATADIR%%/2.0.1/fonts/afm +@dirrm %%DATADIR%%/2.0.1/fonts +@dirrm %%DATADIR%%/2.0.1/dvips +@dirrm %%DATADIR%%/2.0.1 +@dirrm %%DATADIR%% |