diff --git a/01_phonetics/makefile b/01_phonetics/makefile new file mode 100644 index 0000000..06eb135 --- /dev/null +++ b/01_phonetics/makefile @@ -0,0 +1,10 @@ +all: assignment01.pdf + +show: assignment01.pdf + xdg-open $< & + +clean: + rm *.pdf + +%.pdf: %.md + pandoc -o $@ $<