summaryrefslogtreecommitdiff
path: root/O_komm_du_Geist_der_Wahrheit
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-01-24 09:50:36 +0100
committerErich Eckner <git@eckner.net>2020-01-24 09:50:36 +0100
commitb826a2168c5d488197fca83ac7955a25ab5fb913 (patch)
tree61a8cb534762ec31d4a6b3f8091577c67c18a87c /O_komm_du_Geist_der_Wahrheit
parent7ed245ce0a4b6b0ae6f036a08e52e6e23809d1a9 (diff)
downloadMusik-b826a2168c5d488197fca83ac7955a25ab5fb913.tar.xz
es gibt jetzt nur noch *ein* Makefile (bis auf Konzerte) - wenn was nicht geht: altes Makefile raussuchen und das generische Makefile updaten, sodass es wieder läuft!
Diffstat (limited to 'O_komm_du_Geist_der_Wahrheit')
-rw-r--r--O_komm_du_Geist_der_Wahrheit/Makefile35
1 files changed, 8 insertions, 27 deletions
diff --git a/O_komm_du_Geist_der_Wahrheit/Makefile b/O_komm_du_Geist_der_Wahrheit/Makefile
index 1d86955..cb66cc7 100644
--- a/O_komm_du_Geist_der_Wahrheit/Makefile
+++ b/O_komm_du_Geist_der_Wahrheit/Makefile
@@ -1,18 +1,4 @@
CURDOC=$(shell basename "$(CURDIR)")
-STROPHEN=[^%]
-
-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 ($(UNTERSTIMMEN),1)
- UNTERSTIMMEN_REGEX=s@%unterstimme%@@
-else
- UNTERSTIMMEN_REGEX=
-endif
all: $(CURDOC).pdf
pkill -SIGHUP -xf 'mupdf(-x11)? (.*/)?$<' || true
@@ -23,19 +9,14 @@ clean:
Clean: clean
rm -f *.pdf *.midi
+include ../.meta/*.mk
+
%.pre: %.ly
- sed " \
- s@%spezifisch%@$(SPEZIFISCH)@ ; \
- s@%spezifisch%@$(SPEZIFISCH)@ ; \
- $(UNTERSTIMMEN_REGEX); \
- /%STR_\($(STROPHEN)\)%/{ \
- s/%[A-Z_0-9]\+%//; \
- p; \
- d; \
- }; \
- /%[A-Z_0-9]\+%/d \
- " "$<" > "$@"
+ cat "$<" > "$@"
-%.pdf: %.pre *.ly
- lilypond $<
+%.post: %.pre $(patsubst %.ly,%.pre, $(shell ls *.ly))
+ m4 <"$<" >"$@"
+%.pdf: %.post
+ lilypond $<
+ pkill -SIGHUP -xf "mupdf $@" || true