MREF.1
资源名称:os_source.zip [点击查看]
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:
操作系统开发
开发平台:
C/C++
- MREF(1) Minix Programmer's Manual MREF(1)
- NAME
- mref - make listing and cross reference map of MINIX
- SYNOPSIS
- mref [-dlmstx] [-p n] [-n] file ...
- OPTIONS
- -d Do not produce definition file (global symbol table)
- -l Do not produce listing
- -m Multiple references on one line are cited only once
- -p Set initial page number to n
- -s Suppress line numbering between procedures
- -t Generate output for troff
- -x Do not produce the cross reference map
- -n Number of lines to print per page, default = 50
- EXAMPLES
- mref *.[hc] # List and cross reference files .h and .c
- mref -60 -t *.c # Produce troff input at 60 lines/page
- mref -dx -p 100 *.c # Listing only, first page is numbered 100
- DESCRIPTION
- In default mode, mref produces three output files: a numbered listing of
- the input files (on standard output), a global symbol table (on
- symbol.out), and a cross reference map to the global symbols (on
- xref.out). A global symbol in this context is one present in a #define,
- PUBLIC, PRIVATE, or SYMBOL statement (the latter being introduced to
- allow users to explicitly declare certain symbols as global). Any of the
- three outputs can be suppressed, or alternatively, be made suitable for
- input to troff for typesetting.
- 1