
all: build

build: *.java
	javac *.java

clean:
	rm -f *.class
