# 
# Makefile for E111 Review Lab
#

reviewTester: reviewTester.c stringCompare.c sortInts.c stringSort.c
	gcc -ansi -g -Wall -pedantic -o review reviewTester.c \
	stringCompare.c sortInts.c stringSort.c


zipfile: reviewTester.c stringCompare.c sortInts.c stringSort.c
	zip reviewLab.zip reviewTester.c stringCompare.c sortInts.c \
	stringSort.c Makefile

movezip: reviewLab.zip
	chmod 064 reviewLab.zip
	mv reviewLab.zip ~/cgi-pub/E111/MishlerReview/
