diff options
author | Erich Eckner <git@eckner.net> | 2018-11-17 13:10:53 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-11-17 13:10:53 +0100 |
commit | 9e1c3bef5d8a90ae8fd8a46ba20126293486ecbf (patch) | |
tree | b1bc13ceffc8b76ca4fd617a366a9b156a98f3f9 /Weihnachtsmotette | |
parent | 86bc68fe9e0e88c67293cc5c876353a6ef6b58be (diff) | |
download | Musik-9e1c3bef5d8a90ae8fd8a46ba20126293486ecbf.tar.xz |
Weihnachtsmotette: Makefile neu
Diffstat (limited to 'Weihnachtsmotette')
-rw-r--r-- | Weihnachtsmotette/Makefile | 43 | ||||
-rw-r--r-- | Weihnachtsmotette/Weihnachtsmotette.ly | 12 |
2 files changed, 51 insertions, 4 deletions
diff --git a/Weihnachtsmotette/Makefile b/Weihnachtsmotette/Makefile new file mode 100644 index 0000000..3fa24ea --- /dev/null +++ b/Weihnachtsmotette/Makefile @@ -0,0 +1,43 @@ +CURDOC=$(shell basename "$(CURDIR)") +STROPHEN=[1-9]\|1[01] + +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 + +ifeq ($(KLAVIER),1) + KLAVIER_REGEX= +else + KLAVIER_REGEX=/%Klavier%/d; +endif + +all: $(CURDOC).pdf + +clean: + rm -f *.pre + +Clean: clean + rm -f *.pdf *.midi + +%.pre: %.ly + sed " \ + s@%spezifisch%@$(SPEZIFISCH)@ ; \ + /%STR_\($(STROPHEN)\)%/{ \ + s/%[A-Z_0-9]\+%//; \ + p; \ + d; \ + }; \ + /%[A-Z_0-9]\+%/d \ + " "$<" > "$@" + +%.pdf: %.pre *.ly + lilypond $< diff --git a/Weihnachtsmotette/Weihnachtsmotette.ly b/Weihnachtsmotette/Weihnachtsmotette.ly index 56c3e54..3827e61 100644 --- a/Weihnachtsmotette/Weihnachtsmotette.ly +++ b/Weihnachtsmotette/Weihnachtsmotette.ly @@ -1,22 +1,26 @@ \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% \pointAndClickOff \header { tagline = "" - title = "Weihnachtsmotette & Ehre sei Gott" - composer = "Fr. Silcher (1789-1860)" } \paper { top-margin = 5 + print-all-headers = ##t } \score { + \header { + title = "Weihnachtsmotette & Ehre sei Gott" + composer = "Fr. Silcher (1789-1860)" + } \layout { indent = #0 \context { |