home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog-asm / adev11.lha / docs / slib.doc < prev    next >
Encoding:
Text File  |  1992-08-20  |  1.3 KB  |  39 lines

  1. NAME
  2.  
  3.     slib
  4.  
  5. SYNOPSIS
  6.  
  7.     slib [-a<1>] [-r<1>] [-l] [-c<1>] <library name>
  8.  
  9.             <1>  - one file
  10.  
  11. DESCRIPTION
  12.  
  13. Slib is the librarian for the DEV11 system. The following options are
  14. recognized by slib:
  15.  
  16. -a              Specifies an object file that will be added to the
  17.                 library.  The -a option may be used more than once.
  18.  
  19. -c              Specifies a file that contains option commands to be
  20.                 processed by slib.  The file may be broken into lines,
  21.                 but each line must start with an option.  A command
  22.                 file can specify another command file and more than one
  23.                 command file can be used.  An example file might look as
  24.                 shown below.
  25.                     -adownload.o
  26.                     -rcowtown.o
  27.                     -l
  28.  
  29. -l              Causes a listing of the library to be sent to the console
  30.                 (unless redirected). The listing includes the name of the
  31.                 module, its size (not the code size), and the symbols that
  32.                 are available from that module.  The -l option can be used
  33.                 more than once.
  34.  
  35. -r              Specifies an object module to be removed from the library.
  36.                 The -r option may be used more than once.
  37.  
  38. One and only one library must be specified for each invocation of slib.
  39.