diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-01-28 12:41:52 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-01-28 12:41:52 +0000 |
commit | fbd6c9ead48be65a615a557d3d9e610d26a02fb9 (patch) | |
tree | 94a3ba4a8677356e381c248b9a368f7ed548a5c7 /usr.bin/make/make.1 | |
parent | d2d2a72135a2801084e26a82991316e8a3f4afbf (diff) |
Use BSDmakefile in favour of [mM]akefile if existent. Good for
cases where you want BSDmake specific facilities not messing up other
implementations of make
Diffstat (limited to 'usr.bin/make/make.1')
-rw-r--r-- | usr.bin/make/make.1 | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1 index 95fc514fc0d..09f852c98ad 100644 --- a/usr.bin/make/make.1 +++ b/usr.bin/make/make.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: make.1,v 1.11 1997/09/18 14:12:37 deraadt Exp $ +.\" $OpenBSD: make.1,v 1.12 1998/01/28 12:41:51 niklas Exp $ .\" $NetBSD: make.1,v 1.18 1997/03/10 21:19:53 christos Exp $ .\" .\" Copyright (c) 1990, 1993 @@ -60,11 +60,13 @@ is a program designed to simplify the maintenance of other programs. Its input is a list of specifications as to the files upon which programs and other files depend. If the file -.Ql Pa makefile +.Ql Pa BSDmakefile exists, it is read for this list of specifications. -If it does not exist, the file +If it does not exist, the files +.Ql Pa makefile +and .Ql Pa Makefile -is read. +are tried in order. If the file .Ql Pa .depend exists, it is read (see |