diff options
author | Erich Eckner <git@eckner.net> | 2018-06-14 23:21:25 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-06-14 23:21:25 +0200 |
commit | 931ec2f6152d60366e393004ee5736869d957a8b (patch) | |
tree | ef88902649e16ef6dc49c42aa3164b395fbaa3a7 /Ins_Wasser_faellt_ein_Stein | |
parent | 0d7ef9cf63df41eb6347d9ac61c1288e8606817f (diff) | |
download | Musik-931ec2f6152d60366e393004ee5736869d957a8b.tar.xz |
Ins_Wasser_faellt_ein_Stein: Makefile neu
Diffstat (limited to 'Ins_Wasser_faellt_ein_Stein')
-rw-r--r-- | Ins_Wasser_faellt_ein_Stein/Ins_Wasser_faellt_ein_Stein.ly | 10 | ||||
-rw-r--r-- | Ins_Wasser_faellt_ein_Stein/Makefile | 23 |
2 files changed, 30 insertions, 3 deletions
diff --git a/Ins_Wasser_faellt_ein_Stein/Ins_Wasser_faellt_ein_Stein.ly b/Ins_Wasser_faellt_ein_Stein/Ins_Wasser_faellt_ein_Stein.ly index d17de6e..6bb5b9e 100644 --- a/Ins_Wasser_faellt_ein_Stein/Ins_Wasser_faellt_ein_Stein.ly +++ b/Ins_Wasser_faellt_ein_Stein/Ins_Wasser_faellt_ein_Stein.ly @@ -1,20 +1,24 @@ \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 = "" } \paper { top-margin = 5 + print-all-headers = ##t } \score { + \header { + title = "Ins Wasser fällt ein Stein" + } \new ChoirStaff << \set Score.skipBars = ##t \new Staff { diff --git a/Ins_Wasser_faellt_ein_Stein/Makefile b/Ins_Wasser_faellt_ein_Stein/Makefile new file mode 100644 index 0000000..ef6dedf --- /dev/null +++ b/Ins_Wasser_faellt_ein_Stein/Makefile @@ -0,0 +1,23 @@ +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 + +all: $(CURDOC).pdf + +clean: + rm -f *.pre + +Clean: clean + rm -f *.pdf *.midi + +%.pre: %.ly + sed "s@%spezifisch%@$(SPEZIFISCH)@" "$<" > "$@" + +%.pdf: %.pre *.ly + lilypond $< + |