diff options
Diffstat (limited to 'Ein_feste_Burg_ist_unser_Gott')
-rw-r--r-- | Ein_feste_Burg_ist_unser_Gott/Makefile | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/Ein_feste_Burg_ist_unser_Gott/Makefile b/Ein_feste_Burg_ist_unser_Gott/Makefile index 25ed397..cb66cc7 100644 --- a/Ein_feste_Burg_ist_unser_Gott/Makefile +++ b/Ein_feste_Burg_ist_unser_Gott/Makefile @@ -1,12 +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 all: $(CURDOC).pdf pkill -SIGHUP -xf 'mupdf(-x11)? (.*/)?$<' || true @@ -17,17 +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 \ - " "$<" > "$@" + cat "$<" > "$@" -%.pdf: %.pre *.ly - lilypond $< +%.post: %.pre $(patsubst %.ly,%.pre, $(shell ls *.ly)) + m4 <"$<" >"$@" +%.pdf: %.post + lilypond $< + pkill -SIGHUP -xf "mupdf $@" || true |