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

handin:
	zip -r asst7.zip unionfind.mlw unionfind/ missingP1.smt2 missingP2.smt2 missingP12.smt2
	
handout:
	pdflatex asst7 ; pdflatex asst7
	zip -r asst7.zip Makefile asst7.tex lecnotes.sty hw.sty fp-macros.tex asst7.pdf unionfind.mlw missingP1.smt2 missingP2.smt2 
	mv asst7.zip asst7.pdf ../../www/assignments/

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

