JAVA_FILES=`find . -name "*.java"` CLASS_FILES=`find . -name "*.class"` default: build jar run jar: jar cvfm TreeMutexToy.jar manifest *.class images/*.gif TreeMutexToy.java build: javac -deprecation $(JAVA_FILES) run: java TreeMutexToy clean: rm -f $(CLASS_FILES)