diff options
author | Erich Eckner <git@eckner.net> | 2019-09-13 10:24:44 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-09-13 10:25:18 +0200 |
commit | b307cb249b04686a547a821d0c30a517279fc876 (patch) | |
tree | 67d8854b4a1e878acc898a2e4717a483c9afc1af /Kanons/Er_ist_wie_ein_Baum/Makefile | |
parent | d0dc479945a1a4d689e1406c43c5e4f18bc481a1 (diff) | |
download | Musik-b307cb249b04686a547a821d0c30a517279fc876.tar.xz |
Er_ist_wie_ein_Baum neu
Diffstat (limited to 'Kanons/Er_ist_wie_ein_Baum/Makefile')
-rw-r--r-- | Kanons/Er_ist_wie_ein_Baum/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Kanons/Er_ist_wie_ein_Baum/Makefile b/Kanons/Er_ist_wie_ein_Baum/Makefile new file mode 100644 index 0000000..157c845 --- /dev/null +++ b/Kanons/Er_ist_wie_ein_Baum/Makefile @@ -0,0 +1,44 @@ +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 + pkill -SIGHUP -xf 'mupdf(-x11)? (.*/)?$<' || true + +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 $< |