# $Id: //depot/prod/zephyr/belair/src/sample/java/systemcli/Makefile#1 $
#
# 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.4.jar file.

JAVAC=javac
JAVA=java

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

all :
	$(JAVAC) -deprecation -classpath $(CLASSPATH) systemcli.java

clean :
	rm -fr *.class

test :
	$(JAVA) -classpath .:$(CLASSPATH) systemcli tweety root tryme vol status
