This directory contains the source and documentation for a network
widget.  The document assumes that you have troff, the mm macro
package, and dpost.

I use the drawing function type NET_GXXOR_OP which has the following
definition:

    #ifdef OPEN_LOOK
    #define NET_GXXOR_OP	GXinvert
    #else
    #define NET_GXXOR_OP	GXxor
    #endif

This is for 386 boxes running 0L where the xor function does not do
what one would expect.

The changes to defines.imake tell the makefiles where important
directories and files are located.  Changes made to the toplevel
Makefile will be propagated to the Makefiles in the sub-directories.

The first three lines set up the widget set that is to be used.

    WIDGETSET = MOTIF
    WIDGETDIR = /usr/include/Xm
    WIDGETLIB = -lXm

The legal values for WIDGETSET are HP_WIDGETS, ATHENA, OPENLOOK, and
MOTIF.  WIDGETDIR should be set to the directory name which includes
the widget header files.  This obviously could also be something like
/usr/include/X11/widget.  WIDGETLIB is the name of the widget set
library file.

The rest of the file is used with the larger project, cp.  Now that
you have edited in all of the changes, enter in the following
commands:

	xmkmf
	make depend
	make
