

# this works with the gnu make tool. 
# gnumake (windows users, goto http://www.sourceware.cygnus.com and install
# the cygwin tools).

ROOT=../../../../../../../../
include  $(ROOT)/build-config

all: 
	$(JAVAC) *.java

clean:  emacsclean
	\rm -f *.class
	\rm -f shootist.debug
	\rm -f shootme.debug
	\rm -f shootist.txt
	\rm -f shootme.txt

