# -------------------------------------------------------------------
# type "make" command in Unix to create the asst5.zip file to hand in
# -------------------------------------------------------------------

handin:
	zip -r asst5.zip baby-sat.mlw baby-sat/
	@echo "Don't forget to submit asst5-sol.pdf separately to Gradescope!"

handout:
	pdflatex asst5 ; pdflatex asst5
	zip -r asst5.zip Makefile asst5.tex lecnotes.sty hw.sty fp-macros.tex asst5.pdf asst5-sol.tex baby-sat.mlw
	mv asst5.zip asst5.pdf ../../www/assignments/

clean:
	(rm -rf *.aux *.bbl *.blg *.glg *.glo *.gls *.ilg *.ist *.lof *.log *.lot *.nlo *.nls *.out *.toc *.synctex.gz)

