csci5521/assignments/hwk01/Makefile

15 lines
336 B
Makefile
Raw Normal View History

2023-10-02 03:55:05 +00:00
.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