# -*- file-coding-system: *sjis*unix; -*-
all: Server.class Server_Proxy.class Server_Skeleton.class Client.class \
	Local.class

test:
	java horb.examples.constructor.Client

clean:
	-rm -f Server_Skeleton.java Server_Proxy.java *~

fullclean: clean
	-rm -f *.class

Server_Skeleton.class Server_Proxy.class Server.class: Server.java
	horbc Server.java
Client.class: Server.class Client.java
	horbc -c Client.java

Local.class: Server.class Local.java
	horbc -c Local.java

