#
# $ID$
#
# Makefile for system_mode.java
#
# Copyright 2013 NetApp, 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 CLASSPATH to
# find the manageontap-5.2.jar file.

JAVAC=javac
JAVA=java

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

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

clean :
	rm -fr *.class

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