#
# $ID$
#
# Makefile for perf_operation.java
#
# Copyright 2002-2007 Network Appliance, Inc. All rights     
# reserved. Specifications subject to change without notice. 

# Note:This makefile assumes that your PATH contains 
# the bin directory which has java and javac.
# You may have to adjust the value of CL to
# find the manageontap.jar and crimson.jar files.

JAVAC=javac
JAVA=java

CLASSPATH = ../../../../lib/java/classes/manageontap.jar:../../../java/classes

all :
	$(JAVAC)  -classpath $(CLASSPATH) perf_operation.java

clean :
	rm -fr *.class

test :
	$(JAVA) -classpath .:$(CLASSPATH) perf_operation
