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

handin:
	pdflatex asst4-sol ; pdflatex asst4-sol

pdf:
	pdflatex asst4 ; pdflatex asst4

handout:
	pdflatex asst4 ; pdflatex asst4
	zip -r asst4.zip Makefile asst4.tex lecnotes.sty hw.sty fp-macros.tex asst4.pdf asst4-sol.tex
	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)

