Mozilla/mozilla/db/java/Makefile.unix
roeber%netscape.com e597bf5b5e Import of Sleepycat DB 2.4.14.1
git-svn-id: svn://10.0.0.236/trunk@12863 18797224-902f-48f8-a5cc-f745e15eee43
1998-10-15 03:56:37 +00:00

31 lines
695 B
Makefile

# @(#)Makefile.unix 10.2 (Sleepycat) 4/8/98
#
# build java source code, UNIX version
#
# Set JAVAC to your java compiler
#
JAVAC=javac
# Do not change.
# Location of DB java class directory,
# relative to the source directories.
#
DBJAVA_CLASSES=../../../../classes
# Normally, you shouldn't have to change these.
# Whether or not your CLASSPATH environment variable is
# set, the compiler should pick up the core classes.
#
JAVACFLAGS=
CLASSPATH=$(DBJAVA_CLASSES):$(CLASSPATH)
all: build_java
build_java:
mkdir -p classes
cd src/com/sleepycat/db; \
$(JAVAC) $(JAVACFLAGS) -d $(DBJAVA_CLASSES) *.java
cd src/com/sleepycat/examples; \
$(JAVAC) $(JAVACFLAGS) -d $(DBJAVA_CLASSES) *.java