diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2024-07-19 11:44:42 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2024-07-19 11:44:42 +0200 |
commit | cfb0a6e4100ce03a077cd505fb94736dc91ea8db (patch) | |
tree | c24b3ded74e80de4595aba9ce4a16e9a2f4945f5 /CIS/Makefile | |
parent | d3e5e8da144a762c77e9db59372a3dfa54d03268 (diff) | |
download | Musik-cfb0a6e4100ce03a077cd505fb94736dc91ea8db.tar.xz |
improve CIS conversion
Diffstat (limited to 'CIS/Makefile')
-rw-r--r-- | CIS/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/CIS/Makefile b/CIS/Makefile index c8c5ec1..3b9af8b 100644 --- a/CIS/Makefile +++ b/CIS/Makefile @@ -1,7 +1,14 @@ +%.musicxml: %.capx + mscore "$<" -o "$@" + +%.ly: %.musicxml + musicxml2ly "$<" + ./post-process "$@" + %.ly: %.mxl - musicxml2ly $< + musicxml2ly "$<" ./post-process "$@" %.ly: %.xml - musicxml2ly $< + musicxml2ly "$<" ./post-process "$@" |