# compiler JAVAC = javac # make first entry first all: main run: all java Main main: $(JAVAC) *.java clean: rm *.class