From 9cfb63eb43bb81b89a63784c11df9c3631ccd2e2 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:12:48 +0000 Subject: [PATCH] lilypond-1.0.1 --- input/part.ly | 1 - mutopia/J.S.Bach/wtk1-prelude2.ly.m4 | 10 +++------- stepmake/stepmake/Install_outfiles.make | 15 +++++++++++++++ stepmake/stepmake/Installfiles.make | 15 +++++++++++++++ 4 files changed, 33 insertions(+), 8 deletions(-) create mode 100644 stepmake/stepmake/Install_outfiles.make create mode 100644 stepmake/stepmake/Installfiles.make diff --git a/input/part.ly b/input/part.ly index b2d6ad9bc2..b7beca7636 100644 --- a/input/part.ly +++ b/input/part.ly @@ -1,5 +1,4 @@ part = \melodic{ - \octave c; c-1 c c c r1*3 c4-5 c c c diff --git a/mutopia/J.S.Bach/wtk1-prelude2.ly.m4 b/mutopia/J.S.Bach/wtk1-prelude2.ly.m4 index 98f6c8a309..8d8eb6f5d0 100644 --- a/mutopia/J.S.Bach/wtk1-prelude2.ly.m4 +++ b/mutopia/J.S.Bach/wtk1-prelude2.ly.m4 @@ -12,8 +12,7 @@ define(handymeasure, `intromeasure(translit($*,` ', `,'))') -trebleIntro=\melodic { -\octave c'; +trebleIntro=\melodic \transpose c'' { handymeasure(c' es d c) handymeasure(as f e c) handymeasure(b f es d) @@ -40,7 +39,6 @@ handymeasure(as c B d) } bassIntro = \melodic { -\octave c; handymeasure(c g f es) handymeasure(c as g f) handymeasure(c as g f) @@ -71,7 +69,6 @@ handymeasure(G es d f) middlepiece = \melodic { - \octave c; \stemdown [G B d] \stemup f [as f ef] [b f d' b'] [as f e f] | @@ -79,10 +76,9 @@ middlepiece = \melodic \stemup g [c' g fis g ] [es' c' g' es'] [c' as g as]| \stemdown [G A fis] \translator Staff=treble - \stemsboth \octave c'; - c [es c B c] [fis c a fis] [es c B c] | + \stemsboth \transpose c'' { c [es c B c] [fis c a fis] [es c B c] } } -} + diff --git a/stepmake/stepmake/Install_outfiles.make b/stepmake/stepmake/Install_outfiles.make new file mode 100644 index 0000000000..53b2321dc7 --- /dev/null +++ b/stepmake/stepmake/Install_outfiles.make @@ -0,0 +1,15 @@ +# Initial_outfiles.make + +localinstall: localinstall-files + +localinstall-files: $(INSTALLATION_OUT_FILES) + $(INSTALL) -d $(INSTALLATION_OUT_DIR) + $(foreach i, $(INSTALLATION_OUT_FILES), \ + $(INSTALL) -m 644 $(i) $(INSTALLATION_OUT_DIR) && )true + +localuninstall: localuninstall-files + +localuninstall-files: + $(foreach i, $(notdir $(INSTALLATION_OUT_FILES)), \ + rm -f $(INSTALLATION_OUT_DIR)/$(i) && ) true + -rmdir $(INSTALLATION_OUT_DIR) diff --git a/stepmake/stepmake/Installfiles.make b/stepmake/stepmake/Installfiles.make new file mode 100644 index 0000000000..93d4083fe2 --- /dev/null +++ b/stepmake/stepmake/Installfiles.make @@ -0,0 +1,15 @@ +# Installfiles.make + +localinstall: localinstall-files + +localinstall-files: + $(INSTALL) -d $(INSTALLATION_DIR) + $(foreach i, $(INSTALLATION_FILES),\ + $(INSTALL) -m 644 $(i) $(INSTALLATION_DIR) &&)true + +localuninstall: localuninstall-files + +localuninstall-files: + $(foreach i, $(INSTALLATION_FILES), + rm -f $(INSTALLATION_DIR)/$(i) && ) true + -rmdir $(INSTALLATION_DIR) -- 2.39.5