diff options
author | Erich Eckner <git@eckner.net> | 2020-01-24 09:50:36 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-01-24 09:50:36 +0100 |
commit | b826a2168c5d488197fca83ac7955a25ab5fb913 (patch) | |
tree | 61a8cb534762ec31d4a6b3f8091577c67c18a87c /Schmueckt_das_Fest_mit_Maien | |
parent | 7ed245ce0a4b6b0ae6f036a08e52e6e23809d1a9 (diff) | |
download | Musik-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 'Schmueckt_das_Fest_mit_Maien')
-rw-r--r-- | Schmueckt_das_Fest_mit_Maien/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Schmueckt_das_Fest_mit_Maien/Makefile b/Schmueckt_das_Fest_mit_Maien/Makefile index 90faa64..cb66cc7 100644 --- a/Schmueckt_das_Fest_mit_Maien/Makefile +++ b/Schmueckt_das_Fest_mit_Maien/Makefile @@ -14,8 +14,9 @@ include ../.meta/*.mk %.pre: %.ly cat "$<" > "$@" -%.post: %.pre +%.post: %.pre $(patsubst %.ly,%.pre, $(shell ls *.ly)) m4 <"$<" >"$@" -%.pdf: %.post $(patsubst %.ly,%.post, $(shell ls *.ly)) +%.pdf: %.post lilypond $< + pkill -SIGHUP -xf "mupdf $@" || true |