From 03eca6ab809b0e95607308ea9486d0597a50a61d Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 9 Mar 2018 08:51:50 +0100 Subject: Ueber_dir_wach_ein_Engel: auf Makefile umgestellt --- Ueber_dir_wach_ein_Engel/Makefile | 31 +++++++++++++++++ .../Ueber_dir_wach_ein_Engel.ly | 40 +++++++++++++--------- 2 files changed, 55 insertions(+), 16 deletions(-) create mode 100644 Ueber_dir_wach_ein_Engel/Makefile (limited to 'Ueber_dir_wach_ein_Engel') diff --git a/Ueber_dir_wach_ein_Engel/Makefile b/Ueber_dir_wach_ein_Engel/Makefile new file mode 100644 index 0000000..5b3af49 --- /dev/null +++ b/Ueber_dir_wach_ein_Engel/Makefile @@ -0,0 +1,31 @@ +CURDOC=$(shell basename "$(CURDIR)") + +ifeq ($(FUER),ewe) + SPEZIFISCH=\#(set! paper-alist (cons '(\"kindle\" . (cons (* 210 mm) (* 130 mm))) paper-alist))\n\#(set-default-paper-size \"kindle\") +else + SPEZIFISCH= + # \#(set-global-staff-size 14) +endif + +ifeq ($(MIDI),1) + MIDI_REGEX= +else + MIDI_REGEX=/\\\\midi/{ :a; s/\\\\midi[^{}]*{/\\\\midi/; tb; N; ba; :b; s/{[^{}]*}//; tb; s/\\\\midi[^{}]*}//; t; N; bb; } +endif + +all: $(CURDOC).pdf + +clean: + rm -f *.pre + +Clean: clean + rm -f *.pdf *.midi + +%.pre: %.ly + sed " \ + s@%spezifisch%@$(SPEZIFISCH)@ ; \ + $(MIDI_REGEX) \ + " "$<" > "$@" + +%.pdf: %.pre *.ly + lilypond $< diff --git a/Ueber_dir_wach_ein_Engel/Ueber_dir_wach_ein_Engel.ly b/Ueber_dir_wach_ein_Engel/Ueber_dir_wach_ein_Engel.ly index e3b4840..bca0962 100644 --- a/Ueber_dir_wach_ein_Engel/Ueber_dir_wach_ein_Engel.ly +++ b/Ueber_dir_wach_ein_Engel/Ueber_dir_wach_ein_Engel.ly @@ -1,37 +1,45 @@ \include "deutsch.ly" +#(ly:set-option 'relative-includes #t) \include "stimmen.ly" \include "texte.ly" +#(ly:set-option 'relative-includes #f) -#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist)) -#(set-default-paper-size "kindle") +%spezifisch% + +\version "2.19.80" \pointAndClickOff \header { tagline = "" - title = "Über dir wach ein Engel" } \paper { top-margin = 5 + print-all-headers = ##t } \score { - << + \header { + title = "Über dir wach ein Engel" + } + \new ChoirStaff << \set Score.skipBars = ##t - \new ChoirStaff << - \new Staff << - \new Voice = sopran { \global \voiceOne \sopranMelodie } - \new Voice = alt { \global \voiceTwo \altMelodie } - >> - \new Lyrics \lyricsto alt { \text } - \new Staff << - \new Voice = tenor { \clef "bass" \voiceOne \global \tenorMelodie } - \new Voice = bass { \clef "bass" \voiceTwo \global \bassMelodie } - >> + \new Staff << + \new Voice = sopran { \global \voiceOne \sopranMelodie } + \new Voice = alt { \global \voiceTwo \altMelodie } + >> + \new Lyrics \lyricsto alt { \text } + \new Staff << + \new Voice = tenor { \clef "bass" \voiceOne \global \tenorMelodie } + \new Voice = bass { \clef "bass" \voiceTwo \global \bassMelodie } >> >> \layout { indent = #0 - \context { \Staff \RemoveEmptyStaves } + \context { + \Staff + \RemoveEmptyStaves + \override VerticalAxisGroup #'remove-first = ##t + } } -} \ No newline at end of file +} -- cgit v1.2.3-70-g09d2