summaryrefslogtreecommitdiff
path: root/usr.bin/mkdep
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>1999-06-05 01:21:54 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>1999-06-05 01:21:54 +0000
commit1805b94e6caa317d402e398fa06fa3d93d6827a0 (patch)
treee58ba56a51e58547f1d6f5a95c25435bc397c5c3 /usr.bin/mkdep
parentf35d61706eae00527a19f021ef26ab0109f18e5c (diff)
- remove trailing white space
- remove arguments from .Os macros - remove arguments from .Nm macros, where appropriate - some more Dq/Sq/Ql insanity - still lots to do in the usr.bin tree... :/
Diffstat (limited to 'usr.bin/mkdep')
-rw-r--r--usr.bin/mkdep/mkdep.118
1 files changed, 10 insertions, 8 deletions
diff --git a/usr.bin/mkdep/mkdep.1 b/usr.bin/mkdep/mkdep.1
index 96b72a6bf34..af8c813c1cf 100644
--- a/usr.bin/mkdep/mkdep.1
+++ b/usr.bin/mkdep/mkdep.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: mkdep.1,v 1.3 1998/09/26 19:55:08 aaron Exp $
+.\" $OpenBSD: mkdep.1,v 1.4 1999/06/05 01:21:34 aaron Exp $
.\" $NetBSD: mkdep.1,v 1.3 1994/12/23 07:34:56 jtc Exp $
.\"
.\" Copyright (c) 1987, 1990, 1993
@@ -36,7 +36,7 @@
.\"
.Dd June 6, 1993
.Dt MKDEP 1
-.Os BSD 4.2
+.Os
.Sh NAME
.Nm mkdep
.Nd construct Makefile dependency list
@@ -47,10 +47,11 @@
.Op Ar flags
.Ar file Op Ar ...
.Sh DESCRIPTION
-.Nm mkdep
+.Nm
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 ``.depend''.
+file dependencies which are written into the file
+.Pa .depend .
An example of its use in a Makefile might be:
.Bd -literal -offset indent
CFLAGS= -O -I../include
@@ -71,12 +72,13 @@ so that multiple
.Nm mkdep Ns 's
may be run from a single Makefile.
.It Fl f Ar file
-Write the include file dependencies to
+Write the include file dependencies to
.Ar file ,
-instead of the default ``.depend''.
+instead of the default
+.Pa .depend .
.It Fl p
Cause
-.Nm mkdep
+.Nm
to produce dependencies of the form:
.Bd -literal -offset indent
program: program.c
@@ -101,6 +103,6 @@ file containing list of dependencies
.El
.Sh HISTORY
The
-.Nm mkdep
+.Nm
command appeared in
.Bx 4.3 Tahoe .