2cellos

2CELLOS Sheet Music
git clone git://git.jamzattack.xyz/2cellos
Log | Files | Refs | LICENSE

commit f6e708c0bca66d5e231d4867724827b215d804f2
parent 5fd2eece037b32b927f2434dc9e2fe7791fb1896
Author: Jamie Beardslee <jdb@jamzattack.xyz>
Date:   Sun,  5 Jul 2020 22:50:51 +1200

Added new Makefile

Diffstat:
Ahurt/Makefile | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/hurt/Makefile b/hurt/Makefile @@ -0,0 +1,16 @@ +.PHONY: all +.PHONY: clean + +LY = cello-1.ly cello-2.ly hurt.ly +PDF = ${LY:.ly=.pdf} + +hurt.pdf: 1.ly 2.ly hurt.ly + lilypond hurt.ly + +all: ${PDF} + +clean: + rm *.pdf *.midi + +%.pdf %.midi: %.ly + lilypond $<