diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9492635 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: output/bulletin.pdf + +output/bulletin.tex: bulletin.lytex + lilypond-book --output=output --pdf bulletin.lytex + +output/bulletin.pdf: output/bulletin.tex + cd output && pdflatex bulletin.tex + +clean: + rm -rf output + +.PHONY: all clean