15 lines
No EOL
336 B
Makefile
15 lines
No EOL
336 B
Makefile
.PHONY: handin clean
|
|
|
|
handin: hw1_sol.pdf hw1_code.zip
|
|
|
|
clean:
|
|
rm -f hw1_sol.pdf hw1_code.zip
|
|
|
|
hw1_sol.pdf: HW1.md
|
|
pandoc $^ -o $@
|
|
|
|
hw1_code.zip: HW1_script.m MLE_Learning.m Bayes_Learning.m Bayes_Testing.m testing_data.txt training_data.txt validation_data.txt
|
|
zip hw1_code.zip -r $^
|
|
|
|
watch-pdf:
|
|
watchexec -e md -- make hw1_sol.pdf
|