# simple generic Java makefile
# (P)2001 Laurentiu Cristofor

all: clean
	javac *.java

clean:
	rm -f *.class

clean_baks:
	rm -f *~
