#
# $ID$
#
# Makefile for vfiler_tunnel.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) vfiler_tunnel.java

clean :
	rm -fr *.class

test :
	$(JAVA) -classpath .:$(CLASSPATH)   vfiler_tunnel vfiler1 sweetpea root tryme volume-list-info  
