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

handin:
	zip -r asst4.zip ubarray.mlw ubarray/ ind.mlw ind/
	@echo "Don't forget to submit asst4-sol.pdf separately to Gradescope!"

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

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

