1987-02-04 12:45:43 +00:00
|
|
|
.TH MKDEP 1ACK
|
1987-03-11 13:56:17 +00:00
|
|
|
.ad
|
1987-02-04 12:45:43 +00:00
|
|
|
.SH NAME
|
|
|
|
mkdep \- dependency generator for C-programs
|
|
|
|
.SH SYNOPSYS
|
|
|
|
.B mkdep
|
|
|
|
file ...
|
|
|
|
.SH DESCRIPTION
|
|
|
|
.I Mkdep
|
|
|
|
scans the files in the argument list for C-preprocessor lines of the form
|
|
|
|
.DS
|
1987-08-06 14:26:45 +00:00
|
|
|
#include "\fIfile1\fP"
|
1987-02-04 12:45:43 +00:00
|
|
|
.DE
|
1987-02-09 15:06:09 +00:00
|
|
|
and produces for each file \fIarg\fR in the argument list lines of the form
|
1987-02-04 12:45:43 +00:00
|
|
|
.DS
|
1987-02-09 15:06:09 +00:00
|
|
|
\fIarg\fR: \fIfile1\fR
|
|
|
|
\fIarg\fR: \fIfile2\fR
|
|
|
|
...
|
1987-02-04 12:45:43 +00:00
|
|
|
.DE
|
|
|
|
where \fIfile1\fR, \fIfile2\fR, etc. are filenames included by \fIarg\fR, or
|
|
|
|
by a file included by \fIarg\fR, etc.
|
|
|
|
.PP
|
|
|
|
Only files in the current directory are scanned.
|
|
|
|
.SH "SEE ALSO"
|
|
|
|
make(1)
|
|
|
|
.SH BUGS
|
|
|
|
Should be able to handle files from other directories
|