# Your Java Compiler
JCC=/usr/local/jdk1.1.2/bin/javac

# Flags to pass to the Java compiler
# e.g. "-g" to debug, "-O" to optimize
JCFLAGS=-O

###########################################################################
# Do not edit below this line

default: clean
	${JCC} ${JCFLAGS} JServHandler.java


clean:
	rm -f *.class
