####
#### Java Makefile automatically generated by jmaker 1.10
#### Creation date: Tue Feb 01 23:36:48 2000
####

#### Java compiler settings

JDK_DOS = e:/jdk1.3
JPDA_DOS = $(JDK_DOS)/lib/tools.jar
JDE_DOS = d:/jde-dev/jde
SRC_DOS = $(JDE_DOS)/java/src
CLASS_DOS = $(JDE_DOS)/java/classes
CLASSPATH_DOS = .;$(SRC_DOS);$(JPDA_DOS);$(CLASS_DOS)
COMPILER = javac
VM = java

VPATH = ../../../src/jde/debugger/command

COPTIONS = -g -deprecation -d $(CLASS_DOS)  -classpath "$(CLASSPATH_DOS)" -sourcepath $(SRC_DOS)

#### Build Rules
%.class: %.java
	$(COMPILER) $(COPTIONS) $<

#### Global target
all:	\
	AttachShmem.class \
	AttachSocket.class \
	DebugApplicationCommand.class \
	DebugCommand.class \
	DebugCommandFactory.class \
	DebugSessionCommand.class \
	LaunchApplication.class \
	ListenShmem.class \
	ListenSocket.class \
	Quit.class \
	Run.class \
	GetArray.class \
	GetString.class


#### Cleanup
clean:
	$(RM) *.class

#### Rebuild
build:	clean all

#### Usage
help:
	@echo "Usage: make [all|<single target>|clean|build|help]"
	@echo "  all             - build all as needed (default)"
	@echo "  <single target> - build the given file as needed"
	@echo "  clean           - remove all .class files"
	@echo "  build           - build all unconditionally"
	@echo "  help            - display this help"

