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

handin:
	zip -r asst1.zip fib.mlw fib fact.mlw fact diff.mlw diff queue.mlw queue

handout:
	pdflatex asst1 ; pdflatex asst1
	zip -r asst1.zip Makefile asst1.pdf fib.mlw fact.mlw diff.mlw queue.mlw
	mv asst1.zip asst1.pdf ../../www/assignments/

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

