<< Prev | - Up - |
ozmake
The old way using ozskel
was complicated and usually not portable to Windows. The new way uses the ozmake
tool, and your should read the ozmake documentation for full details. The short story is that you write a file makefile.oz
containing a record in Oz syntax that describes your project. You publish you package simply by invoking:
ozmake --publish
Others can then install your package by invoking:
ozmake --install --package=$PKGID
where $PKGID
is your package MOGUL id.
<< Prev | - Up - |