
Directory tree structure
========================

The src/ directory contains the RmiJdbc source tree:
- org/objectweb/rmijdbc/ (main source tree)
- RmiJdbc/ (deprecated - for backward compatibility)

The doc/ directory contains the HTML documentation

The classes/ and dist/lib/ directories are targets for RmiJdbc compiling
and packaging phases.

Building and using RmiJdbc
==========================

To build RmiJdbc:
- JDK 1.4+ is required (JDBC 3, and JSSE)
- Go in the src/ directory
- Run "make" (all RmiJdbc classes are built into the classes/ directory)
- Run "make install" (RmiJdbc.jar is built up in the dist/lib/ directory)
- Note: "make clean" cleans up all "make" outputs (classes, and RmiJdbc.jar)

To use RmiJdbc:
- When "make install" is done, RmiJdbc.jar is in the dist/lib/ directory
- Make your CLASSPATH point on RmiJdbc.jar there
- Follow the instructions in the RmiJdbc documentation; you can issue a test
  by running "java org.objectweb.rmijdbc.RJJdbcServer"

