summaryrefslogtreecommitdiff
path: root/Auf_meinen_lieben_Gott/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Auf_meinen_lieben_Gott/Makefile')
-rw-r--r--Auf_meinen_lieben_Gott/Makefile40
1 files changed, 8 insertions, 32 deletions
diff --git a/Auf_meinen_lieben_Gott/Makefile b/Auf_meinen_lieben_Gott/Makefile
index a190388..cb66cc7 100644
--- a/Auf_meinen_lieben_Gott/Makefile
+++ b/Auf_meinen_lieben_Gott/Makefile
@@ -1,24 +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 ($(OBERSTIMME),1)
- OBERSTIMMEN_REGEX=s/%Oberstimme%//;
-else
- OBERSTIMMEN_REGEX=/%Oberstimme%/d;
-endif
-
-ifeq ($(UNTERSTIMME),1)
- UNTERSTIMMEN_REGEX=s/%Unterstimme%//;
-else
- UNTERSTIMMEN_REGEX=/%Unterstimme%/d;
-endif
all: $(CURDOC).pdf
pkill -SIGHUP -xf 'mupdf(-x11)? (.*/)?$<' || true
@@ -29,18 +9,14 @@ clean:
Clean: clean
rm -f *.pdf *.midi
+include ../.meta/*.mk
+
%.pre: %.ly
- sed " \
- s@%spezifisch%@$(SPEZIFISCH)@ ; \
- /%STR_\($(STROPHEN)\)%/{ \
- s/%[A-Z_0-9]\+%//; \
- p; \
- d; \
- }; \
- /%[A-Z_0-9]\+%/d; \
- $(OBERSTIMMEN_REGEX) \
- $(UNTERSTIMMEN_REGEX) \
- " "$<" > "$@"
+ cat "$<" > "$@"
+
+%.post: %.pre $(patsubst %.ly,%.pre, $(shell ls *.ly))
+ m4 <"$<" >"$@"
-%.pdf: %.pre *.ly
+%.pdf: %.post
lilypond $<
+ pkill -SIGHUP -xf "mupdf $@" || true