home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / crssrc16 / readme < prev    next >
Text File  |  1993-07-29  |  2KB  |  50 lines

  1. /*****************************************************************************
  2. /*  FILE:        README
  3. /*  DATE:        August 1988.
  4. /*  AUTHOR:        Richard A. Culshaw.
  5. /* DISCLAIMER:        This file is deemed to be public-domain, on the simple
  6. /*            provisos that this section remains in this file and
  7. /*            that code using it do not do so for monetary gain.
  8. /*            Neither the author, nor the authors employees at the
  9. /*            time of developing this code, accept any liability or
  10. /*            responsibility for the use, abuse or misuse of this
  11. /*            code.
  12. /*****************************************************************************/
  13.  
  14.     Widgetlib is a standard C library which allows the user to define
  15. and interact with widgets (window gadget). The files provided are:
  16.  
  17. -rw-r--r--   1 pjs      net         1960 Oct 14 13:25 README
  18. -rw-r--r--   1 pjs      net         1144 Oct 14 13:23 makefile
  19. -rw-r--r--   1 pjs      net         2752 Oct 14 13:15 widget.h
  20. -rw-r--r--   1 pjs      net        10946 Oct 14 12:18 widget.ms
  21. -rw-r--r--   1 pjs      net        34817 Oct 14 13:15 widgetlib.c
  22. -rw-r--r--   1 pjs      net         3218 Oct 14 13:14 wpage.c
  23.  
  24. 1) widgetlib.c       (the actual code)
  25. 2) widget.h         (the header file which is needed in programs intending
  26.               to incorporate the library)
  27. 3) widget.ms         (an explanation of the library and how to use it)
  28. 4) wpage.c         (a little example of the library in use)
  29. 5) makefile          (compiles everything together)
  30.  
  31. Compiling things
  32. ================
  33.  
  34. Type 'make' within the directory which contains the files.
  35. This creates a local library within the directory, and creates the 
  36. executable 'wpage' (a demo for you to play with).
  37.  
  38. For general use 'widget.h' must be placed in the standard include directory
  39. and the library 'widgetlib.a' must go in a globally accessable place such
  40. as /usr/lib.
  41.  
  42. Printing doc
  43. ============
  44.  
  45. 'widget.ms' was created using the ms macros and can printed using something like
  46. 'nroff -ms widget.ms'
  47.  
  48.  
  49. Have fun. Richard C.
  50.