# @R3_COPYRIGHT@

PACKAGE = JP.ac.keio.sfc.ht.mogul.system
CLASSES = EnvironmentManager.class Identifier.class MalformedIdentifierException.class RemoteManager.class RemoteUserManager.class UserManager.class

.SUFFIXES: .java .class
.java.class :
	${JAVAC} -classpath ${SRC_DIR}:${JAVA_CLASSES} $<

all: ${CLASSES} rmi

rmi:
	${RMIC} -classpath ${SRC_DIR}:${JAVA_CLASSES} ${PACKAGE}.UserManager
