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


sol:
	pdflatex asst6-sol ; pdflatex asst6-sol

pdf:
	pdflatex asst6 ; pdflatex asst6

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

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

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


