#
# $ID$
#
# Makefile for hello_ontapi.java
#
# Copyright 2002-2013 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-5.4.jar file.

JAVAC=javac
JAVA=java

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

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

clean :
	rm -fr *.class

test :
	$(JAVA) -classpath .:$(CLASSPATH) hello_ontapi sweetpea root tryme 
