diff options
author | Erich Eckner <git@eckner.net> | 2019-07-31 08:49:14 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-07-31 08:49:14 +0200 |
commit | 68bc463f8f7f641a860638cc46631f5c563b5d28 (patch) | |
tree | 44477b777b258d678649242808f32b33263cad4f /Auf_meinen_lieben_Gott/Makefile | |
parent | 06628a6e926160eec7674487dbaab4db15e359cd (diff) | |
download | Musik-68bc463f8f7f641a860638cc46631f5c563b5d28.tar.xz |
Auf_meinen_lieben_Gott: Ober- und Unterstimme konfigurierbar
Diffstat (limited to 'Auf_meinen_lieben_Gott/Makefile')
-rw-r--r-- | Auf_meinen_lieben_Gott/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Auf_meinen_lieben_Gott/Makefile b/Auf_meinen_lieben_Gott/Makefile index 157c845..64d2377 100644 --- a/Auf_meinen_lieben_Gott/Makefile +++ b/Auf_meinen_lieben_Gott/Makefile @@ -8,16 +8,16 @@ else # \#(set-global-staff-size 14) endif -ifeq ($(MIDI),1) - MIDI_REGEX= +ifeq ($(OBERSTIMME),1) + OBERSTIMMEN_REGEX=s/%Oberstimme%//; else - MIDI_REGEX=/\\\\midi/{ :a; s/\\\\midi[^{}]*{/\\\\midi/; tb; N; ba; :b; s/{[^{}]*}//; tb; s/\\\\midi[^{}]*}//; t; N; bb; }; + OBERSTIMMEN_REGEX=/%Oberstimme%/d; endif -ifeq ($(KLAVIER),1) - KLAVIER_REGEX= +ifeq ($(UNTERSTIMME),1) + UNTERSTIMMEN_REGEX=s/%Unterstimme%//; else - KLAVIER_REGEX=/%Klavier%/d; + UNTERSTIMMEN_REGEX=/%Unterstimme%/d; endif all: $(CURDOC).pdf @@ -37,7 +37,9 @@ Clean: clean p; \ d; \ }; \ - /%[A-Z_0-9]\+%/d \ + /%[A-Z_0-9]\+%/d; \ + $(OBERSTIMMEN_REGEX) \ + $(UNTERSTIMMEN_REGEX) \ " "$<" > "$@" %.pdf: %.pre *.ly |