diff options
author | Erich Eckner <git@eckner.net> | 2023-02-14 19:30:59 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2023-02-14 19:30:59 +0100 |
commit | 5a7d43fa10dbcb9bfa0f213a4c391bf3286c95de (patch) | |
tree | aa9c82369edb1e16c0ce88c387fa056b85ee8e58 /Nun_bitten_wir_den_Heiligen_Geist | |
parent | ced59f8b3a570bdd1ee86a69c665e28f6763ec87 (diff) | |
download | Musik-5a7d43fa10dbcb9bfa0f213a4c391bf3286c95de.tar.xz |
Strophen per Makefile konfigurierbar
Diffstat (limited to 'Nun_bitten_wir_den_Heiligen_Geist')
-rw-r--r-- | Nun_bitten_wir_den_Heiligen_Geist/Nun_bitten_wir_den_Heiligen_Geist.ly | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Nun_bitten_wir_den_Heiligen_Geist/Nun_bitten_wir_den_Heiligen_Geist.ly b/Nun_bitten_wir_den_Heiligen_Geist/Nun_bitten_wir_den_Heiligen_Geist.ly index ad75554..0b00745 100644 --- a/Nun_bitten_wir_den_Heiligen_Geist/Nun_bitten_wir_den_Heiligen_Geist.ly +++ b/Nun_bitten_wir_den_Heiligen_Geist/Nun_bitten_wir_den_Heiligen_Geist.ly @@ -29,24 +29,24 @@ include(texte.pre) \new Staff << \new Voice = sopran { \oneVoice \global \sopranMelodie } >> - %STR_1% \new Lyrics \lyricsto sopran { \sopranTextI } - %STR_2% \new Lyrics \lyricsto sopran { \sopranTextII } - %STR_3% \new Lyrics \lyricsto sopran { \sopranTextIII } - %STR_4% \new Lyrics \lyricsto sopran { \sopranTextIV } + ifdef(`STR_1',`\new Lyrics \lyricsto sopran { \sopranTextI }') + ifdef(`STR_2',`\new Lyrics \lyricsto sopran { \sopranTextII }') + ifdef(`STR_3',`\new Lyrics \lyricsto sopran { \sopranTextIII }') + ifdef(`STR_4',`\new Lyrics \lyricsto sopran { \sopranTextIV }') \new Staff << \new Voice = alt { \oneVoice \global \altMelodie } >> - %STR_1% \new Lyrics \lyricsto alt { \altTextI } - %STR_2% \new Lyrics \lyricsto alt { \altTextII } - %STR_3% \new Lyrics \lyricsto alt { \altTextIII } - %STR_4% \new Lyrics \lyricsto alt { \altTextIV } + ifdef(`STR_1',`\new Lyrics \lyricsto alt { \altTextI }') + ifdef(`STR_2',`\new Lyrics \lyricsto alt { \altTextII }') + ifdef(`STR_3',`\new Lyrics \lyricsto alt { \altTextIII }') + ifdef(`STR_4',`\new Lyrics \lyricsto alt { \altTextIV }') \new Staff << \new Voice = maenner { \oneVoice \clef "bass" \global \maennerMelodie } >> - %STR_1% \new Lyrics \lyricsto maenner { \maennerTextI } - %STR_2% \new Lyrics \lyricsto maenner { \maennerTextII } - %STR_3% \new Lyrics \lyricsto maenner { \maennerTextIII } - %STR_4% \new Lyrics \lyricsto maenner { \maennerTextIV } + ifdef(`STR_1',`\new Lyrics \lyricsto maenner { \maennerTextI }') + ifdef(`STR_2',`\new Lyrics \lyricsto maenner { \maennerTextII }') + ifdef(`STR_3',`\new Lyrics \lyricsto maenner { \maennerTextIII }') + ifdef(`STR_4',`\new Lyrics \lyricsto maenner { \maennerTextIV }') >> \layout { indent = #0 |