
miniGL
http://www.dsbox.com/minigl.html
http://sourceforge.net/project/?group_id=3404

(c) 2000 Digital Sandbox, Inc.
Released under the LGPL
05.16.00

INSTALLATION
------------

Make sure you have the proper development environment; namely GCC
2.7.2.2, prc-tools 0.5, and PilRC 2.5a. 

Static Lib
----------

% cd $MINIGLDIR
% make

You should then have a ligminigl.a library file you can link in, and use
the miniGL.h header file in programs to use the miniGL lib.  For compiling
apps to use the lib, be sure to use -I$(MINIGLDIR), -L$(MINIGLDIR), and
-lminigl in the proper place in the Makefile.

Shared Lib (recommended)
------------------------

% cd $MINIGLDIR
% ./make_shared.sh
% pilot-xfer -i miniGLLib.prc

You should then have a libminigl.sa library file you can link in to apps
that are to use miniGL, and use the miniGL.h header file.   Should require
no code change from using the static lib to the shared lib.    You will
also now find a miniGLLib.prc file which should be uploaded to the Palm
device that contains the shared lib code.  The libminigl.sa library file
is significantly smaller than the static libminigl.a file, and should help
prevent any 32k limit issues.

