summaryrefslogtreecommitdiff
path: root/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-01-03 10:49:48 +0100
committerErich Eckner <git@eckner.net>2019-01-03 10:49:48 +0100
commitb7d6674799e0acd60d44d743a53ec40bdce2793c (patch)
tree65b4f91b5865d7f04a3beac2c060d5c29be6a980 /Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile
parentcdeafe3593a9dec290537807f0c5f01ec8a4146c (diff)
downloadMusik-b7d6674799e0acd60d44d743a53ec40bdce2793c.tar.xz
Der_Herrgott_laesst_wachsen_das_taegliche_Brot neu
Diffstat (limited to 'Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile')
-rw-r--r--Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile
new file mode 100644
index 0000000..3fa24ea
--- /dev/null
+++ b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/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 $<