swig/SWIG/Examples/GIFPlot/Chicken/full
Jonah Beckford dc903ccc6e Added "module" target to build a dynamic module, got "clean" target to
invoke "chicken_clean" target in Examples/Makefile, and let
Examples/Makefile handle all the compiling.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4500 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-03-10 19:13:56 +00:00
..
.cvsignore
cmap
gifplot.i
Makefile
precsi.scm
README
test-gifplot.scm

This example runs the entire gifplot.h header file through SWIG without
any changes.  The Scheme program 'test-gifplot.scm' does something a 
little more interesting.  You'll have to go look at the header file to
get a complete listing of the functions.

`make' will build a version of the CHICKEN interpreter which defines
an additional unit (gifplot).  Run `./simple test-gifplot.scm' to test
it.

** If you have a platform that supports dynamic linking (most UNIXes
** and Win32), then you can run "make module".  This will create a
** dynamic module called module.dll/module.so/module.shl (depending on
** your platform), which you can use with the following:

   (load-library 'precsi "module.dll")

or

   (load-library 'gifplot "module.dll")