diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-04-21 13:17:50 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-04-21 13:17:50 +0000 |
commit | ea460b0cb47a034a8e87cb24dd8a38b9f83756e6 (patch) | |
tree | 45de242aeed8a53672890341c8d795dcca6827e2 /usr.bin | |
parent | 4f9fed7565249b264050b9445a7e0e586de0f0a3 (diff) |
- correct SYNOPSIS
- add missing options to usage() and slight sync
- point people to psd doc
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/make/main.c | 6 | ||||
-rw-r--r-- | usr.bin/make/make.1 | 9 |
2 files changed, 7 insertions, 8 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index dce07939f69..dfb4866ad40 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: main.c,v 1.64 2004/04/07 13:11:36 espie Exp $ */ +/* $OpenBSD: main.c,v 1.65 2004/04/21 13:17:49 jmc Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* @@ -822,9 +822,9 @@ static void usage() { (void)fprintf(stderr, -"usage: make [-Beiknqrst] [-D variable] [-d flags] [-f makefile ]\n\ +"usage: make [-BeiknPqrSst] [-D variable] [-d flags] [-f makefile]\n\ [-I directory] [-j max_jobs] [-m directory] [-V variable]\n\ - [variable=value] [target ...]\n"); + [NAME=value] [target ...]\n"); exit(2); } diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1 index d6212373da4..7cfcf429a77 100644 --- a/usr.bin/make/make.1 +++ b/usr.bin/make/make.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: make.1,v 1.62 2004/03/13 22:57:09 jmc Exp $ +.\" $OpenBSD: make.1,v 1.63 2004/04/21 13:17:49 jmc Exp $ .\" $OpenPackages$ .\" $NetBSD: make.1,v 1.18 1997/03/10 21:19:53 christos Exp $ .\" @@ -39,7 +39,7 @@ .Nd maintain program dependencies .Sh SYNOPSIS .Nm make -.Op Fl BPSeiknqrst +.Op Fl BeiknPqrSst .Op Fl D Ar variable .Op Fl d Ar flags .Op Fl f Ar makefile @@ -1279,9 +1279,8 @@ directory .Xr regex 3 , .Xr uname 3 .Pp -.Rs -.%T Make \- A Tutorial -.Re +"Make \(em A Tutorial", +.Pa /usr/share/doc/psd/12.make/ . .Sh STANDARDS .Nm mostly conforms to the Single Unix Specification, Version 2, |