# -*- file-coding-system: *sjis*unix; -*-

all: horbstat.class horbstat.exe

test:
	java horb.tools.horbstat.horbstat

clean:
	-rm -f *~

fullclean: clean
	-rm -f *.class *.exe

horbstat.class: horbstat.java
	horbc -c horbstat.java
horbstat.exe: horbstat.cpp
	-$(CC) horbstat.cpp
	-mv horbstat.exe ..\..\bin
