diff options
Diffstat (limited to 'Gott_hat_mir_laengst_einen_Engel_gesandt')
-rw-r--r-- | Gott_hat_mir_laengst_einen_Engel_gesandt/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Gott_hat_mir_laengst_einen_Engel_gesandt/Makefile b/Gott_hat_mir_laengst_einen_Engel_gesandt/Makefile index 0d2ab77..79587e6 100644 --- a/Gott_hat_mir_laengst_einen_Engel_gesandt/Makefile +++ b/Gott_hat_mir_laengst_einen_Engel_gesandt/Makefile @@ -24,8 +24,8 @@ include ../.meta/*.mk lilypond $< pkill -SIGHUP -xf "mupdf(-x11)? $@" || true -%-midi.midi: %-midi.post +%.midi: %-midi.post lilypond $< - -%.midi: %-midi.midi - mv $< $@ + for s in *-midi*.midi; do \ + mv "$$s" "$${s%-midi*.midi}$${s##*-midi}"; \ + done |