MREF.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. MREF(1)                   Minix Programmer's Manual                    MREF(1)
  2. NAME
  3.      mref - make listing and cross reference map of MINIX
  4. SYNOPSIS
  5.      mref [-dlmstx] [-p n] [-n] file ...
  6. OPTIONS
  7.      -d   Do not produce definition file (global symbol table)
  8.      -l   Do not produce listing
  9.      -m   Multiple references on one line are cited only once
  10.      -p   Set initial page number to n
  11.      -s   Suppress line numbering between procedures
  12.      -t   Generate output for troff
  13.      -x   Do not produce the cross reference map
  14.      -n   Number of lines to print per page, default = 50
  15. EXAMPLES
  16.      mref *.[hc]         # List and cross reference files .h and .c
  17.      mref -60 -t *.c     # Produce troff input at 60 lines/page
  18.      mref -dx -p 100 *.c # Listing only, first page is numbered 100
  19. DESCRIPTION
  20.      In default mode, mref produces three output files: a numbered listing  of
  21.      the  input  files  (on  standard  output),  a  global  symbol  table  (on
  22.      symbol.out), and  a  cross  reference  map  to  the  global  symbols  (on
  23.      xref.out).   A global symbol in this context is one present in a #define,
  24.      PUBLIC, PRIVATE, or SYMBOL statement  (the  latter  being  introduced  to
  25.      allow users to explicitly declare certain symbols as global).  Any of the
  26.      three outputs can be suppressed, or alternatively, be made  suitable  for
  27.      input to troff for typesetting.
  28.                                                                              1