# From Thinking in Java, 2nd Edition # At http://www.BruceEckel.com # (c) Bruce Eckel 2000 # Copyright notice in Copyright.txt # Automatically-generated MAKEFILE # For examples in directory .\c10 # using the JDK 1.2 compiler # Invoke with: make JVC = javac JVCFLAGS = .SUFFIXES : .class .java .java.class : $(JVC) $(JVCFLAGS) $< all: \ SimpleExceptionDemo.class \ FullConstructors.class \ ExtraFeatures.class \ ExceptionMethods.class \ Rethrowing.class \ ThrowOut.class \ RethrowNew.class \ NeverCaught.class \ FinallyWorks.class \ OnOffSwitch.class \ WithFinally.class \ AlwaysFinally.class \ LostMessage.class \ StormyInning.class \ Cleanup.class \ Human.class SimpleExceptionDemo.class: SimpleExceptionDemo.java FullConstructors.class: FullConstructors.java ExtraFeatures.class: ExtraFeatures.java ExceptionMethods.class: ExceptionMethods.java Rethrowing.class: Rethrowing.java ThrowOut.class: ThrowOut.java RethrowNew.class: RethrowNew.java NeverCaught.class: NeverCaught.java FinallyWorks.class: FinallyWorks.java OnOffSwitch.class: OnOffSwitch.java WithFinally.class: WithFinally.java AlwaysFinally.class: AlwaysFinally.java LostMessage.class: LostMessage.java StormyInning.class: StormyInning.java Cleanup.class: Cleanup.java Human.class: Human.java