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

all: fofrun.class fofrun.exe

test:
	java horb.tools.fofrun.fofrun

clean:
	-rm -f *~

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

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