Deleted Added
full compact
make.1 (249033) make.1 (251422)
1.\" $NetBSD: make.1,v 1.213 2013/03/31 05:49:51 sjg Exp $
1.\" $NetBSD: make.1,v 1.215 2013/05/22 19:35:11 christos Exp $
2.\"
3.\" Copyright (c) 1990, 1993
4.\" The Regents of the University of California. All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright

--- 14 unchanged lines hidden (view full) ---

24.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE.
29.\"
30.\" from: @(#)make.1 8.4 (Berkeley) 3/19/94
31.\"
2.\"
3.\" Copyright (c) 1990, 1993
4.\" The Regents of the University of California. All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright

--- 14 unchanged lines hidden (view full) ---

24.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE.
29.\"
30.\" from: @(#)make.1 8.4 (Berkeley) 3/19/94
31.\"
32.Dd March 30, 2013
32.Dd May 22, 2013
33.Dt MAKE 1
34.Os
35.Sh NAME
36.Nm make
37.Nd maintain program dependencies
38.Sh SYNOPSIS
39.Nm
40.Op Fl BeikNnqrstWX

--- 2064 unchanged lines hidden (view full) ---

2105.At v7 .
2106This
2107.Nm
2108implementation is based on Adam De Boor's pmake program which was written
2109for Sprite at Berkeley.
2110It was designed to be a parallel distributed make running jobs on different
2111machines using a daemon called
2112.Dq customs .
33.Dt MAKE 1
34.Os
35.Sh NAME
36.Nm make
37.Nd maintain program dependencies
38.Sh SYNOPSIS
39.Nm
40.Op Fl BeikNnqrstWX

--- 2064 unchanged lines hidden (view full) ---

2105.At v7 .
2106This
2107.Nm
2108implementation is based on Adam De Boor's pmake program which was written
2109for Sprite at Berkeley.
2110It was designed to be a parallel distributed make running jobs on different
2111machines using a daemon called
2112.Dq customs .
2113.Pp
2114Historically the target/dependency
2115.Dq FRC
2116has been used to FoRCe rebuilding (since the target/dependency
2117does not exist... unless someone creates an
2118.Dq FRC
2119file).
2113.Sh BUGS
2114The
2115.Nm
2116syntax is difficult to parse without actually acting of the data.
2117For instance finding the end of a variable use should involve scanning each
2118the modifiers using the correct terminator for each field.
2119In many places
2120.Nm
2121just counts {} and () in order to find the end of a variable expansion.
2122.Pp
2123There is no way of escaping a space character in a filename.
2120.Sh BUGS
2121The
2122.Nm
2123syntax is difficult to parse without actually acting of the data.
2124For instance finding the end of a variable use should involve scanning each
2125the modifiers using the correct terminator for each field.
2126In many places
2127.Nm
2128just counts {} and () in order to find the end of a variable expansion.
2129.Pp
2130There is no way of escaping a space character in a filename.