diff options
Diffstat (limited to 'Ich_steh_an_deinem_Kreuz')
-rw-r--r-- | Ich_steh_an_deinem_Kreuz/Makefile | 38 |
1 files changed, 8 insertions, 30 deletions
diff --git a/Ich_steh_an_deinem_Kreuz/Makefile b/Ich_steh_an_deinem_Kreuz/Makefile index f86b876..cb66cc7 100644 --- a/Ich_steh_an_deinem_Kreuz/Makefile +++ b/Ich_steh_an_deinem_Kreuz/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 19.5) -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 @@ -29,16 +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 "$<" > "$@" + +%.post: %.pre $(patsubst %.ly,%.pre, $(shell ls *.ly)) + m4 <"$<" >"$@" -%.pdf: %.pre *.ly +%.pdf: %.post lilypond $< + pkill -SIGHUP -xf "mupdf $@" || true |