summaryrefslogtreecommitdiff
path: root/Ueber_dir_wach_ein_Engel
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-03-09 08:51:50 +0100
committerErich Eckner <git@eckner.net>2018-03-09 08:51:50 +0100
commit03eca6ab809b0e95607308ea9486d0597a50a61d (patch)
tree6a950f755c516943587bec8c3187ca497931e1c7 /Ueber_dir_wach_ein_Engel
parentda02707190da5cff9f667215203a81ee821f684a (diff)
downloadMusik-03eca6ab809b0e95607308ea9486d0597a50a61d.tar.xz
Ueber_dir_wach_ein_Engel: auf Makefile umgestellt
Diffstat (limited to 'Ueber_dir_wach_ein_Engel')
-rw-r--r--Ueber_dir_wach_ein_Engel/Makefile31
-rw-r--r--Ueber_dir_wach_ein_Engel/Ueber_dir_wach_ein_Engel.ly40
2 files changed, 55 insertions, 16 deletions
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
+}