SHELL=bash

# The next two rules define the default rules for compiling Java files.
.SUFFIXES: .class .java

CLASSPATH= 

# Java compilation options. Change -g to -O, or vice versa, to switch between
# debug and optimized versions.
JAVA_OPTS=-g $(CLASSPATH)

.java.class:
	javac $(JAVA_OPTS) $<

# Default target.
pdb_package:
	cd pdb; make

# Scrub the directory tree. Use this if you want to do a complete rebuild.
clean:	
	rm -f *~
	rm -f *.jar
	rm -f *.class
	cd pdb; make clean
