RSS feed
[root]
/
doubledispatch
/
c12
/
code
/
TI Pattern
/
software design
/
document
login:
password:
title search:
Search this site
Enter your search terms
Web
www.carfield.com.hk
Submit search form
Prev
Next
Wed Dec 26 16:00:00 GMT 2001
makefile
# From Thinking in Patterns (with Java) by Bruce Eckel # At http://www.BruceEckel.com # (c)2001 Bruce Eckel # Copyright notice in Copyright.txt # Automatically-generated MAKEFILE # For examples in directory .\c12\doubledispatch # using the JDK 1.3 compiler # Invoke with: make HOME := ../../ ifndef MAKECMDGOALS MAKECMDGOALS := javac endif # Command.com is too weak to build this under Windows NT/2000: ifeq ($(OS),Windows_NT) COMSPEC=$(SYSTEMROOT)\system32\cmd.exe endif ifneq ($(MAKECMDGOALS),clean) include $(HOME)/$(MAKECMDGOALS).mac endif .SUFFIXES : .class .java .java.class : $(JVC) $(JVCFLAGS) $< javac: \ TypedBinMember.class \ DDAluminum.class \ DDPaper.class \ DDGlass.class \ DDCardboard.class \ TypedBin.class \ DoubleDispatch.class jikes: \ TypedBinMember.class \ DDAluminum.class \ DDPaper.class \ DDGlass.class \ DDCardboard.class \ TypedBin.class \ DoubleDispatch.class clean: ifeq ($(notdir $(SHELL)),COMMAND.COM) del *.class else rm -f *.class endif TypedBinMember.class: TypedBinMember.java DDAluminum.class: DDAluminum.java DDPaper.class: DDPaper.java DDGlass.class: DDGlass.java DDCardboard.class: DDCardboard.java TypedBin.class: TypedBin.java DoubleDispatch.class: DoubleDispatch.java $(JVC) $(JVCFLAGS) $< java com.bruceeckel.test.RunUnitTests DoubleDispatch
(google search)
(amazon search)
1
2
3
second
download zip of files only
Prev
Next