From 9bcc4ca5022e7ecdfe4bd796a4739bf7b7a72a29 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Fri, 30 Nov 2007 22:45:42 -0800 Subject: [PATCH] LSR: more setup for NR 2. --- input/new/bagpipes/AAA-intro.ly | 16 ++++++++++++++++ input/new/bagpipes/GNUmakefile | 12 ++++++++++++ input/new/bagpipes/SConscript | 5 +++++ input/new/percussion/AAA-intro.ly | 16 ++++++++++++++++ input/new/percussion/GNUmakefile | 15 +++++++++++++++ input/new/percussion/SConscript | 4 ++++ input/new/piano/AAA-intro.ly | 16 ++++++++++++++++ input/new/piano/GNUmakefile | 12 ++++++++++++ input/new/piano/SConscript | 5 +++++ input/new/strings/AAA-intro.ly | 16 ++++++++++++++++ input/new/strings/GNUmakefile | 12 ++++++++++++ input/new/strings/SConscript | 5 +++++ 12 files changed, 134 insertions(+) create mode 100644 input/new/bagpipes/AAA-intro.ly create mode 100644 input/new/bagpipes/GNUmakefile create mode 100644 input/new/bagpipes/SConscript create mode 100644 input/new/percussion/AAA-intro.ly create mode 100644 input/new/percussion/GNUmakefile create mode 100644 input/new/percussion/SConscript create mode 100644 input/new/piano/AAA-intro.ly create mode 100644 input/new/piano/GNUmakefile create mode 100644 input/new/piano/SConscript create mode 100644 input/new/strings/AAA-intro.ly create mode 100644 input/new/strings/GNUmakefile create mode 100644 input/new/strings/SConscript diff --git a/input/new/bagpipes/AAA-intro.ly b/input/new/bagpipes/AAA-intro.ly new file mode 100644 index 0000000000..93c62a94e3 --- /dev/null +++ b/input/new/bagpipes/AAA-intro.ly @@ -0,0 +1,16 @@ +\version "2.10.0" + +\header{ +texidoc = " +@unnumbered Introduction + +This document shows examples from the +@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}. + +In the web version of this document, you can click on the file name +or figure for each example to see the corresponding input file." +} + +% make sure .png is generated. +\markup{ "This document is for LilyPond version" #(ly:export(lilypond-version)) } + diff --git a/input/new/bagpipes/GNUmakefile b/input/new/bagpipes/GNUmakefile new file mode 100644 index 0000000000..a3f0b2bfde --- /dev/null +++ b/input/new/bagpipes/GNUmakefile @@ -0,0 +1,12 @@ + +depth = ../../../ + +STEPMAKE_TEMPLATES=documentation texinfo tex +LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc + +EXTRA_DIST_FILES= + +include $(depth)/make/stepmake.make + +TITLE=Sample snippets from LSR + diff --git a/input/new/bagpipes/SConscript b/input/new/bagpipes/SConscript new file mode 100644 index 0000000000..cb39d4eab0 --- /dev/null +++ b/input/new/bagpipes/SConscript @@ -0,0 +1,5 @@ +# -*-python-*- + +Import ('env', 'collate') +collate (title = 'Sample snippets from LSR') + diff --git a/input/new/percussion/AAA-intro.ly b/input/new/percussion/AAA-intro.ly new file mode 100644 index 0000000000..93c62a94e3 --- /dev/null +++ b/input/new/percussion/AAA-intro.ly @@ -0,0 +1,16 @@ +\version "2.10.0" + +\header{ +texidoc = " +@unnumbered Introduction + +This document shows examples from the +@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}. + +In the web version of this document, you can click on the file name +or figure for each example to see the corresponding input file." +} + +% make sure .png is generated. +\markup{ "This document is for LilyPond version" #(ly:export(lilypond-version)) } + diff --git a/input/new/percussion/GNUmakefile b/input/new/percussion/GNUmakefile new file mode 100644 index 0000000000..3819fda13a --- /dev/null +++ b/input/new/percussion/GNUmakefile @@ -0,0 +1,15 @@ +depth = ../../../ + +STEPMAKE_TEMPLATES=documentation texinfo tex +LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc + +## Hmm, would this work? No -- if we really want examples, move +## to other dir (input/) comes to mind. +## examples = font20 ancient-font +## LOCALSTEPMAKE_TEMPLATES += ly mutopia + +EXTRA_DIST_FILES= + +include $(depth)/make/stepmake.make + +TITLE=Advanced snippets diff --git a/input/new/percussion/SConscript b/input/new/percussion/SConscript new file mode 100644 index 0000000000..f72bfffc28 --- /dev/null +++ b/input/new/percussion/SConscript @@ -0,0 +1,4 @@ +# -*-python-*- + +Import ('env', 'collate') +collate (title = 'Advanced snippets') diff --git a/input/new/piano/AAA-intro.ly b/input/new/piano/AAA-intro.ly new file mode 100644 index 0000000000..93c62a94e3 --- /dev/null +++ b/input/new/piano/AAA-intro.ly @@ -0,0 +1,16 @@ +\version "2.10.0" + +\header{ +texidoc = " +@unnumbered Introduction + +This document shows examples from the +@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}. + +In the web version of this document, you can click on the file name +or figure for each example to see the corresponding input file." +} + +% make sure .png is generated. +\markup{ "This document is for LilyPond version" #(ly:export(lilypond-version)) } + diff --git a/input/new/piano/GNUmakefile b/input/new/piano/GNUmakefile new file mode 100644 index 0000000000..a3f0b2bfde --- /dev/null +++ b/input/new/piano/GNUmakefile @@ -0,0 +1,12 @@ + +depth = ../../../ + +STEPMAKE_TEMPLATES=documentation texinfo tex +LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc + +EXTRA_DIST_FILES= + +include $(depth)/make/stepmake.make + +TITLE=Sample snippets from LSR + diff --git a/input/new/piano/SConscript b/input/new/piano/SConscript new file mode 100644 index 0000000000..cb39d4eab0 --- /dev/null +++ b/input/new/piano/SConscript @@ -0,0 +1,5 @@ +# -*-python-*- + +Import ('env', 'collate') +collate (title = 'Sample snippets from LSR') + diff --git a/input/new/strings/AAA-intro.ly b/input/new/strings/AAA-intro.ly new file mode 100644 index 0000000000..93c62a94e3 --- /dev/null +++ b/input/new/strings/AAA-intro.ly @@ -0,0 +1,16 @@ +\version "2.10.0" + +\header{ +texidoc = " +@unnumbered Introduction + +This document shows examples from the +@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}. + +In the web version of this document, you can click on the file name +or figure for each example to see the corresponding input file." +} + +% make sure .png is generated. +\markup{ "This document is for LilyPond version" #(ly:export(lilypond-version)) } + diff --git a/input/new/strings/GNUmakefile b/input/new/strings/GNUmakefile new file mode 100644 index 0000000000..a3f0b2bfde --- /dev/null +++ b/input/new/strings/GNUmakefile @@ -0,0 +1,12 @@ + +depth = ../../../ + +STEPMAKE_TEMPLATES=documentation texinfo tex +LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc + +EXTRA_DIST_FILES= + +include $(depth)/make/stepmake.make + +TITLE=Sample snippets from LSR + diff --git a/input/new/strings/SConscript b/input/new/strings/SConscript new file mode 100644 index 0000000000..cb39d4eab0 --- /dev/null +++ b/input/new/strings/SConscript @@ -0,0 +1,5 @@ +# -*-python-*- + +Import ('env', 'collate') +collate (title = 'Sample snippets from LSR') + -- 2.39.5