Begin
File:           mkdep.gz
Description:build a dependency table for the make utility.
Keywords:       make 
Version:       
Entered-date:   May 22/97 
Author:         
Ported-by:	
Original-site:	
Copying-policy: 
Supplemental:

#! /bin/ksh
#ifdef __USAGE
#%C - build a dependency table for the make utility.
#
#%C [options] file [file ...]
#
#Options:
# -a           Append to the dependencies file.
# -f <file>    Specify the name of the dependencies file (Default: .depend).
# -h           Show usage.
# -p           Don't append .o suffix to target file names.
# -u           Build standard /usr/include files into dependencies.
# -I <path>    Specify an additional include path.
# -D <sym=txt> Define a symbol.
#endif

End
