[REBOL] Build Package
From: carl:rebol at: 6-Jul-2001 19:38
Here is a utility that will come in handy if you are working
on a large REBOL program that includes multiple files, but
you want a single file to distribute.
This utility accepts a list of files and combines them
into a single, compressed script. The list of files can
include binary data such as images, sound, etc. See comments
in the code.
The utility does a MOLD of a LOAD for each script module, so
comments and extra spacing are stripped. (That's a trick
we use for building REBOL itself.)
The script is in the Util section of the library:
http://www.reboltech.com/library/scripts/build-pack.r
-Carl