diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-07-31 11:17:44 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-07-31 11:17:44 +0000 |
commit | 63ad8a549b0b4ae256d2e951855104945ccd6a07 (patch) | |
tree | 426ffdd0e311eebdb73232dfa46a299ab27c90d1 | |
parent | 713ee121493adb8abbb7c5805ff97c9543c66ee9 (diff) |
Mention that make(1) is the program using .depend files.
Useful because their format and usage is also documented there.
feedback and ok jmc@
-rw-r--r-- | usr.bin/mkdep/mkdep.1 | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/mkdep/mkdep.1 b/usr.bin/mkdep/mkdep.1 index 569cb15d872..fde76461496 100644 --- a/usr.bin/mkdep/mkdep.1 +++ b/usr.bin/mkdep/mkdep.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mkdep.1,v 1.8 2007/08/06 19:16:06 sobrado Exp $ +.\" $OpenBSD: mkdep.1,v 1.9 2011/07/31 11:17:43 schwarze Exp $ .\" $NetBSD: mkdep.1,v 1.3 1994/12/23 07:34:56 jtc Exp $ .\" .\" Copyright (c) 1987, 1990, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)mkdep.1 8.1 (Berkeley) 6/6/93 .\" -.Dd $Mdocdate: August 6 2007 $ +.Dd $Mdocdate: July 31 2011 $ .Dt MKDEP 1 .Os .Sh NAME @@ -47,7 +47,9 @@ takes a set of flags for the C compiler and a list of C source files as arguments and constructs a set of include file dependencies which are written into the file -.Pa .depend . +.Pa .depend , +for use by +.Xr make 1 . An example of its use in a Makefile might be: .Bd -literal -offset indent CFLAGS= -O -I../include |