diff options
Diffstat (limited to 'bwv1056/Makefile')
| -rw-r--r-- | bwv1056/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bwv1056/Makefile b/bwv1056/Makefile new file mode 100644 index 0000000..fb57b81 --- /dev/null +++ b/bwv1056/Makefile @@ -0,0 +1,12 @@ +SOURCES = $(wildcard *.ly) +OUTPUTS = $(SOURCES:.ly=.pdf) + +.PHONY: clean all + +all: $(OUTPUTS) + +%.pdf: %.ly + lilypond $(OPTIONS) $< + +clean: + rm -f *.pdf *.midi |
