# From Thinking in Java, 2nd Edition # At http://www.BruceEckel.com # (c) Bruce Eckel 1999 # Copyright notice in Copyright.txt # Automatically-generated MAKEFILE # For examples in directory c07:controller # using the JDK 1.2 compiler # Invoke with: make JVC = javac JVCFLAGS = .SUFFIXES : .class .java .java.class : $(JVC) $(JVCFLAGS) $< all: \ Event.class \ Controller.class \ GreenhouseControls.class test: all Event.class Controller.class GreenhouseControls.class Event.class: Event.java Controller.class: Controller.java GreenhouseControls.class: GreenhouseControls.java