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

pdf:
	pdflatex asst5 ; pdflatex asst5

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

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

sol:
	pdflatex asst5-sol ; pdflatex asst5-sol

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


