xref: /freebsd/contrib/bmake/make.1 (revision d5b0e70f7e04d971691517ce1304d86a1e367e2e)
1.\"	$NetBSD: make.1,v 1.315 2022/07/12 23:47:00 rillig 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
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\" 3. Neither the name of the University nor the names of its contributors
15.\"    may be used to endorse or promote products derived from this software
16.\"    without specific prior written permission.
17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 July 12, 2022
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 BeikNnqrSstWwX
41.Op Fl C Ar directory
42.Op Fl D Ar variable
43.Op Fl d Ar flags
44.Op Fl f Ar makefile
45.Op Fl I Ar directory
46.Op Fl J Ar private
47.Op Fl j Ar max_jobs
48.Op Fl m Ar directory
49.Op Fl T Ar file
50.Op Fl V Ar variable
51.Op Fl v Ar variable
52.Op Ar variable=value
53.Op Ar target ...
54.Sh DESCRIPTION
55.Nm
56is a program designed to simplify the maintenance of other programs.
57Its input is a list of specifications as to the files upon which programs
58and other files depend.
59If no
60.Fl f Ar makefile
61makefile option is given,
62.Nm
63will try to open
64.Sq Pa makefile
65then
66.Sq Pa Makefile
67in order to find the specifications.
68If the file
69.Sq Pa .depend
70exists, it is read (see
71.Xr mkdep 1 ) .
72.Pp
73This manual page is intended as a reference document only.
74For a more thorough description of
75.Nm
76and makefiles, please refer to
77.%T "PMake \- A Tutorial" .
78.Pp
79.Nm
80will prepend the contents of the
81.Va MAKEFLAGS
82environment variable to the command line arguments before parsing them.
83.Pp
84The options are as follows:
85.Bl -tag -width Ds
86.It Fl B
87Try to be backwards compatible by executing a single shell per command and
88by executing the commands to make the sources of a dependency line in sequence.
89.It Fl C Ar directory
90Change to
91.Ar directory
92before reading the makefiles or doing anything else.
93If multiple
94.Fl C
95options are specified, each is interpreted relative to the previous one:
96.Fl C Pa / Fl C Pa etc
97is equivalent to
98.Fl C Pa /etc .
99.It Fl D Ar variable
100Define
101.Ar variable
102to be 1, in the global scope.
103.It Fl d Ar [-]flags
104Turn on debugging, and specify which portions of
105.Nm
106are to print debugging information.
107Unless the flags are preceded by
108.Ql \-
109they are added to the
110.Va MAKEFLAGS
111environment variable and will be processed by any child make processes.
112By default, debugging information is printed to standard error,
113but this can be changed using the
114.Ar F
115debugging flag.
116The debugging output is always unbuffered; in addition, if debugging
117is enabled but debugging output is not directed to standard output,
118then the standard output is line buffered.
119.Ar Flags
120is one or more of the following:
121.Bl -tag -width Ds
122.It Ar A
123Print all possible debugging information;
124equivalent to specifying all of the debugging flags.
125.It Ar a
126Print debugging information about archive searching and caching.
127.It Ar C
128Print debugging information about current working directory.
129.It Ar c
130Print debugging information about conditional evaluation.
131.It Ar d
132Print debugging information about directory searching and caching.
133.It Ar e
134Print debugging information about failed commands and targets.
135.It Ar F Ns Oo Sy \&+ Oc Ns Ar filename
136Specify where debugging output is written.
137This must be the last flag, because it consumes the remainder of
138the argument.
139If the character immediately after the
140.Ql F
141flag is
142.Ql \&+ ,
143then the file will be opened in append mode;
144otherwise the file will be overwritten.
145If the file name is
146.Ql stdout
147or
148.Ql stderr
149then debugging output will be written to the
150standard output or standard error output file descriptors respectively
151(and the
152.Ql \&+
153option has no effect).
154Otherwise, the output will be written to the named file.
155If the file name ends
156.Ql .%d
157then the
158.Ql %d
159is replaced by the pid.
160.It Ar f
161Print debugging information about loop evaluation.
162.It Ar "g1"
163Print the input graph before making anything.
164.It Ar "g2"
165Print the input graph after making everything, or before exiting
166on error.
167.It Ar "g3"
168Print the input graph before exiting on error.
169.It Ar h
170Print debugging information about hash table operations.
171.It Ar j
172Print debugging information about running multiple shells.
173.It Ar L
174Turn on lint checks.
175This will throw errors for variable assignments that do not parse
176correctly, at the time of assignment so the file and line number
177are available.
178.It Ar l
179Print commands in Makefiles regardless of whether or not they are prefixed by
180.Ql @
181or other "quiet" flags.
182Also known as "loud" behavior.
183.It Ar M
184Print debugging information about "meta" mode decisions about targets.
185.It Ar m
186Print debugging information about making targets, including modification
187dates.
188.It Ar n
189Don't delete the temporary command scripts created when running commands.
190These temporary scripts are created in the directory
191referred to by the
192.Ev TMPDIR
193environment variable, or in
194.Pa /tmp
195if
196.Ev TMPDIR
197is unset or set to the empty string.
198The temporary scripts are created by
199.Xr mkstemp 3 ,
200and have names of the form
201.Pa makeXXXXXX .
202.Em NOTE :
203This can create many files in
204.Ev TMPDIR
205or
206.Pa /tmp ,
207so use with care.
208.It Ar p
209Print debugging information about makefile parsing.
210.It Ar s
211Print debugging information about suffix-transformation rules.
212.It Ar t
213Print debugging information about target list maintenance.
214.It Ar V
215Force the
216.Fl V
217option to print raw values of variables, overriding the default behavior
218set via
219.Va .MAKE.EXPAND_VARIABLES .
220.It Ar v
221Print debugging information about variable assignment.
222.It Ar x
223Run shell commands with
224.Fl x
225so the actual commands are printed as they are executed.
226.El
227.It Fl e
228Specify that environment variables override macro assignments within
229makefiles.
230.It Fl f Ar makefile
231Specify a makefile to read instead of the default
232.Sq Pa makefile .
233If
234.Ar makefile
235is
236.Sq Fl ,
237standard input is read.
238Multiple makefiles may be specified, and are read in the order specified.
239.It Fl I Ar directory
240Specify a directory in which to search for makefiles and included makefiles.
241The system makefile directory (or directories, see the
242.Fl m
243option) is automatically included as part of this list.
244.It Fl i
245Ignore non-zero exit of shell commands in the makefile.
246Equivalent to specifying
247.Sq Fl
248before each command line in the makefile.
249.It Fl J Ar private
250This option should
251.Em not
252be specified by the user.
253.Pp
254When the
255.Fl j
256option is in use in a recursive build, this option is passed by a make
257to child makes to allow all the make processes in the build to
258cooperate to avoid overloading the system.
259.It Fl j Ar max_jobs
260Specify the maximum number of jobs that
261.Nm
262may have running at any one time.
263The value is saved in
264.Va .MAKE.JOBS .
265Turns compatibility mode off, unless the
266.Fl B
267option is also specified.
268When compatibility mode is off, all commands associated with a
269target are executed in a single shell invocation as opposed to the
270traditional one shell invocation per line.
271This can break traditional scripts which change directories on each
272command invocation and then expect to start with a fresh environment
273on the next line.
274It is more efficient to correct the scripts rather than turn backwards
275compatibility on.
276.It Fl k
277Continue processing after errors are encountered, but only on those targets
278that do not depend on the target whose creation caused the error.
279.It Fl m Ar directory
280Specify a directory in which to search for sys.mk and makefiles included
281via the
282.Li \&< Ns Ar file Ns Li \&> Ns -style
283include statement.
284The
285.Fl m
286option can be used multiple times to form a search path.
287This path will override the default system include path: /usr/share/mk.
288Furthermore the system include path will be appended to the search path used
289for
290.Li \*q Ns Ar file Ns Li \*q Ns -style
291include statements (see the
292.Fl I
293option).
294.Pp
295If a file or directory name in the
296.Fl m
297argument (or the
298.Ev MAKESYSPATH
299environment variable) starts with the string
300.Qq \&.../
301then
302.Nm
303will search for the specified file or directory named in the remaining part
304of the argument string.
305The search starts with the current directory of
306the Makefile and then works upward towards the root of the file system.
307If the search is successful, then the resulting directory replaces the
308.Qq \&.../
309specification in the
310.Fl m
311argument.
312If used, this feature allows
313.Nm
314to easily search in the current source tree for customized sys.mk files
315(e.g., by using
316.Qq \&.../mk/sys.mk
317as an argument).
318.It Fl n
319Display the commands that would have been executed, but do not
320actually execute them unless the target depends on the .MAKE special
321source (see below) or the command is prefixed with
322.Sq Ic + .
323.It Fl N
324Display the commands which would have been executed, but do not
325actually execute any of them; useful for debugging top-level makefiles
326without descending into subdirectories.
327.It Fl q
328Do not execute any commands, but exit 0 if the specified targets are
329up-to-date and 1, otherwise.
330.It Fl r
331Do not use the built-in rules specified in the system makefile.
332.It Fl S
333Stop processing if an error is encountered.
334This is the default behavior and the opposite of
335.Fl k .
336.It Fl s
337Do not echo any commands as they are executed.
338Equivalent to specifying
339.Sq Ic @
340before each command line in the makefile.
341.It Fl T Ar tracefile
342When used with the
343.Fl j
344flag,
345append a trace record to
346.Ar tracefile
347for each job started and completed.
348.It Fl t
349Rather than re-building a target as specified in the makefile, create it
350or update its modification time to make it appear up-to-date.
351.It Fl V Ar variable
352Print the value of
353.Ar variable .
354Do not build any targets.
355Multiple instances of this option may be specified;
356the variables will be printed one per line,
357with a blank line for each null or undefined variable.
358The value printed is extracted from the global scope after all
359makefiles have been read.
360By default, the raw variable contents (which may
361include additional unexpanded variable references) are shown.
362If
363.Ar variable
364contains a
365.Ql \&$
366then the value will be recursively expanded to its complete resultant
367text before printing.
368The expanded value will also be printed if
369.Va .MAKE.EXPAND_VARIABLES
370is set to true and
371the
372.Fl dV
373option has not been used to override it.
374Note that loop-local and target-local variables, as well as values
375taken temporarily by global variables during makefile processing, are
376not accessible via this option.
377The
378.Fl dv
379debug mode can be used to see these at the cost of generating
380substantial extraneous output.
381.It Fl v Ar variable
382Like
383.Fl V
384but the variable is always expanded to its complete value.
385.It Fl W
386Treat any warnings during makefile parsing as errors.
387.It Fl w
388Print entering and leaving directory messages, pre and post processing.
389.It Fl X
390Don't export variables passed on the command line to the environment
391individually.
392Variables passed on the command line are still exported
393via the
394.Va MAKEFLAGS
395environment variable.
396This option may be useful on systems which have a small limit on the
397size of command arguments.
398.It Ar variable=value
399Set the value of the variable
400.Ar variable
401to
402.Ar value .
403Normally, all values passed on the command line are also exported to
404sub-makes in the environment.
405The
406.Fl X
407flag disables this behavior.
408Variable assignments should follow options for POSIX compatibility
409but no ordering is enforced.
410.El
411.Pp
412There are seven different types of lines in a makefile: file dependency
413specifications, shell commands, variable assignments, include statements,
414conditional directives, for loops, and comments.
415.Pp
416In general, lines may be continued from one line to the next by ending
417them with a backslash
418.Pq Ql \e .
419The trailing newline character and initial whitespace on the following
420line are compressed into a single space.
421.Sh FILE DEPENDENCY SPECIFICATIONS
422Dependency lines consist of one or more targets, an operator, and zero
423or more sources.
424This creates a relationship where the targets
425.Dq depend
426on the sources
427and are customarily created from them.
428A target is considered out-of-date if it does not exist, or if its
429modification time is less than that of any of its sources.
430An out-of-date target will be re-created, but not until all sources
431have been examined and themselves re-created as needed.
432Three operators may be used:
433.Bl -tag -width flag
434.It Ic \&:
435Many dependency lines may name this target but only one may have
436attached shell commands.
437All sources named in all dependency lines are considered together,
438and if needed the attached shell commands are run to create or
439re-create the target.
440If
441.Nm
442is interrupted, the target is removed.
443.It Ic \&!
444The same, but the target is always re-created whether or not it is out
445of date.
446.It Ic \&::
447Any dependency line may have attached shell commands, but each one
448is handled independently: its sources are considered and the attached
449shell commands are run if the target is out of date with respect to
450(only) those sources.
451Thus, different groups of the attached shell commands may be run
452depending on the circumstances.
453Furthermore, unlike
454.Ic \&:,
455for dependency lines with no sources, the attached shell
456commands are always run.
457Also unlike
458.Ic \&:,
459the target will not be removed if
460.Nm
461is interrupted.
462.El
463All dependency lines mentioning a particular target must use the same
464operator.
465.Pp
466Targets and sources may contain the shell wildcard values
467.Ql \&? ,
468.Ql * ,
469.Ql [] ,
470and
471.Ql {} .
472The values
473.Ql \&? ,
474.Ql * ,
475and
476.Ql []
477may only be used as part of the final
478component of the target or source, and must be used to describe existing
479files.
480The value
481.Ql {}
482need not necessarily be used to describe existing files.
483Expansion is in directory order, not alphabetically as done in the shell.
484.Sh SHELL COMMANDS
485Each target may have associated with it one or more lines of shell
486commands, normally
487used to create the target.
488Each of the lines in this script
489.Em must
490be preceded by a tab.
491(For historical reasons, spaces are not accepted.)
492While targets can appear in many dependency lines if desired, by
493default only one of these rules may be followed by a creation
494script.
495If the
496.Sq Ic \&::
497operator is used, however, all rules may include scripts and the
498scripts are executed in the order found.
499.Pp
500Each line is treated as a separate shell command, unless the end of
501line is escaped with a backslash
502.Pq Ql \e
503in which case that line and the next are combined.
504.\" The escaped newline is retained and passed to the shell, which
505.\" normally ignores it.
506.\" However, the tab at the beginning of the following line is removed.
507If the first characters of the command are any combination of
508.Sq Ic @ ,
509.Sq Ic + ,
510or
511.Sq Ic \- ,
512the command is treated specially.
513A
514.Sq Ic @
515causes the command not to be echoed before it is executed.
516A
517.Sq Ic +
518causes the command to be executed even when
519.Fl n
520is given.
521This is similar to the effect of the .MAKE special source,
522except that the effect can be limited to a single line of a script.
523A
524.Sq Ic \-
525in compatibility mode
526causes any non-zero exit status of the command line to be ignored.
527.Pp
528When
529.Nm
530is run in jobs mode with
531.Fl j Ar max_jobs ,
532the entire script for the target is fed to a
533single instance of the shell.
534In compatibility (non-jobs) mode, each command is run in a separate process.
535If the command contains any shell meta characters
536.Pq Ql #=|^(){};&<>*?[]:$`\e\en
537it will be passed to the shell; otherwise
538.Nm
539will attempt direct execution.
540If a line starts with
541.Sq Ic \-
542and the shell has ErrCtl enabled then failure of the command line
543will be ignored as in compatibility mode.
544Otherwise
545.Sq Ic \-
546affects the entire job;
547the script will stop at the first command line that fails,
548but the target will not be deemed to have failed.
549.Pp
550Makefiles should be written so that the mode of
551.Nm
552operation does not change their behavior.
553For example, any command which needs to use
554.Dq cd
555or
556.Dq chdir
557without potentially changing the directory for subsequent commands
558should be put in parentheses so it executes in a subshell.
559To force the use of one shell, escape the line breaks so as to make
560the whole script one command.
561For example:
562.Bd -literal -offset indent
563avoid-chdir-side-effects:
564	@echo Building $@ in `pwd`
565	@(cd ${.CURDIR} && ${MAKE} $@)
566	@echo Back in `pwd`
567
568ensure-one-shell-regardless-of-mode:
569	@echo Building $@ in `pwd`; \e
570	(cd ${.CURDIR} && ${MAKE} $@); \e
571	echo Back in `pwd`
572.Ed
573.Pp
574Since
575.Nm
576will
577.Xr chdir 2
578to
579.Sq Va .OBJDIR
580before executing any targets, each child process
581starts with that as its current working directory.
582.Sh VARIABLE ASSIGNMENTS
583Variables in make behave much like macros in the C preprocessor.
584.Pp
585Variable assignments have the form
586.Sq Ar NAME Ar op Ar value ,
587where:
588.Bl -tag -width Ds
589.It Ar NAME
590is a single-word variable name,
591consisting, by tradition, of all upper-case letters,
592.It Ar op
593is one of the five variable assignment operators described below, and
594.It Ar value
595is interpreted according to the variable assignment operator.
596.El
597.Pp
598Whitespace around
599.Ar NAME ,
600.Ar op
601and
602.Ar value
603is discarded.
604.Ss Variable assignment operators
605The five operators that can be used to assign values to variables are:
606.Bl -tag -width Ds
607.It Ic \&=
608Assign the value to the variable.
609Any previous value is overwritten.
610.It Ic \&+=
611Append the value to the current value of the variable,
612separating them by a single space.
613.It Ic \&?=
614Assign the value to the variable if it is not already defined.
615.It Ic \&:=
616Assign with expansion, i.e. expand the value before assigning it
617to the variable.
618Normally, expansion is not done until the variable is referenced.
619.Pp
620.Em NOTE :
621References to undefined variables are
622.Em not
623expanded.
624This can cause problems when variable modifiers are used.
625.It Ic \&!=
626Expand the value and pass it to the shell for execution and assign
627the result to the variable.
628Any newlines in the result are replaced with spaces.
629.El
630.Ss Expansion of variables
631In contexts where variables are expanded,
632.Ql \&$$
633expands to a single dollar sign.
634References to variables have the form
635.Ql \&${ Ns Ar name Ns Oo \&: Ns Ar modifiers Oc Ns }
636or
637.Ql \&$( Ns Ar name Ns Oo \&: Ns Ar modifiers Oc Ns ) .
638If the variable name contains only a single character,
639the surrounding curly braces or parentheses are not required.
640This shorter form is not recommended.
641.Pp
642If the variable name contains a dollar, then the name itself is expanded first.
643This allows almost arbitrary variable names, however names containing dollar,
644braces, parentheses, or whitespace are really best avoided.
645.Pp
646If the result of expanding a variable contains a dollar sign
647.Pq Ql \&$ ,
648the string is expanded again.
649.Pp
650Variable substitution occurs at four distinct times, depending on where
651the variable is being used.
652.Bl -enum
653.It
654Variables in dependency lines are expanded as the line is read.
655.It
656Variables in conditionals are expanded individually,
657but only as far as necessary to determine the result of the conditional.
658.It
659Variables in shell commands are expanded when the shell command is
660executed.
661.It
662.Dq .for
663loop index variables are expanded on each loop iteration.
664Note that other variables are not expanded when composing the body of a loop,
665so the following example code:
666.Bd -literal -offset indent
667
668.Dv .for i in 1 2 3
669a+=     ${i}
670j=      ${i}
671b+=     ${j}
672.Dv .endfor
673
674all:
675	@echo ${a}
676	@echo ${b}
677
678.Ed
679will print:
680.Bd -literal -offset indent
6811 2 3
6823 3 3
683
684.Ed
685Because while ${a} contains
686.Dq 1 2 3
687after the loop is executed, ${b}
688contains
689.Dq ${j} ${j} ${j}
690which expands to
691.Dq 3 3 3
692since after the loop completes ${j} contains
693.Dq 3 .
694.El
695.Ss Variable classes
696The four different classes of variables (in order of increasing precedence)
697are:
698.Bl -tag -width Ds
699.It Environment variables
700Variables defined as part of
701.Nm Ns 's
702environment.
703.It Global variables
704Variables defined in the makefile or in included makefiles.
705.It Command line variables
706Variables defined as part of the command line.
707.It Local variables
708Variables that are defined specific to a certain target.
709.El
710.Pp
711Local variables can be set on a dependency line, if
712.Va .MAKE.TARGET_LOCAL_VARIABLES
713is not set to
714.Ql false .
715The rest of the line
716(which will already have had global variables expanded)
717is the variable value.
718For example:
719.Bd -literal -offset indent
720COMPILER_WRAPPERS= ccache distcc icecc
721
722${OBJS}: .MAKE.META.CMP_FILTER=${COMPILER_WRAPPERS:S,^,N,}
723.Ed
724.Pp
725Only the targets
726.Ql ${OBJS}
727will be impacted by that filter (in "meta" mode) and
728simply enabling/disabling any of the compiler wrappers will not render all
729of those targets out-of-date.
730.Pp
731.Em NOTE :
732target-local variable assignments behave differently in that;
733.Bl -tag -width Ds -offset indent
734.It Ic \&+=
735Only appends to a previous local assignment
736for the same target and variable.
737.It Ic \&:=
738Is redundant with respect to global variables,
739which have already been expanded.
740.El
741.Pp
742The seven built-in local variables are as follows:
743.Bl -tag -width ".ARCHIVE" -offset indent
744.It Va .ALLSRC
745The list of all sources for this target; also known as
746.Sq Va \&> .
747.It Va .ARCHIVE
748The name of the archive file; also known as
749.Sq Va \&! .
750.It Va .IMPSRC
751In suffix-transformation rules, the name/path of the source from which the
752target is to be transformed (the
753.Dq implied
754source); also known as
755.Sq Va \&< .
756It is not defined in explicit rules.
757.It Va .MEMBER
758The name of the archive member; also known as
759.Sq Va % .
760.It Va .OODATE
761The list of sources for this target that were deemed out-of-date; also
762known as
763.Sq Va \&? .
764.It Va .PREFIX
765The file prefix of the target, containing only the file portion, no suffix
766or preceding directory components; also known as
767.Sq Va * .
768The suffix must be one of the known suffixes declared with
769.Ic .SUFFIXES
770or it will not be recognized.
771.It Va .TARGET
772The name of the target; also known as
773.Sq Va @ .
774For compatibility with other makes this is an alias for
775.Ic .ARCHIVE
776in archive member rules.
777.El
778.Pp
779The shorter forms
780.Ql ( Va > ,
781.Sq Va \&! ,
782.Sq Va < ,
783.Sq Va % ,
784.Sq Va \&? ,
785.Sq Va * ,
786and
787.Sq Va @ )
788are permitted for backward
789compatibility with historical makefiles and legacy POSIX make and are
790not recommended.
791.Pp
792Variants of these variables with the punctuation followed immediately by
793.Ql D
794or
795.Ql F ,
796e.g.\&
797.Sq Va $(@D) ,
798are legacy forms equivalent to using the
799.Ql :H
800and
801.Ql :T
802modifiers.
803These forms are accepted for compatibility with
804.At V
805makefiles and POSIX but are not recommended.
806.Pp
807Four of the local variables may be used in sources on dependency lines
808because they expand to the proper value for each target on the line.
809These variables are
810.Sq Va .TARGET ,
811.Sq Va .PREFIX ,
812.Sq Va .ARCHIVE ,
813and
814.Sq Va .MEMBER .
815.Ss Additional built-in variables
816In addition,
817.Nm
818sets or knows about the following variables:
819.Bl -tag -width .MAKEOVERRIDES
820.It Va .ALLTARGETS
821The list of all targets encountered in the Makefile.
822If evaluated during
823Makefile parsing, lists only those targets encountered thus far.
824.It Va .CURDIR
825A path to the directory where
826.Nm
827was executed.
828Refer to the description of
829.Sq Ev PWD
830for more details.
831.It Va .INCLUDEDFROMDIR
832The directory of the file this Makefile was included from.
833.It Va .INCLUDEDFROMFILE
834The filename of the file this Makefile was included from.
835.It Ev MAKE
836The name that
837.Nm
838was executed with
839.Pq Va argv[0] .
840For compatibility
841.Nm
842also sets
843.Va .MAKE
844with the same value.
845The preferred variable to use is the environment variable
846.Ev MAKE
847because it is more compatible with other versions of
848.Nm
849and cannot be confused with the special target with the same name.
850.It Va .MAKE.ALWAYS_PASS_JOB_QUEUE
851Tells
852.Nm
853whether to pass the descriptors of the job token queue
854even if the target is not tagged with
855.Ic .MAKE
856The default is
857.Ql Pa yes
858for backwards compatability with
859.Fx 9.0
860and earlier.
861.It Va .MAKE.DEPENDFILE
862Names the makefile (default
863.Sq Pa .depend )
864from which generated dependencies are read.
865.It Va .MAKE.EXPAND_VARIABLES
866A boolean that controls the default behavior of the
867.Fl V
868option.
869If true, variable values printed with
870.Fl V
871are fully expanded; if false, the raw variable contents (which may
872include additional unexpanded variable references) are shown.
873.It Va .MAKE.EXPORTED
874The list of variables exported by
875.Nm .
876.It Va .MAKE.JOBS
877The argument to the
878.Fl j
879option.
880.It Va .MAKE.JOB.PREFIX
881If
882.Nm
883is run with
884.Fl j ,
885the output for each target is prefixed with a token
886.Ql --- target ---
887the first part of which can be controlled via
888.Va .MAKE.JOB.PREFIX .
889If
890.Va .MAKE.JOB.PREFIX
891is empty, no token is printed.
892For example, setting
893.Va .MAKE.JOB.PREFIX
894to
895.Li ${.newline}---${.MAKE:T}[${.MAKE.PID}]
896would produce tokens like
897.Ql ---make[1234] target ---
898making it easier to track the degree of parallelism being achieved.
899.It .MAKE.TARGET_LOCAL_VARIABLES
900If set to
901.Ql false ,
902apparent variable assignments in dependency lines are
903treated as normal sources.
904.It Ev MAKEFLAGS
905The environment variable
906.Sq Ev MAKEFLAGS
907may contain anything that
908may be specified on
909.Nm Ns 's
910command line.
911Anything specified on
912.Nm Ns 's
913command line is appended to the
914.Sq Ev MAKEFLAGS
915variable which is then
916entered into the environment for all programs which
917.Nm
918executes.
919.It Va .MAKE.LEVEL
920The recursion depth of
921.Nm .
922The initial instance of
923.Nm
924will be 0, and an incremented value is put into the environment
925to be seen by the next generation.
926This allows tests like:
927.Li .if ${.MAKE.LEVEL} == 0
928to protect things which should only be evaluated in the initial instance of
929.Nm .
930.It Va .MAKE.MAKEFILE_PREFERENCE
931The ordered list of makefile names
932(default
933.Sq Pa makefile ,
934.Sq Pa Makefile )
935that
936.Nm
937will look for.
938.It Va .MAKE.MAKEFILES
939The list of makefiles read by
940.Nm ,
941which is useful for tracking dependencies.
942Each makefile is recorded only once, regardless of the number of times read.
943.It Va .MAKE.MODE
944Processed after reading all makefiles.
945Can affect the mode that
946.Nm
947runs in.
948It can contain a number of keywords:
949.Bl -hang -width missing-filemon=bf.
950.It Pa compat
951Like
952.Fl B ,
953puts
954.Nm
955into "compat" mode.
956.It Pa meta
957Puts
958.Nm
959into "meta" mode, where meta files are created for each target
960to capture the command run, the output generated and if
961.Xr filemon 4
962is available, the system calls which are of interest to
963.Nm .
964The captured output can be very useful when diagnosing errors.
965.It Pa curdirOk= Ar bf
966Normally
967.Nm
968will not create .meta files in
969.Sq Va .CURDIR .
970This can be overridden by setting
971.Va bf
972to a value which represents True.
973.It Pa missing-meta= Ar bf
974If
975.Va bf
976is True, then a missing .meta file makes the target out-of-date.
977.It Pa missing-filemon= Ar bf
978If
979.Va bf
980is True, then missing filemon data makes the target out-of-date.
981.It Pa nofilemon
982Do not use
983.Xr filemon 4 .
984.It Pa env
985For debugging, it can be useful to include the environment
986in the .meta file.
987.It Pa verbose
988If in "meta" mode, print a clue about the target being built.
989This is useful if the build is otherwise running silently.
990The message printed the value of:
991.Va .MAKE.META.PREFIX .
992.It Pa ignore-cmd
993Some makefiles have commands which are simply not stable.
994This keyword causes them to be ignored for
995determining whether a target is out of date in "meta" mode.
996See also
997.Ic .NOMETA_CMP .
998.It Pa silent= Ar bf
999If
1000.Va bf
1001is True, when a .meta file is created, mark the target
1002.Ic .SILENT .
1003.It Pa randomize-targets
1004In both compat and parallel mode, do not make the targets in the usual order,
1005but instead randomize their order.
1006This mode can be used to detect undeclared dependencies between files.
1007.El
1008.It Va .MAKE.META.BAILIWICK
1009In "meta" mode, provides a list of prefixes which
1010match the directories controlled by
1011.Nm .
1012If a file that was generated outside of
1013.Va .OBJDIR
1014but within said bailiwick is missing,
1015the current target is considered out-of-date.
1016.It Va .MAKE.META.CMP_FILTER
1017In "meta" mode, it can (very rarely!) be useful to filter command
1018lines before comparison.
1019This variable can be set to a set of modifiers that will be applied to
1020each line of the old and new command that differ, if the filtered
1021commands still differ, the target is considered out-of-date.
1022.It Va .MAKE.META.CREATED
1023In "meta" mode, this variable contains a list of all the meta files
1024updated.
1025If not empty, it can be used to trigger processing of
1026.Va .MAKE.META.FILES .
1027.It Va .MAKE.META.FILES
1028In "meta" mode, this variable contains a list of all the meta files
1029used (updated or not).
1030This list can be used to process the meta files to extract dependency
1031information.
1032.It Va .MAKE.META.IGNORE_PATHS
1033Provides a list of path prefixes that should be ignored;
1034because the contents are expected to change over time.
1035The default list includes:
1036.Sq Pa /dev /etc /proc /tmp /var/run /var/tmp
1037.It Va .MAKE.META.IGNORE_PATTERNS
1038Provides a list of patterns to match against pathnames.
1039Ignore any that match.
1040.It Va .MAKE.META.IGNORE_FILTER
1041Provides a list of variable modifiers to apply to each pathname.
1042Ignore if the expansion is an empty string.
1043.It Va .MAKE.META.PREFIX
1044Defines the message printed for each meta file updated in "meta verbose" mode.
1045The default value is:
1046.Dl Building ${.TARGET:H:tA}/${.TARGET:T}
1047.It Va .MAKEOVERRIDES
1048This variable is used to record the names of variables assigned to
1049on the command line, so that they may be exported as part of
1050.Sq Ev MAKEFLAGS .
1051This behavior can be disabled by assigning an empty value to
1052.Sq Va .MAKEOVERRIDES
1053within a makefile.
1054Extra variables can be exported from a makefile
1055by appending their names to
1056.Sq Va .MAKEOVERRIDES .
1057.Sq Ev MAKEFLAGS
1058is re-exported whenever
1059.Sq Va .MAKEOVERRIDES
1060is modified.
1061.It Va .MAKE.PATH_FILEMON
1062If
1063.Nm
1064was built with
1065.Xr filemon 4
1066support, this is set to the path of the device node.
1067This allows makefiles to test for this support.
1068.It Va .MAKE.PID
1069The process-id of
1070.Nm .
1071.It Va .MAKE.PPID
1072The parent process-id of
1073.Nm .
1074.It Va .MAKE.SAVE_DOLLARS
1075value should be a boolean that controls whether
1076.Ql $$
1077are preserved when doing
1078.Ql :=
1079assignments.
1080The default is false, for backwards compatibility.
1081Set to true for compatability with other makes.
1082If set to false,
1083.Ql $$
1084becomes
1085.Ql $
1086per normal evaluation rules.
1087.It Va .MAKE.UID
1088The user-id running
1089.Nm .
1090.It Va .MAKE.GID
1091The group-id running
1092.Nm .
1093.It Va MAKE_PRINT_VAR_ON_ERROR
1094When
1095.Nm
1096stops due to an error, it sets
1097.Sq Va .ERROR_TARGET
1098to the name of the target that failed,
1099.Sq Va .ERROR_CMD
1100to the commands of the failed target,
1101and in "meta" mode, it also sets
1102.Sq Va .ERROR_CWD
1103to the
1104.Xr getcwd 3 ,
1105and
1106.Sq Va .ERROR_META_FILE
1107to the path of the meta file (if any) describing the failed target.
1108It then prints its name and the value of
1109.Sq Va .CURDIR
1110as well as the value of any variables named in
1111.Sq Va MAKE_PRINT_VAR_ON_ERROR .
1112.It Va .newline
1113This variable is simply assigned a newline character as its value.
1114This allows expansions using the
1115.Cm \&:@
1116modifier to put a newline between
1117iterations of the loop rather than a space.
1118For example, the printing of
1119.Sq Va MAKE_PRINT_VAR_ON_ERROR
1120could be done as ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@}.
1121.It Va .OBJDIR
1122A path to the directory where the targets are built.
1123Its value is determined by trying to
1124.Xr chdir 2
1125to the following directories in order and using the first match:
1126.Bl -enum
1127.It
1128.Ev ${MAKEOBJDIRPREFIX}${.CURDIR}
1129.Pp
1130(Only if
1131.Sq Ev MAKEOBJDIRPREFIX
1132is set in the environment or on the command line.)
1133.It
1134.Ev ${MAKEOBJDIR}
1135.Pp
1136(Only if
1137.Sq Ev MAKEOBJDIR
1138is set in the environment or on the command line.)
1139.It
1140.Ev ${.CURDIR} Ns Pa /obj. Ns Ev ${MACHINE}
1141.It
1142.Ev ${.CURDIR} Ns Pa /obj
1143.It
1144.Pa /usr/obj/ Ns Ev ${.CURDIR}
1145.It
1146.Ev ${.CURDIR}
1147.El
1148.Pp
1149Variable expansion is performed on the value before it's used,
1150so expressions such as
1151.Dl ${.CURDIR:S,^/usr/src,/var/obj,}
1152may be used.
1153This is especially useful with
1154.Sq Ev MAKEOBJDIR .
1155.Pp
1156.Sq Va .OBJDIR
1157may be modified in the makefile via the special target
1158.Sq Ic .OBJDIR .
1159In all cases,
1160.Nm
1161will
1162.Xr chdir 2
1163to the specified directory if it exists, and set
1164.Sq Va .OBJDIR
1165and
1166.Sq Ev PWD
1167to that directory before executing any targets.
1168.Pp
1169Except in the case of an explicit
1170.Sq Ic .OBJDIR
1171target,
1172.Nm
1173will check that the specified directory is writable and ignore it if not.
1174This check can be skipped by setting the environment variable
1175.Sq Ev MAKE_OBJDIR_CHECK_WRITABLE
1176to "no".
1177.
1178.It Va .PARSEDIR
1179A path to the directory of the current
1180.Sq Pa Makefile
1181being parsed.
1182.It Va .PARSEFILE
1183The basename of the current
1184.Sq Pa Makefile
1185being parsed.
1186This variable and
1187.Sq Va .PARSEDIR
1188are both set only while the
1189.Sq Pa Makefiles
1190are being parsed.
1191If you want to retain their current values, assign them to a variable
1192using assignment with expansion
1193.Sq Cm \&:= .
1194.It Va .PATH
1195A variable that represents the list of directories that
1196.Nm
1197will search for files.
1198The search list should be updated using the target
1199.Sq Va .PATH
1200rather than the variable.
1201.It Ev PWD
1202Alternate path to the current directory.
1203.Nm
1204normally sets
1205.Sq Va .CURDIR
1206to the canonical path given by
1207.Xr getcwd 3 .
1208However, if the environment variable
1209.Sq Ev PWD
1210is set and gives a path to the current directory, then
1211.Nm
1212sets
1213.Sq Va .CURDIR
1214to the value of
1215.Sq Ev PWD
1216instead.
1217This behavior is disabled if
1218.Sq Ev MAKEOBJDIRPREFIX
1219is set or
1220.Sq Ev MAKEOBJDIR
1221contains a variable transform.
1222.Sq Ev PWD
1223is set to the value of
1224.Sq Va .OBJDIR
1225for all programs which
1226.Nm
1227executes.
1228.It Ev .SHELL
1229The pathname of the shell used to run target scripts.
1230It is read-only.
1231.It Ev .SUFFIXES
1232The list of known suffixes.
1233It is read-only.
1234.It Ev .TARGETS
1235The list of targets explicitly specified on the command line, if any.
1236.It Ev VPATH
1237Colon-separated
1238.Pq Dq \&:
1239lists of directories that
1240.Nm
1241will search for files.
1242The variable is supported for compatibility with old make programs only,
1243use
1244.Sq Va .PATH
1245instead.
1246.El
1247.Ss Variable modifiers
1248Variable expansion may be modified to select or modify each word of the
1249variable (where a
1250.Dq word
1251is white-space delimited sequence of characters).
1252The general format of a variable expansion is as follows:
1253.Pp
1254.Dl ${variable[:modifier[:...]]}
1255.Pp
1256Each modifier begins with a colon,
1257which may be escaped with a backslash
1258.Pq Ql \e .
1259.Pp
1260A set of modifiers can be specified via a variable, as follows:
1261.Pp
1262.Dl modifier_variable=modifier[:...]
1263.Dl ${variable:${modifier_variable}[:...]}
1264.Pp
1265In this case the first modifier in the modifier_variable does not
1266start with a colon, since that must appear in the referencing
1267variable.
1268If any of the modifiers in the modifier_variable contain a dollar sign
1269.Pq Ql $ ,
1270these must be doubled to avoid early expansion.
1271.Pp
1272The supported modifiers are:
1273.Bl -tag -width EEE
1274.It Cm \&:E
1275Replaces each word in the variable with its suffix.
1276.It Cm \&:H
1277Replaces each word in the variable with everything but the last component.
1278.It Cm \&:M\| Ns Ar pattern
1279Selects only those words that match
1280.Ar pattern .
1281The standard shell wildcard characters
1282.Pf ( Ql * ,
1283.Ql \&? ,
1284and
1285.Ql \&[] )
1286may
1287be used.
1288The wildcard characters may be escaped with a backslash
1289.Pq Ql \e .
1290As a consequence of the way values are split into words, matched,
1291and then joined, a construct like
1292.Dl ${VAR:M*}
1293will normalize the inter-word spacing, removing all leading and
1294trailing space, and converting multiple consecutive spaces
1295to single spaces.
1296.
1297.It Cm \&:N\| Ns Ar pattern
1298This is identical to
1299.Sq Cm \&:M ,
1300but selects all words which do not match
1301.Ar pattern .
1302.It Cm \&:O
1303Orders every word in variable alphabetically.
1304.It Cm \&:On
1305Orders every word in variable numerically.
1306A number followed by one of
1307.Ql k ,
1308.Ql M
1309or
1310.Ql G
1311is multiplied by the appropriate factor (1024 (k), 1048576 (M), or
13121073741824 (G)).
1313Both upper- and lower-case letters are accepted.
1314.It Cm \&:Or
1315Orders every word in variable in reverse alphabetical order.
1316.It Cm \&:Orn
1317Orders every word in variable in reverse numerical order.
1318.It Cm \&:Ox
1319Shuffles the words in variable.
1320The results will be different each time you are referring to the
1321modified variable; use the assignment with expansion
1322.Sq Cm \&:=
1323to prevent such behavior.
1324For example,
1325.Bd -literal -offset indent
1326LIST=			uno due tre quattro
1327RANDOM_LIST=		${LIST:Ox}
1328STATIC_RANDOM_LIST:=	${LIST:Ox}
1329
1330all:
1331	@echo "${RANDOM_LIST}"
1332	@echo "${RANDOM_LIST}"
1333	@echo "${STATIC_RANDOM_LIST}"
1334	@echo "${STATIC_RANDOM_LIST}"
1335.Ed
1336may produce output similar to:
1337.Bd -literal -offset indent
1338quattro due tre uno
1339tre due quattro uno
1340due uno quattro tre
1341due uno quattro tre
1342.Ed
1343.It Cm \&:Q
1344Quotes every shell meta-character in the variable, so that it can be passed
1345safely to the shell.
1346.It Cm \&:q
1347Quotes every shell meta-character in the variable, and also doubles
1348.Sq $
1349characters so that it can be passed
1350safely through recursive invocations of
1351.Nm .
1352This is equivalent to:
1353.Sq \&:S/\e\&$/&&/g:Q .
1354.It Cm \&:R
1355Replaces each word in the variable with everything but its suffix.
1356.It Cm \&:range Ns Oo = Ns Ar count Oc
1357The value is an integer sequence representing the words of the original
1358value, or the supplied
1359.Va count .
1360.It Cm \&:gmtime Ns Oo = Ns Ar utc Oc
1361The value is a format string for
1362.Xr strftime 3 ,
1363using
1364.Xr gmtime 3 .
1365If a
1366.Va utc
1367value is not provided or is 0, the current time is used.
1368.It Cm \&:hash
1369Computes a 32-bit hash of the value and encode it as hex digits.
1370.It Cm \&:localtime Ns Oo = Ns Ar utc Oc
1371The value is a format string for
1372.Xr strftime 3 ,
1373using
1374.Xr localtime 3 .
1375If a
1376.Va utc
1377value is not provided or is 0, the current time is used.
1378.It Cm \&:tA
1379Attempts to convert variable to an absolute path using
1380.Xr realpath 3 ,
1381if that fails, the value is unchanged.
1382.It Cm \&:tl
1383Converts variable to lower-case letters.
1384.It Cm \&:ts Ns Ar c
1385Words in the variable are normally separated by a space on expansion.
1386This modifier sets the separator to the character
1387.Ar c .
1388If
1389.Ar c
1390is omitted, then no separator is used.
1391The common escapes (including octal numeric codes) work as expected.
1392.It Cm \&:tu
1393Converts variable to upper-case letters.
1394.It Cm \&:tW
1395Causes the value to be treated as a single word
1396(possibly containing embedded white space).
1397See also
1398.Sq Cm \&:[*] .
1399.It Cm \&:tw
1400Causes the value to be treated as a sequence of
1401words delimited by white space.
1402See also
1403.Sq Cm \&:[@] .
1404.Sm off
1405.It Cm \&:S\| No \&/ Ar old_string\| No \&/ Ar new_string\| No \&/ Op Cm 1gW
1406.Sm on
1407Modifies the first occurrence of
1408.Ar old_string
1409in each word of the variable's value, replacing it with
1410.Ar new_string .
1411If a
1412.Ql g
1413is appended to the last delimiter of the pattern, all occurrences
1414in each word are replaced.
1415If a
1416.Ql 1
1417is appended to the last delimiter of the pattern, only the first occurrence
1418is affected.
1419If a
1420.Ql W
1421is appended to the last delimiter of the pattern,
1422then the value is treated as a single word
1423(possibly containing embedded white space).
1424If
1425.Ar old_string
1426begins with a caret
1427.Pq Ql ^ ,
1428.Ar old_string
1429is anchored at the beginning of each word.
1430If
1431.Ar old_string
1432ends with a dollar sign
1433.Pq Ql \&$ ,
1434it is anchored at the end of each word.
1435Inside
1436.Ar new_string ,
1437an ampersand
1438.Pq Ql &
1439is replaced by
1440.Ar old_string
1441(without any
1442.Ql ^
1443or
1444.Ql \&$ ) .
1445Any character may be used as a delimiter for the parts of the modifier
1446string.
1447The anchoring, ampersand and delimiter characters may be escaped with a
1448backslash
1449.Pq Ql \e .
1450.Pp
1451Variable expansion occurs in the normal fashion inside both
1452.Ar old_string
1453and
1454.Ar new_string
1455with the single exception that a backslash is used to prevent the expansion
1456of a dollar sign
1457.Pq Ql \&$ ,
1458not a preceding dollar sign as is usual.
1459.Sm off
1460.It Cm \&:C\| No \&/ Ar pattern\| No \&/ Ar replacement\| No \&/ Op Cm 1gW
1461.Sm on
1462The
1463.Cm \&:C
1464modifier is just like the
1465.Cm \&:S
1466modifier except that the old and new strings, instead of being
1467simple strings, are an extended regular expression (see
1468.Xr regex 3 )
1469string
1470.Ar pattern
1471and an
1472.Xr ed 1 Ns \-style
1473string
1474.Ar replacement .
1475Normally, the first occurrence of the pattern
1476.Ar pattern
1477in each word of the value is substituted with
1478.Ar replacement .
1479The
1480.Ql 1
1481modifier causes the substitution to apply to at most one word; the
1482.Ql g
1483modifier causes the substitution to apply to as many instances of the
1484search pattern
1485.Ar pattern
1486as occur in the word or words it is found in; the
1487.Ql W
1488modifier causes the value to be treated as a single word
1489(possibly containing embedded white space).
1490.Pp
1491As for the
1492.Cm \&:S
1493modifier, the
1494.Ar pattern
1495and
1496.Ar replacement
1497are subjected to variable expansion before being parsed as
1498regular expressions.
1499.It Cm \&:T
1500Replaces each word in the variable with its last path component.
1501.It Cm \&:u
1502Removes adjacent duplicate words (like
1503.Xr uniq 1 ) .
1504.Sm off
1505.It Cm \&:\&?\| Ar true_string\| Cm \&: Ar false_string
1506.Sm on
1507If the variable name (not its value), when parsed as a .if conditional
1508expression, evaluates to true, return as its value the
1509.Ar true_string ,
1510otherwise return the
1511.Ar false_string .
1512Since the variable name is used as the expression, \&:\&? must be the
1513first modifier after the variable name itself - which will, of course,
1514usually contain variable expansions.
1515A common error is trying to use expressions like
1516.Dl ${NUMBERS:M42:?match:no}
1517which actually tests defined(NUMBERS),
1518to determine if any words match "42" you need to use something like:
1519.Dl ${"${NUMBERS:M42}" != \&"\&":?match:no} .
1520.It Cm :\| Ns Ar old_string\| Ns Cm = Ns Ar new_string
1521This is the
1522.At V
1523style variable substitution.
1524It must be the last modifier specified.
1525If
1526.Ar old_string
1527or
1528.Ar new_string
1529do not contain the pattern matching character
1530.Ar %
1531then it is assumed that they are
1532anchored at the end of each word, so only suffixes or entire
1533words may be replaced.
1534Otherwise
1535.Ar %
1536is the substring of
1537.Ar old_string
1538to be replaced in
1539.Ar new_string .
1540If only
1541.Ar old_string
1542contains the pattern matching character
1543.Ar % ,
1544and
1545.Ar old_string
1546matches, then the result is the
1547.Ar new_string .
1548If only the
1549.Ar new_string
1550contains the pattern matching character
1551.Ar % ,
1552then it is not treated specially and it is printed as a literal
1553.Ar %
1554on match.
1555If there is more than one pattern matching character
1556.Ar ( % )
1557in either the
1558.Ar new_string
1559or
1560.Ar old_string ,
1561only the first instance is treated specially (as the pattern character);
1562all subsequent instances are treated as regular characters.
1563.Pp
1564Variable expansion occurs in the normal fashion inside both
1565.Ar old_string
1566and
1567.Ar new_string
1568with the single exception that a backslash is used to prevent the
1569expansion of a dollar sign
1570.Pq Ql \&$ ,
1571not a preceding dollar sign as is usual.
1572.Sm off
1573.It Cm \&:@ Ar temp\| Cm @ Ar string\| Cm @
1574.Sm on
1575This is the loop expansion mechanism from the OSF Development
1576Environment (ODE) make.
1577Unlike
1578.Cm \&.for
1579loops, expansion occurs at the time of reference.
1580Assigns
1581.Ar temp
1582to each word in the variable and evaluates
1583.Ar string .
1584The ODE convention is that
1585.Ar temp
1586should start and end with a period.
1587For example.
1588.Dl ${LINKS:@.LINK.@${LN} ${TARGET} ${.LINK.}@}
1589.Pp
1590However a single character variable is often more readable:
1591.Dl ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@}
1592.It Cm \&:_ Ns Oo Cm = Ns Ar var Oc
1593Saves the current variable value in
1594.Ql $_
1595or the named
1596.Va var
1597for later reference.
1598Example usage:
1599.Bd -literal -offset indent
1600M_cmpv.units = 1 1000 1000000
1601M_cmpv = S,., ,g:_:range:@i@+ $${_:[-$$i]} \&\\
1602\\* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,1:sh
1603
1604.Dv .if ${VERSION:${M_cmpv}} < ${3.1.12:L:${M_cmpv}}
1605
1606.Ed
1607Here
1608.Ql $_
1609is used to save the result of the
1610.Ql :S
1611modifier which is later referenced using the index values from
1612.Ql :range .
1613.It Cm \&:U\| Ns Ar newval
1614If the variable is undefined,
1615.Ar newval
1616is the value.
1617If the variable is defined, the existing value is returned.
1618This is another ODE make feature.
1619It is handy for setting per-target CFLAGS for instance:
1620.Dl ${_${.TARGET:T}_CFLAGS:U${DEF_CFLAGS}}
1621If a value is only required if the variable is undefined, use:
1622.Dl ${VAR:D:Unewval}
1623.It Cm \&:D\| Ns Ar newval
1624If the variable is defined,
1625.Ar newval
1626is the value.
1627.It Cm \&:L
1628The name of the variable is the value.
1629.It Cm \&:P
1630The path of the node which has the same name as the variable
1631is the value.
1632If no such node exists or its path is null, then the
1633name of the variable is used.
1634In order for this modifier to work, the name (node) must at least have
1635appeared on the rhs of a dependency.
1636.Sm off
1637.It Cm \&:\&! Ar cmd\| Cm \&!
1638.Sm on
1639The output of running
1640.Ar cmd
1641is the value.
1642.It Cm \&:sh
1643If the variable is non-empty it is run as a command and the output
1644becomes the new value.
1645.It Cm \&::= Ns Ar str
1646The variable is assigned the value
1647.Ar str
1648after substitution.
1649This modifier and its variations are useful in
1650obscure situations such as wanting to set a variable when shell commands
1651are being parsed.
1652These assignment modifiers always expand to
1653nothing, so if appearing in a rule line by themselves should be
1654preceded with something to keep
1655.Nm
1656happy.
1657.Pp
1658The
1659.Sq Cm \&::
1660helps avoid false matches with the
1661.At V
1662style
1663.Cm \&:=
1664modifier and since substitution always occurs the
1665.Cm \&::=
1666form is vaguely appropriate.
1667.It Cm \&::?= Ns Ar str
1668As for
1669.Cm \&::=
1670but only if the variable does not already have a value.
1671.It Cm \&::+= Ns Ar str
1672Append
1673.Ar str
1674to the variable.
1675.It Cm \&::!= Ns Ar cmd
1676Assign the output of
1677.Ar cmd
1678to the variable.
1679.It Cm \&:\&[ Ns Ar range Ns Cm \&]
1680Selects one or more words from the value,
1681or performs other operations related to the way in which the
1682value is divided into words.
1683.Pp
1684Ordinarily, a value is treated as a sequence of words
1685delimited by white space.
1686Some modifiers suppress this behavior,
1687causing a value to be treated as a single word
1688(possibly containing embedded white space).
1689An empty value, or a value that consists entirely of white-space,
1690is treated as a single word.
1691For the purposes of the
1692.Sq Cm \&:[]
1693modifier, the words are indexed both forwards using positive integers
1694(where index 1 represents the first word),
1695and backwards using negative integers
1696(where index \-1 represents the last word).
1697.Pp
1698The
1699.Ar range
1700is subjected to variable expansion, and the expanded result is
1701then interpreted as follows:
1702.Bl -tag -width index
1703.\" :[n]
1704.It Ar index
1705Selects a single word from the value.
1706.\" :[start..end]
1707.It Ar start Ns Cm \&.. Ns Ar end
1708Selects all words from
1709.Ar start
1710to
1711.Ar end ,
1712inclusive.
1713For example,
1714.Sq Cm \&:[2..-1]
1715selects all words from the second word to the last word.
1716If
1717.Ar start
1718is greater than
1719.Ar end ,
1720then the words are output in reverse order.
1721For example,
1722.Sq Cm \&:[-1..1]
1723selects all the words from last to first.
1724If the list is already ordered, then this effectively reverses
1725the list, but it is more efficient to use
1726.Sq Cm \&:Or
1727instead of
1728.Sq Cm \&:O:[-1..1] .
1729.\" :[*]
1730.It Cm \&*
1731Causes subsequent modifiers to treat the value as a single word
1732(possibly containing embedded white space).
1733Analogous to the effect of
1734\&"$*\&"
1735in Bourne shell.
1736.\" :[0]
1737.It 0
1738Means the same as
1739.Sq Cm \&:[*] .
1740.\" :[*]
1741.It Cm \&@
1742Causes subsequent modifiers to treat the value as a sequence of words
1743delimited by white space.
1744Analogous to the effect of
1745\&"$@\&"
1746in Bourne shell.
1747.\" :[#]
1748.It Cm \&#
1749Returns the number of words in the value.
1750.El \" :[range]
1751.El
1752.Sh INCLUDE STATEMENTS, CONDITIONALS AND FOR LOOPS
1753Makefile inclusion, conditional structures and for loops reminiscent
1754of the C programming language are provided in
1755.Nm .
1756All such structures are identified by a line beginning with a single
1757dot
1758.Pq Ql \&.
1759character.
1760Files are included with either
1761.Cm \&.include \&< Ns Ar file Ns Cm \&>
1762or
1763.Cm \&.include \&\*q Ns Ar file Ns Cm \&\*q .
1764Variables between the angle brackets or double quotes are expanded
1765to form the file name.
1766If angle brackets are used, the included makefile is expected to be in
1767the system makefile directory.
1768If double quotes are used, the including makefile's directory and any
1769directories specified using the
1770.Fl I
1771option are searched before the system
1772makefile directory.
1773For compatibility with other versions of
1774.Nm
1775.Ql include file ...
1776is also accepted.
1777.Pp
1778If the include statement is written as
1779.Cm .-include
1780or as
1781.Cm .sinclude
1782then errors locating and/or opening include files are ignored.
1783.Pp
1784If the include statement is written as
1785.Cm .dinclude
1786not only are errors locating and/or opening include files ignored,
1787but stale dependencies within the included file will be ignored
1788just like
1789.Va .MAKE.DEPENDFILE .
1790.Pp
1791Conditional expressions are also preceded by a single dot as the first
1792character of a line.
1793The possible conditionals are as follows:
1794.Bl -tag -width Ds
1795.It Ic .error Ar message
1796The message is printed along with the name of the makefile and line number,
1797then
1798.Nm
1799will exit immediately.
1800.It Ic .export Ar variable ...
1801Export the specified global variable.
1802If no variable list is provided, all globals are exported
1803except for internal variables (those that start with
1804.Ql \&. ) .
1805This is not affected by the
1806.Fl X
1807flag, so should be used with caution.
1808For compatibility with other
1809.Nm
1810programs
1811.Ql export variable=value
1812is also accepted.
1813.Pp
1814Appending a variable name to
1815.Va .MAKE.EXPORTED
1816is equivalent to exporting a variable.
1817.It Ic .export-env Ar variable ...
1818The same as
1819.Ql .export ,
1820except that the variable is not appended to
1821.Va .MAKE.EXPORTED .
1822This allows exporting a value to the environment which is different from that
1823used by
1824.Nm
1825internally.
1826.It Ic .export-literal Ar variable ...
1827The same as
1828.Ql .export-env ,
1829except that variables in the value are not expanded.
1830.It Ic .info Ar message
1831The message is printed along with the name of the makefile and line number.
1832.It Ic .undef Ar variable ...
1833Un-define the specified global variables.
1834Only global variables can be un-defined.
1835.It Ic .unexport Ar variable ...
1836The opposite of
1837.Ql .export .
1838The specified global
1839.Va variable
1840will be removed from
1841.Va .MAKE.EXPORTED .
1842If no variable list is provided, all globals are unexported,
1843and
1844.Va .MAKE.EXPORTED
1845deleted.
1846.It Ic .unexport-env
1847Unexport all globals previously exported and
1848clear the environment inherited from the parent.
1849This operation will cause a memory leak of the original environment,
1850so should be used sparingly.
1851Testing for
1852.Va .MAKE.LEVEL
1853being 0, would make sense.
1854Also note that any variables which originated in the parent environment
1855should be explicitly preserved if desired.
1856For example:
1857.Bd -literal -offset indent
1858.Li .if ${.MAKE.LEVEL} == 0
1859PATH := ${PATH}
1860.Li .unexport-env
1861.Li .export PATH
1862.Li .endif
1863.Pp
1864.Ed
1865Would result in an environment containing only
1866.Sq Ev PATH ,
1867which is the minimal useful environment.
1868Actually
1869.Sq Ev .MAKE.LEVEL
1870will also be pushed into the new environment.
1871.It Ic .warning Ar message
1872The message prefixed by
1873.Sq Pa warning:
1874is printed along with the name of the makefile and line number.
1875.It Ic \&.if Oo \&! Oc Ns Ar expression Op Ar operator expression ...
1876Test the value of an expression.
1877.It Ic .ifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
1878Test the value of a variable.
1879.It Ic .ifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
1880Test the value of a variable.
1881.It Ic .ifmake Oo \&! Oc Ns Ar target Op Ar operator target ...
1882Test the target being built.
1883.It Ic .ifnmake Oo \&! Ns Oc Ar target Op Ar operator target ...
1884Test the target being built.
1885.It Ic .else
1886Reverse the sense of the last conditional.
1887.It Ic .elif Oo \&! Ns Oc Ar expression Op Ar operator expression ...
1888A combination of
1889.Sq Ic .else
1890followed by
1891.Sq Ic .if .
1892.It Ic .elifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
1893A combination of
1894.Sq Ic .else
1895followed by
1896.Sq Ic .ifdef .
1897.It Ic .elifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
1898A combination of
1899.Sq Ic .else
1900followed by
1901.Sq Ic .ifndef .
1902.It Ic .elifmake Oo \&! Oc Ns Ar target Op Ar operator target ...
1903A combination of
1904.Sq Ic .else
1905followed by
1906.Sq Ic .ifmake .
1907.It Ic .elifnmake Oo \&! Oc Ns Ar target Op Ar operator target ...
1908A combination of
1909.Sq Ic .else
1910followed by
1911.Sq Ic .ifnmake .
1912.It Ic .endif
1913End the body of the conditional.
1914.El
1915.Pp
1916The
1917.Ar operator
1918may be any one of the following:
1919.Bl -tag -width "Cm XX"
1920.It Cm \&|\&|
1921Logical OR.
1922.It Cm \&&&
1923Logical
1924.Tn AND ;
1925of higher precedence than
1926.Dq \&|\&| .
1927.El
1928.Pp
1929As in C,
1930.Nm
1931will only evaluate a conditional as far as is necessary to determine
1932its value.
1933Parentheses may be used to change the order of evaluation.
1934The boolean operator
1935.Sq Ic \&!
1936may be used to logically negate an entire
1937conditional.
1938It is of higher precedence than
1939.Sq Ic \&&& .
1940.Pp
1941The value of
1942.Ar expression
1943may be any of the following:
1944.Bl -tag -width defined
1945.It Ic defined
1946Takes a variable name as an argument and evaluates to true if the variable
1947has been defined.
1948.It Ic make
1949Takes a target name as an argument and evaluates to true if the target
1950was specified as part of
1951.Nm Ns 's
1952command line or was declared the default target (either implicitly or
1953explicitly, see
1954.Va .MAIN )
1955before the line containing the conditional.
1956.It Ic empty
1957Takes a variable, with possible modifiers, and evaluates to true if
1958the expansion of the variable would result in an empty string.
1959.It Ic exists
1960Takes a file name as an argument and evaluates to true if the file exists.
1961The file is searched for on the system search path (see
1962.Va .PATH ) .
1963.It Ic target
1964Takes a target name as an argument and evaluates to true if the target
1965has been defined.
1966.It Ic commands
1967Takes a target name as an argument and evaluates to true if the target
1968has been defined and has commands associated with it.
1969.El
1970.Pp
1971.Ar Expression
1972may also be an arithmetic or string comparison.
1973Variable expansion is
1974performed on both sides of the comparison, after which the numerical
1975values are compared.
1976A value is interpreted as hexadecimal if it is
1977preceded by 0x, otherwise it is decimal; octal numbers are not supported.
1978The standard C relational operators are all supported.
1979If after
1980variable expansion, either the left or right hand side of a
1981.Sq Ic ==
1982or
1983.Sq Ic "!="
1984operator is not a numerical value, then
1985string comparison is performed between the expanded
1986variables.
1987If no relational operator is given, it is assumed that the expanded
1988variable is being compared against 0, or an empty string in the case
1989of a string comparison.
1990.Pp
1991When
1992.Nm
1993is evaluating one of these conditional expressions, and it encounters
1994a (white-space separated) word it doesn't recognize, either the
1995.Dq make
1996or
1997.Dq defined
1998expression is applied to it, depending on the form of the conditional.
1999If the form is
2000.Sq Ic .ifdef ,
2001.Sq Ic .ifndef ,
2002or
2003.Sq Ic .if
2004the
2005.Dq defined
2006expression is applied.
2007Similarly, if the form is
2008.Sq Ic .ifmake
2009or
2010.Sq Ic .ifnmake ,
2011the
2012.Dq make
2013expression is applied.
2014.Pp
2015If the conditional evaluates to true the parsing of the makefile continues
2016as before.
2017If it evaluates to false, the following lines are skipped.
2018In both cases this continues until a
2019.Sq Ic .else
2020or
2021.Sq Ic .endif
2022is found.
2023.Pp
2024For loops are typically used to apply a set of rules to a list of files.
2025The syntax of a for loop is:
2026.Pp
2027.Bl -tag -compact -width Ds
2028.It Ic \&.for Ar variable Oo Ar variable ... Oc Ic in Ar expression
2029.It Aq make-lines
2030.It Ic \&.endfor
2031.El
2032.Pp
2033After the for
2034.Ic expression
2035is evaluated, it is split into words.
2036On each iteration of the loop, one word is taken and assigned to each
2037.Ic variable ,
2038in order, and these
2039.Ic variables
2040are substituted into the
2041.Ic make-lines
2042inside the body of the for loop.
2043The number of words must come out even; that is, if there are three
2044iteration variables, the number of words provided must be a multiple
2045of three.
2046.Sh COMMENTS
2047Comments begin with a hash
2048.Pq Ql \&#
2049character, anywhere but in a shell
2050command line, and continue to the end of an unescaped new line.
2051.Sh SPECIAL SOURCES (ATTRIBUTES)
2052.Bl -tag -width .IGNOREx
2053.It Ic .EXEC
2054Target is never out of date, but always execute commands anyway.
2055.It Ic .IGNORE
2056Ignore any errors from the commands associated with this target, exactly
2057as if they all were preceded by a dash
2058.Pq Ql \- .
2059.\" .It Ic .INVISIBLE
2060.\" XXX
2061.\" .It Ic .JOIN
2062.\" XXX
2063.It Ic .MADE
2064Mark all sources of this target as being up-to-date.
2065.It Ic .MAKE
2066Execute the commands associated with this target even if the
2067.Fl n
2068or
2069.Fl t
2070options were specified.
2071Normally used to mark recursive
2072.Nm Ns s .
2073.It Ic .META
2074Create a meta file for the target, even if it is flagged as
2075.Ic .PHONY ,
2076.Ic .MAKE ,
2077or
2078.Ic .SPECIAL .
2079Usage in conjunction with
2080.Ic .MAKE
2081is the most likely case.
2082In "meta" mode, the target is out-of-date if the meta file is missing.
2083.It Ic .NOMETA
2084Do not create a meta file for the target.
2085Meta files are also not created for
2086.Ic .PHONY ,
2087.Ic .MAKE ,
2088or
2089.Ic .SPECIAL
2090targets.
2091.It Ic .NOMETA_CMP
2092Ignore differences in commands when deciding if target is out of date.
2093This is useful if the command contains a value which always changes.
2094If the number of commands change, though, the target will still be out of date.
2095The same effect applies to any command line that uses the variable
2096.Va .OODATE ,
2097which can be used for that purpose even when not otherwise needed or desired:
2098.Bd -literal -offset indent
2099
2100skip-compare-for-some:
2101	@echo this will be compared
2102	@echo this will not ${.OODATE:M.NOMETA_CMP}
2103	@echo this will also be compared
2104
2105.Ed
2106The
2107.Cm \&:M
2108pattern suppresses any expansion of the unwanted variable.
2109.It Ic .NOPATH
2110Do not search for the target in the directories specified by
2111.Ic .PATH .
2112.It Ic .NOTMAIN
2113Normally
2114.Nm
2115selects the first target it encounters as the default target to be built
2116if no target was specified.
2117This source prevents this target from being selected.
2118.It Ic .OPTIONAL
2119If a target is marked with this attribute and
2120.Nm
2121can't figure out how to create it, it will ignore this fact and assume
2122the file isn't needed or already exists.
2123.It Ic .PHONY
2124The target does not
2125correspond to an actual file; it is always considered to be out of date,
2126and will not be created with the
2127.Fl t
2128option.
2129Suffix-transformation rules are not applied to
2130.Ic .PHONY
2131targets.
2132.It Ic .PRECIOUS
2133When
2134.Nm
2135is interrupted, it normally removes any partially made targets.
2136This source prevents the target from being removed.
2137.It Ic .RECURSIVE
2138Synonym for
2139.Ic .MAKE .
2140.It Ic .SILENT
2141Do not echo any of the commands associated with this target, exactly
2142as if they all were preceded by an at sign
2143.Pq Ql @ .
2144.It Ic .USE
2145Turn the target into
2146.Nm Ns 's
2147version of a macro.
2148When the target is used as a source for another target, the other target
2149acquires the commands, sources, and attributes (except for
2150.Ic .USE )
2151of the
2152source.
2153If the target already has commands, the
2154.Ic .USE
2155target's commands are appended
2156to them.
2157.It Ic .USEBEFORE
2158Exactly like
2159.Ic .USE ,
2160but prepend the
2161.Ic .USEBEFORE
2162target commands to the target.
2163.It Ic .WAIT
2164If
2165.Ic .WAIT
2166appears in a dependency line, the sources that precede it are
2167made before the sources that succeed it in the line.
2168Since the dependents of files are not made until the file itself
2169could be made, this also stops the dependents being built unless they
2170are needed for another branch of the dependency tree.
2171So given:
2172.Bd -literal
2173x: a .WAIT b
2174	echo x
2175a:
2176	echo a
2177b: b1
2178	echo b
2179b1:
2180	echo b1
2181
2182.Ed
2183the output is always
2184.Ql a ,
2185.Ql b1 ,
2186.Ql b ,
2187.Ql x .
2188.br
2189The ordering imposed by
2190.Ic .WAIT
2191is only relevant for parallel makes.
2192.El
2193.Sh SPECIAL TARGETS
2194Special targets may not be included with other targets, i.e. they must be
2195the only target specified.
2196.Bl -tag -width .BEGINx
2197.It Ic .BEGIN
2198Any command lines attached to this target are executed before anything
2199else is done.
2200.It Ic .DEFAULT
2201This is sort of a
2202.Ic .USE
2203rule for any target (that was used only as a
2204source) that
2205.Nm
2206can't figure out any other way to create.
2207Only the shell script is used.
2208The
2209.Ic .IMPSRC
2210variable of a target that inherits
2211.Ic .DEFAULT Ns 's
2212commands is set
2213to the target's own name.
2214.It Ic .DELETE_ON_ERROR
2215If this target is present in the makefile, it globally causes make to
2216delete targets whose commands fail.
2217(By default, only targets whose commands are interrupted during
2218execution are deleted.
2219This is the historical behavior.)
2220This setting can be used to help prevent half-finished or malformed
2221targets from being left around and corrupting future rebuilds.
2222.It Ic .END
2223Any command lines attached to this target are executed after everything
2224else is done.
2225.It Ic .ERROR
2226Any command lines attached to this target are executed when another target fails.
2227The
2228.Ic .ERROR_TARGET
2229variable is set to the target that failed.
2230See also
2231.Ic MAKE_PRINT_VAR_ON_ERROR .
2232.It Ic .IGNORE
2233Mark each of the sources with the
2234.Ic .IGNORE
2235attribute.
2236If no sources are specified, this is the equivalent of specifying the
2237.Fl i
2238option.
2239.It Ic .INTERRUPT
2240If
2241.Nm
2242is interrupted, the commands for this target will be executed.
2243.It Ic .MAIN
2244If no target is specified when
2245.Nm
2246is invoked, this target will be built.
2247.It Ic .MAKEFLAGS
2248This target provides a way to specify flags for
2249.Nm
2250when the makefile is used.
2251The flags are as if typed to the shell, though the
2252.Fl f
2253option will have
2254no effect.
2255.\" XXX: NOT YET!!!!
2256.\" .It Ic .NOTPARALLEL
2257.\" The named targets are executed in non parallel mode.
2258.\" If no targets are
2259.\" specified, then all targets are executed in non parallel mode.
2260.It Ic .NOPATH
2261Apply the
2262.Ic .NOPATH
2263attribute to any specified sources.
2264.It Ic .NOTPARALLEL
2265Disable parallel mode.
2266.It Ic .NO_PARALLEL
2267Synonym for
2268.Ic .NOTPARALLEL ,
2269for compatibility with other pmake variants.
2270.It Ic .OBJDIR
2271The source is a new value for
2272.Sq Va .OBJDIR .
2273If it exists,
2274.Nm
2275will
2276.Xr chdir 2
2277to it and update the value of
2278.Sq Va .OBJDIR .
2279.It Ic .ORDER
2280In parallel mode, the named targets are made in sequence.
2281This ordering does not add targets to the list of targets to be made.
2282.Pp
2283Since the dependents of a target do not get built until the target itself
2284could be built, unless
2285.Ql a
2286is built by another part of the dependency graph,
2287the following is a dependency loop:
2288.Bd -literal
2289\&.ORDER: b a
2290b: a
2291.Ed
2292.Pp
2293.\" XXX: NOT YET!!!!
2294.\" .It Ic .PARALLEL
2295.\" The named targets are executed in parallel mode.
2296.\" If no targets are
2297.\" specified, then all targets are executed in parallel mode.
2298.It Ic .PATH
2299The sources are directories which are to be searched for files not
2300found in the current directory.
2301If no sources are specified, any previously specified directories are
2302deleted.
2303If the source is the special
2304.Ic .DOTLAST
2305target, then the current working
2306directory is searched last.
2307.It Ic .PATH. Ns Va suffix
2308Like
2309.Ic .PATH
2310but applies only to files with a particular suffix.
2311The suffix must have been previously declared with
2312.Ic .SUFFIXES .
2313.It Ic .PHONY
2314Apply the
2315.Ic .PHONY
2316attribute to any specified sources.
2317.It Ic .POSIX
2318If this is the first non-comment line in the main makefile,
2319the variable
2320.Va %POSIX
2321is set to the value
2322.Ql 1003.2
2323and the makefile
2324.Ql <posix.mk>
2325is included if it exists,
2326to provide POSIX-compatible default rules.
2327If
2328.Nm
2329is run with the
2330.Fl r
2331flag, then only
2332.Ql posix.mk
2333will contribute to the default rules.
2334.It Ic .PRECIOUS
2335Apply the
2336.Ic .PRECIOUS
2337attribute to any specified sources.
2338If no sources are specified, the
2339.Ic .PRECIOUS
2340attribute is applied to every
2341target in the file.
2342.It Ic .SHELL
2343Sets the shell that
2344.Nm
2345will use to execute commands.
2346The sources are a set of
2347.Ar field=value
2348pairs.
2349.Bl -tag -width hasErrCtls
2350.It Ar name
2351This is the minimal specification, used to select one of the built-in
2352shell specs;
2353.Ar sh ,
2354.Ar ksh ,
2355and
2356.Ar csh .
2357.It Ar path
2358Specifies the path to the shell.
2359.It Ar hasErrCtl
2360Indicates whether the shell supports exit on error.
2361.It Ar check
2362The command to turn on error checking.
2363.It Ar ignore
2364The command to disable error checking.
2365.It Ar echo
2366The command to turn on echoing of commands executed.
2367.It Ar quiet
2368The command to turn off echoing of commands executed.
2369.It Ar filter
2370The output to filter after issuing the
2371.Ar quiet
2372command.
2373It is typically identical to
2374.Ar quiet .
2375.It Ar errFlag
2376The flag to pass the shell to enable error checking.
2377.It Ar echoFlag
2378The flag to pass the shell to enable command echoing.
2379.It Ar newline
2380The string literal to pass the shell that results in a single newline
2381character when used outside of any quoting characters.
2382.El
2383Example:
2384.Bd -literal
2385\&.SHELL: name=ksh path=/bin/ksh hasErrCtl=true \e
2386	check="set \-e" ignore="set +e" \e
2387	echo="set \-v" quiet="set +v" filter="set +v" \e
2388	echoFlag=v errFlag=e newline="'\en'"
2389.Ed
2390.It Ic .SILENT
2391Apply the
2392.Ic .SILENT
2393attribute to any specified sources.
2394If no sources are specified, the
2395.Ic .SILENT
2396attribute is applied to every
2397command in the file.
2398.It Ic .STALE
2399This target gets run when a dependency file contains stale entries, having
2400.Va .ALLSRC
2401set to the name of that dependency file.
2402.It Ic .SUFFIXES
2403Each source specifies a suffix to
2404.Nm .
2405If no sources are specified, any previously specified suffixes are deleted.
2406It allows the creation of suffix-transformation rules.
2407.Pp
2408Example:
2409.Bd -literal
2410\&.SUFFIXES: .o
2411\&.c.o:
2412	cc \-o ${.TARGET} \-c ${.IMPSRC}
2413.Ed
2414.El
2415.Sh ENVIRONMENT
2416.Nm
2417uses the following environment variables, if they exist:
2418.Ev MACHINE ,
2419.Ev MACHINE_ARCH ,
2420.Ev MAKE ,
2421.Ev MAKEFLAGS ,
2422.Ev MAKEOBJDIR ,
2423.Ev MAKEOBJDIRPREFIX ,
2424.Ev MAKESYSPATH ,
2425.Ev PWD ,
2426and
2427.Ev TMPDIR .
2428.Pp
2429.Ev MAKEOBJDIRPREFIX
2430and
2431.Ev MAKEOBJDIR
2432may only be set in the environment or on the command line to
2433.Nm
2434and not as makefile variables;
2435see the description of
2436.Sq Va .OBJDIR
2437for more details.
2438.Sh FILES
2439.Bl -tag -width /usr/share/mk -compact
2440.It .depend
2441list of dependencies
2442.It Makefile
2443list of dependencies
2444.It makefile
2445list of dependencies
2446.It sys.mk
2447system makefile
2448.It /usr/share/mk
2449system makefile directory
2450.El
2451.Sh COMPATIBILITY
2452The basic make syntax is compatible between different versions of make;
2453however the special variables, variable modifiers and conditionals are not.
2454.Ss Older versions
2455An incomplete list of changes in older versions of
2456.Nm :
2457.Pp
2458The way that .for loop variables are substituted changed after
2459.Nx 5.0
2460so that they still appear to be variable expansions.
2461In particular this stops them being treated as syntax, and removes some
2462obscure problems using them in .if statements.
2463.Pp
2464The way that parallel makes are scheduled changed in
2465.Nx 4.0
2466so that .ORDER and .WAIT apply recursively to the dependent nodes.
2467The algorithms used may change again in the future.
2468.Ss Other make dialects
2469Other make dialects (GNU make, SVR4 make, POSIX make, etc.) do not
2470support most of the features of
2471.Nm
2472as described in this manual.
2473Most notably:
2474.Bl -bullet -offset indent
2475.It
2476The
2477.Ic .WAIT
2478and
2479.Ic .ORDER
2480declarations and most functionality pertaining to parallelization.
2481(GNU make supports parallelization but lacks these features needed to
2482control it effectively.)
2483.It
2484Directives, including for loops and conditionals and most of the
2485forms of include files.
2486(GNU make has its own incompatible and less powerful syntax for
2487conditionals.)
2488.It
2489All built-in variables that begin with a dot.
2490.It
2491Most of the special sources and targets that begin with a dot,
2492with the notable exception of
2493.Ic .PHONY ,
2494.Ic .PRECIOUS ,
2495and
2496.Ic .SUFFIXES .
2497.It
2498Variable modifiers, except for the
2499.Dl :old=new
2500string substitution, which does not portably support globbing with
2501.Ql %
2502and historically only works on declared suffixes.
2503.It
2504The
2505.Ic $>
2506variable even in its short form; most makes support this functionality
2507but its name varies.
2508.El
2509.Pp
2510Some features are somewhat more portable, such as assignment with
2511.Ic += ,
2512.Ic ?= ,
2513and
2514.Ic != .
2515The
2516.Ic .PATH
2517functionality is based on an older feature
2518.Ic VPATH
2519found in GNU make and many versions of SVR4 make; however,
2520historically its behavior is too ill-defined (and too buggy) to rely
2521upon.
2522.Pp
2523The
2524.Ic $@
2525and
2526.Ic $<
2527variables are more or less universally portable, as is the
2528.Ic $(MAKE)
2529variable.
2530Basic use of suffix rules (for files only in the current directory,
2531not trying to chain transformations together, etc.) is also reasonably
2532portable.
2533.Sh SEE ALSO
2534.Xr mkdep 1 ,
2535.Xr style.Makefile 5
2536.Sh HISTORY
2537A
2538.Nm
2539command appeared in
2540.At v7 .
2541This
2542.Nm
2543implementation is based on Adam De Boor's pmake program which was written
2544for Sprite at Berkeley.
2545It was designed to be a parallel distributed make running jobs on different
2546machines using a daemon called
2547.Dq customs .
2548.Pp
2549Historically the target/dependency
2550.Dq FRC
2551has been used to FoRCe rebuilding (since the target/dependency
2552does not exist... unless someone creates an
2553.Dq FRC
2554file).
2555.Sh BUGS
2556The
2557.Nm
2558syntax is difficult to parse without actually acting on the data.
2559For instance, finding the end of a variable's use should involve scanning
2560each of the modifiers, using the correct terminator for each field.
2561In many places
2562.Nm
2563just counts {} and () in order to find the end of a variable expansion.
2564.Pp
2565There is no way of escaping a space character in a filename.
2566