JAVAC = javac
JFLAGS = -g

CLASSES = Node.class Test.class myTree.class

all: ${CLASSES}

.SUFFIXES :
.SUFFIXES : .java .class

.java.class:
	${JAVAC} ${JFLAGS} $<

