diff options
author | Erich Eckner <git@eckner.net> | 2023-02-14 19:34:12 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2023-02-14 19:34:12 +0100 |
commit | 1397023740f50d858eba0911bb66f0cc8cb6ff32 (patch) | |
tree | 2f297ec2a660236ad8f65c6a3462e05909975be1 /Froehlich_soll_mein_Herze_springen__ | |
parent | 5a7d43fa10dbcb9bfa0f213a4c391bf3286c95de (diff) | |
download | Musik-1397023740f50d858eba0911bb66f0cc8cb6ff32.tar.xz |
Strophen per Makefile konfigurierbar
Diffstat (limited to 'Froehlich_soll_mein_Herze_springen__')
-rw-r--r-- | Froehlich_soll_mein_Herze_springen__/satz.ly | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Froehlich_soll_mein_Herze_springen__/satz.ly b/Froehlich_soll_mein_Herze_springen__/satz.ly index bb7ac1f..2241b8c 100644 --- a/Froehlich_soll_mein_Herze_springen__/satz.ly +++ b/Froehlich_soll_mein_Herze_springen__/satz.ly @@ -11,25 +11,25 @@ \new Voice = "sopran" { \globalI \voiceOne \sopranMelodie } \new Voice = "alt" { \globalI \voiceTwo \altMelodie } >> - %STR_1% \new Lyrics = "textEins" {} - %STR_2% \new Lyrics = "textZwei" {} - %STR_3% \new Lyrics = "textDrei" {} - %STR_5% \new Lyrics = "textFuenf" {} - %STR_6% \new Lyrics = "textSechs" {} - %STR_7% \new Lyrics = "textSieben" {} - %STR_9% \new Lyrics = "textNeun" {} + ifdef(`STR_1',`\new Lyrics = "textEins" {}') + ifdef(`STR_2',`\new Lyrics = "textZwei" {}') + ifdef(`STR_3',`\new Lyrics = "textDrei" {}') + ifdef(`STR_5',`\new Lyrics = "textFuenf" {}') + ifdef(`STR_6',`\new Lyrics = "textSechs" {}') + ifdef(`STR_7',`\new Lyrics = "textSieben" {}') + ifdef(`STR_9',`\new Lyrics = "textNeun" {}') ifdef(`STR_11',`\new Lyrics = "textElf" {}') \new Staff = "maenner" << \new Voice = "tenor" { \globalI \clef "bass" \voiceOne \tenorMelodie } \new Voice = "bass" { \globalI \clef "bass" \voiceTwo \bassMelodie } >> - %STR_1% \context Lyrics = "textEins" \lyricsto "bass" \textI - %STR_2% \context Lyrics = "textZwei" \lyricsto "bass" \textII - %STR_3% \context Lyrics = "textDrei" \lyricsto "bass" \textIII - %STR_5% \context Lyrics = "textFuenf" \lyricsto "bass" \textV - %STR_6% \context Lyrics = "textSechs" \lyricsto "bass" \textVI - %STR_7% \context Lyrics = "textSieben" \lyricsto "bass" \textVII - %STR_9% \context Lyrics = "textNeun" \lyricsto "bass" \textIX + ifdef(`STR_1',`\context Lyrics = "textEins" \lyricsto "bass" \textI') + ifdef(`STR_2',`\context Lyrics = "textZwei" \lyricsto "bass" \textII') + ifdef(`STR_3',`\context Lyrics = "textDrei" \lyricsto "bass" \textIII') + ifdef(`STR_5',`\context Lyrics = "textFuenf" \lyricsto "bass" \textV') + ifdef(`STR_6',`\context Lyrics = "textSechs" \lyricsto "bass" \textVI') + ifdef(`STR_7',`\context Lyrics = "textSieben" \lyricsto "bass" \textVII') + ifdef(`STR_9',`\context Lyrics = "textNeun" \lyricsto "bass" \textIX') ifdef(`STR_11',`\context Lyrics = "textElf" \lyricsto "bass" \textXI') >> \layout { |