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

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

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

pdf:
	pdflatex asst3 ; pdflatex asst3

sol:
	pdflatex asst3-sol ; pdflatex asst3-sol

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

