xref: /freebsd/contrib/bmake/bmake.1 (revision 9d54812421274e490dc5f0fe4722ab8d35d9b258)
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 BMAKE 1
34.Os
35.Sh NAME
36.Nm bmake
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.DEPENDFILE
851Names the makefile (default
852.Sq Pa .depend )
853from which generated dependencies are read.
854.It Va .MAKE.EXPAND_VARIABLES
855A boolean that controls the default behavior of the
856.Fl V
857option.
858If true, variable values printed with
859.Fl V
860are fully expanded; if false, the raw variable contents (which may
861include additional unexpanded variable references) are shown.
862.It Va .MAKE.EXPORTED
863The list of variables exported by
864.Nm .
865.It Va .MAKE.JOBS
866The argument to the
867.Fl j
868option.
869.It Va .MAKE.JOB.PREFIX
870If
871.Nm
872is run with
873.Fl j ,
874the output for each target is prefixed with a token
875.Ql --- target ---
876the first part of which can be controlled via
877.Va .MAKE.JOB.PREFIX .
878If
879.Va .MAKE.JOB.PREFIX
880is empty, no token is printed.
881For example, setting
882.Va .MAKE.JOB.PREFIX
883to
884.Li ${.newline}---${.MAKE:T}[${.MAKE.PID}]
885would produce tokens like
886.Ql ---make[1234] target ---
887making it easier to track the degree of parallelism being achieved.
888.It .MAKE.TARGET_LOCAL_VARIABLES
889If set to
890.Ql false ,
891apparent variable assignments in dependency lines are
892treated as normal sources.
893.It Ev MAKEFLAGS
894The environment variable
895.Sq Ev MAKEFLAGS
896may contain anything that
897may be specified on
898.Nm Ns 's
899command line.
900Anything specified on
901.Nm Ns 's
902command line is appended to the
903.Sq Ev MAKEFLAGS
904variable which is then
905entered into the environment for all programs which
906.Nm
907executes.
908.It Va .MAKE.LEVEL
909The recursion depth of
910.Nm .
911The initial instance of
912.Nm
913will be 0, and an incremented value is put into the environment
914to be seen by the next generation.
915This allows tests like:
916.Li .if ${.MAKE.LEVEL} == 0
917to protect things which should only be evaluated in the initial instance of
918.Nm .
919.It Va .MAKE.MAKEFILE_PREFERENCE
920The ordered list of makefile names
921(default
922.Sq Pa makefile ,
923.Sq Pa Makefile )
924that
925.Nm
926will look for.
927.It Va .MAKE.MAKEFILES
928The list of makefiles read by
929.Nm ,
930which is useful for tracking dependencies.
931Each makefile is recorded only once, regardless of the number of times read.
932.It Va .MAKE.MODE
933Processed after reading all makefiles.
934Can affect the mode that
935.Nm
936runs in.
937It can contain a number of keywords:
938.Bl -hang -width missing-filemon=bf.
939.It Pa compat
940Like
941.Fl B ,
942puts
943.Nm
944into "compat" mode.
945.It Pa meta
946Puts
947.Nm
948into "meta" mode, where meta files are created for each target
949to capture the command run, the output generated and if
950.Xr filemon 4
951is available, the system calls which are of interest to
952.Nm .
953The captured output can be very useful when diagnosing errors.
954.It Pa curdirOk= Ar bf
955Normally
956.Nm
957will not create .meta files in
958.Sq Va .CURDIR .
959This can be overridden by setting
960.Va bf
961to a value which represents True.
962.It Pa missing-meta= Ar bf
963If
964.Va bf
965is True, then a missing .meta file makes the target out-of-date.
966.It Pa missing-filemon= Ar bf
967If
968.Va bf
969is True, then missing filemon data makes the target out-of-date.
970.It Pa nofilemon
971Do not use
972.Xr filemon 4 .
973.It Pa env
974For debugging, it can be useful to include the environment
975in the .meta file.
976.It Pa verbose
977If in "meta" mode, print a clue about the target being built.
978This is useful if the build is otherwise running silently.
979The message printed the value of:
980.Va .MAKE.META.PREFIX .
981.It Pa ignore-cmd
982Some makefiles have commands which are simply not stable.
983This keyword causes them to be ignored for
984determining whether a target is out of date in "meta" mode.
985See also
986.Ic .NOMETA_CMP .
987.It Pa silent= Ar bf
988If
989.Va bf
990is True, when a .meta file is created, mark the target
991.Ic .SILENT .
992.It Pa randomize-targets
993In both compat and parallel mode, do not make the targets in the usual order,
994but instead randomize their order.
995This mode can be used to detect undeclared dependencies between files.
996.El
997.It Va .MAKE.META.BAILIWICK
998In "meta" mode, provides a list of prefixes which
999match the directories controlled by
1000.Nm .
1001If a file that was generated outside of
1002.Va .OBJDIR
1003but within said bailiwick is missing,
1004the current target is considered out-of-date.
1005.It Va .MAKE.META.CMP_FILTER
1006In "meta" mode, it can (very rarely!) be useful to filter command
1007lines before comparison.
1008This variable can be set to a set of modifiers that will be applied to
1009each line of the old and new command that differ, if the filtered
1010commands still differ, the target is considered out-of-date.
1011.It Va .MAKE.META.CREATED
1012In "meta" mode, this variable contains a list of all the meta files
1013updated.
1014If not empty, it can be used to trigger processing of
1015.Va .MAKE.META.FILES .
1016.It Va .MAKE.META.FILES
1017In "meta" mode, this variable contains a list of all the meta files
1018used (updated or not).
1019This list can be used to process the meta files to extract dependency
1020information.
1021.It Va .MAKE.META.IGNORE_PATHS
1022Provides a list of path prefixes that should be ignored;
1023because the contents are expected to change over time.
1024The default list includes:
1025.Sq Pa /dev /etc /proc /tmp /var/run /var/tmp
1026.It Va .MAKE.META.IGNORE_PATTERNS
1027Provides a list of patterns to match against pathnames.
1028Ignore any that match.
1029.It Va .MAKE.META.IGNORE_FILTER
1030Provides a list of variable modifiers to apply to each pathname.
1031Ignore if the expansion is an empty string.
1032.It Va .MAKE.META.PREFIX
1033Defines the message printed for each meta file updated in "meta verbose" mode.
1034The default value is:
1035.Dl Building ${.TARGET:H:tA}/${.TARGET:T}
1036.It Va .MAKEOVERRIDES
1037This variable is used to record the names of variables assigned to
1038on the command line, so that they may be exported as part of
1039.Sq Ev MAKEFLAGS .
1040This behavior can be disabled by assigning an empty value to
1041.Sq Va .MAKEOVERRIDES
1042within a makefile.
1043Extra variables can be exported from a makefile
1044by appending their names to
1045.Sq Va .MAKEOVERRIDES .
1046.Sq Ev MAKEFLAGS
1047is re-exported whenever
1048.Sq Va .MAKEOVERRIDES
1049is modified.
1050.It Va .MAKE.PATH_FILEMON
1051If
1052.Nm
1053was built with
1054.Xr filemon 4
1055support, this is set to the path of the device node.
1056This allows makefiles to test for this support.
1057.It Va .MAKE.PID
1058The process-id of
1059.Nm .
1060.It Va .MAKE.PPID
1061The parent process-id of
1062.Nm .
1063.It Va .MAKE.SAVE_DOLLARS
1064value should be a boolean that controls whether
1065.Ql $$
1066are preserved when doing
1067.Ql :=
1068assignments.
1069The default is false, for backwards compatibility.
1070Set to true for compatability with other makes.
1071If set to false,
1072.Ql $$
1073becomes
1074.Ql $
1075per normal evaluation rules.
1076.It Va .MAKE.UID
1077The user-id running
1078.Nm .
1079.It Va .MAKE.GID
1080The group-id running
1081.Nm .
1082.It Va MAKE_PRINT_VAR_ON_ERROR
1083When
1084.Nm
1085stops due to an error, it sets
1086.Sq Va .ERROR_TARGET
1087to the name of the target that failed,
1088.Sq Va .ERROR_CMD
1089to the commands of the failed target,
1090and in "meta" mode, it also sets
1091.Sq Va .ERROR_CWD
1092to the
1093.Xr getcwd 3 ,
1094and
1095.Sq Va .ERROR_META_FILE
1096to the path of the meta file (if any) describing the failed target.
1097It then prints its name and the value of
1098.Sq Va .CURDIR
1099as well as the value of any variables named in
1100.Sq Va MAKE_PRINT_VAR_ON_ERROR .
1101.It Va .newline
1102This variable is simply assigned a newline character as its value.
1103This allows expansions using the
1104.Cm \&:@
1105modifier to put a newline between
1106iterations of the loop rather than a space.
1107For example, the printing of
1108.Sq Va MAKE_PRINT_VAR_ON_ERROR
1109could be done as ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@}.
1110.It Va .OBJDIR
1111A path to the directory where the targets are built.
1112Its value is determined by trying to
1113.Xr chdir 2
1114to the following directories in order and using the first match:
1115.Bl -enum
1116.It
1117.Ev ${MAKEOBJDIRPREFIX}${.CURDIR}
1118.Pp
1119(Only if
1120.Sq Ev MAKEOBJDIRPREFIX
1121is set in the environment or on the command line.)
1122.It
1123.Ev ${MAKEOBJDIR}
1124.Pp
1125(Only if
1126.Sq Ev MAKEOBJDIR
1127is set in the environment or on the command line.)
1128.It
1129.Ev ${.CURDIR} Ns Pa /obj. Ns Ev ${MACHINE}
1130.It
1131.Ev ${.CURDIR} Ns Pa /obj
1132.It
1133.Pa /usr/obj/ Ns Ev ${.CURDIR}
1134.It
1135.Ev ${.CURDIR}
1136.El
1137.Pp
1138Variable expansion is performed on the value before it's used,
1139so expressions such as
1140.Dl ${.CURDIR:S,^/usr/src,/var/obj,}
1141may be used.
1142This is especially useful with
1143.Sq Ev MAKEOBJDIR .
1144.Pp
1145.Sq Va .OBJDIR
1146may be modified in the makefile via the special target
1147.Sq Ic .OBJDIR .
1148In all cases,
1149.Nm
1150will
1151.Xr chdir 2
1152to the specified directory if it exists, and set
1153.Sq Va .OBJDIR
1154and
1155.Sq Ev PWD
1156to that directory before executing any targets.
1157.Pp
1158Except in the case of an explicit
1159.Sq Ic .OBJDIR
1160target,
1161.Nm
1162will check that the specified directory is writable and ignore it if not.
1163This check can be skipped by setting the environment variable
1164.Sq Ev MAKE_OBJDIR_CHECK_WRITABLE
1165to "no".
1166.
1167.It Va .PARSEDIR
1168A path to the directory of the current
1169.Sq Pa Makefile
1170being parsed.
1171.It Va .PARSEFILE
1172The basename of the current
1173.Sq Pa Makefile
1174being parsed.
1175This variable and
1176.Sq Va .PARSEDIR
1177are both set only while the
1178.Sq Pa Makefiles
1179are being parsed.
1180If you want to retain their current values, assign them to a variable
1181using assignment with expansion
1182.Sq Cm \&:= .
1183.It Va .PATH
1184A variable that represents the list of directories that
1185.Nm
1186will search for files.
1187The search list should be updated using the target
1188.Sq Va .PATH
1189rather than the variable.
1190.It Ev PWD
1191Alternate path to the current directory.
1192.Nm
1193normally sets
1194.Sq Va .CURDIR
1195to the canonical path given by
1196.Xr getcwd 3 .
1197However, if the environment variable
1198.Sq Ev PWD
1199is set and gives a path to the current directory, then
1200.Nm
1201sets
1202.Sq Va .CURDIR
1203to the value of
1204.Sq Ev PWD
1205instead.
1206This behavior is disabled if
1207.Sq Ev MAKEOBJDIRPREFIX
1208is set or
1209.Sq Ev MAKEOBJDIR
1210contains a variable transform.
1211.Sq Ev PWD
1212is set to the value of
1213.Sq Va .OBJDIR
1214for all programs which
1215.Nm
1216executes.
1217.It Ev .SHELL
1218The pathname of the shell used to run target scripts.
1219It is read-only.
1220.It Ev .SUFFIXES
1221The list of known suffixes.
1222It is read-only.
1223.It Ev .TARGETS
1224The list of targets explicitly specified on the command line, if any.
1225.It Ev VPATH
1226Colon-separated
1227.Pq Dq \&:
1228lists of directories that
1229.Nm
1230will search for files.
1231The variable is supported for compatibility with old make programs only,
1232use
1233.Sq Va .PATH
1234instead.
1235.El
1236.Ss Variable modifiers
1237Variable expansion may be modified to select or modify each word of the
1238variable (where a
1239.Dq word
1240is white-space delimited sequence of characters).
1241The general format of a variable expansion is as follows:
1242.Pp
1243.Dl ${variable[:modifier[:...]]}
1244.Pp
1245Each modifier begins with a colon,
1246which may be escaped with a backslash
1247.Pq Ql \e .
1248.Pp
1249A set of modifiers can be specified via a variable, as follows:
1250.Pp
1251.Dl modifier_variable=modifier[:...]
1252.Dl ${variable:${modifier_variable}[:...]}
1253.Pp
1254In this case the first modifier in the modifier_variable does not
1255start with a colon, since that must appear in the referencing
1256variable.
1257If any of the modifiers in the modifier_variable contain a dollar sign
1258.Pq Ql $ ,
1259these must be doubled to avoid early expansion.
1260.Pp
1261The supported modifiers are:
1262.Bl -tag -width EEE
1263.It Cm \&:E
1264Replaces each word in the variable with its suffix.
1265.It Cm \&:H
1266Replaces each word in the variable with everything but the last component.
1267.It Cm \&:M\| Ns Ar pattern
1268Selects only those words that match
1269.Ar pattern .
1270The standard shell wildcard characters
1271.Pf ( Ql * ,
1272.Ql \&? ,
1273and
1274.Ql \&[] )
1275may
1276be used.
1277The wildcard characters may be escaped with a backslash
1278.Pq Ql \e .
1279As a consequence of the way values are split into words, matched,
1280and then joined, a construct like
1281.Dl ${VAR:M*}
1282will normalize the inter-word spacing, removing all leading and
1283trailing space, and converting multiple consecutive spaces
1284to single spaces.
1285.
1286.It Cm \&:N\| Ns Ar pattern
1287This is identical to
1288.Sq Cm \&:M ,
1289but selects all words which do not match
1290.Ar pattern .
1291.It Cm \&:O
1292Orders every word in variable alphabetically.
1293.It Cm \&:On
1294Orders every word in variable numerically.
1295A number followed by one of
1296.Ql k ,
1297.Ql M
1298or
1299.Ql G
1300is multiplied by the appropriate factor (1024 (k), 1048576 (M), or
13011073741824 (G)).
1302Both upper- and lower-case letters are accepted.
1303.It Cm \&:Or
1304Orders every word in variable in reverse alphabetical order.
1305.It Cm \&:Orn
1306Orders every word in variable in reverse numerical order.
1307.It Cm \&:Ox
1308Shuffles the words in variable.
1309The results will be different each time you are referring to the
1310modified variable; use the assignment with expansion
1311.Sq Cm \&:=
1312to prevent such behavior.
1313For example,
1314.Bd -literal -offset indent
1315LIST=			uno due tre quattro
1316RANDOM_LIST=		${LIST:Ox}
1317STATIC_RANDOM_LIST:=	${LIST:Ox}
1318
1319all:
1320	@echo "${RANDOM_LIST}"
1321	@echo "${RANDOM_LIST}"
1322	@echo "${STATIC_RANDOM_LIST}"
1323	@echo "${STATIC_RANDOM_LIST}"
1324.Ed
1325may produce output similar to:
1326.Bd -literal -offset indent
1327quattro due tre uno
1328tre due quattro uno
1329due uno quattro tre
1330due uno quattro tre
1331.Ed
1332.It Cm \&:Q
1333Quotes every shell meta-character in the variable, so that it can be passed
1334safely to the shell.
1335.It Cm \&:q
1336Quotes every shell meta-character in the variable, and also doubles
1337.Sq $
1338characters so that it can be passed
1339safely through recursive invocations of
1340.Nm .
1341This is equivalent to:
1342.Sq \&:S/\e\&$/&&/g:Q .
1343.It Cm \&:R
1344Replaces each word in the variable with everything but its suffix.
1345.It Cm \&:range Ns Oo = Ns Ar count Oc
1346The value is an integer sequence representing the words of the original
1347value, or the supplied
1348.Va count .
1349.It Cm \&:gmtime Ns Oo = Ns Ar utc Oc
1350The value is a format string for
1351.Xr strftime 3 ,
1352using
1353.Xr gmtime 3 .
1354If a
1355.Va utc
1356value is not provided or is 0, the current time is used.
1357.It Cm \&:hash
1358Computes a 32-bit hash of the value and encode it as hex digits.
1359.It Cm \&:localtime Ns Oo = Ns Ar utc Oc
1360The value is a format string for
1361.Xr strftime 3 ,
1362using
1363.Xr localtime 3 .
1364If a
1365.Va utc
1366value is not provided or is 0, the current time is used.
1367.It Cm \&:tA
1368Attempts to convert variable to an absolute path using
1369.Xr realpath 3 ,
1370if that fails, the value is unchanged.
1371.It Cm \&:tl
1372Converts variable to lower-case letters.
1373.It Cm \&:ts Ns Ar c
1374Words in the variable are normally separated by a space on expansion.
1375This modifier sets the separator to the character
1376.Ar c .
1377If
1378.Ar c
1379is omitted, then no separator is used.
1380The common escapes (including octal numeric codes) work as expected.
1381.It Cm \&:tu
1382Converts variable to upper-case letters.
1383.It Cm \&:tW
1384Causes the value to be treated as a single word
1385(possibly containing embedded white space).
1386See also
1387.Sq Cm \&:[*] .
1388.It Cm \&:tw
1389Causes the value to be treated as a sequence of
1390words delimited by white space.
1391See also
1392.Sq Cm \&:[@] .
1393.Sm off
1394.It Cm \&:S\| No \&/ Ar old_string\| No \&/ Ar new_string\| No \&/ Op Cm 1gW
1395.Sm on
1396Modifies the first occurrence of
1397.Ar old_string
1398in each word of the variable's value, replacing it with
1399.Ar new_string .
1400If a
1401.Ql g
1402is appended to the last delimiter of the pattern, all occurrences
1403in each word are replaced.
1404If a
1405.Ql 1
1406is appended to the last delimiter of the pattern, only the first occurrence
1407is affected.
1408If a
1409.Ql W
1410is appended to the last delimiter of the pattern,
1411then the value is treated as a single word
1412(possibly containing embedded white space).
1413If
1414.Ar old_string
1415begins with a caret
1416.Pq Ql ^ ,
1417.Ar old_string
1418is anchored at the beginning of each word.
1419If
1420.Ar old_string
1421ends with a dollar sign
1422.Pq Ql \&$ ,
1423it is anchored at the end of each word.
1424Inside
1425.Ar new_string ,
1426an ampersand
1427.Pq Ql &
1428is replaced by
1429.Ar old_string
1430(without any
1431.Ql ^
1432or
1433.Ql \&$ ) .
1434Any character may be used as a delimiter for the parts of the modifier
1435string.
1436The anchoring, ampersand and delimiter characters may be escaped with a
1437backslash
1438.Pq Ql \e .
1439.Pp
1440Variable expansion occurs in the normal fashion inside both
1441.Ar old_string
1442and
1443.Ar new_string
1444with the single exception that a backslash is used to prevent the expansion
1445of a dollar sign
1446.Pq Ql \&$ ,
1447not a preceding dollar sign as is usual.
1448.Sm off
1449.It Cm \&:C\| No \&/ Ar pattern\| No \&/ Ar replacement\| No \&/ Op Cm 1gW
1450.Sm on
1451The
1452.Cm \&:C
1453modifier is just like the
1454.Cm \&:S
1455modifier except that the old and new strings, instead of being
1456simple strings, are an extended regular expression (see
1457.Xr regex 3 )
1458string
1459.Ar pattern
1460and an
1461.Xr ed 1 Ns \-style
1462string
1463.Ar replacement .
1464Normally, the first occurrence of the pattern
1465.Ar pattern
1466in each word of the value is substituted with
1467.Ar replacement .
1468The
1469.Ql 1
1470modifier causes the substitution to apply to at most one word; the
1471.Ql g
1472modifier causes the substitution to apply to as many instances of the
1473search pattern
1474.Ar pattern
1475as occur in the word or words it is found in; the
1476.Ql W
1477modifier causes the value to be treated as a single word
1478(possibly containing embedded white space).
1479.Pp
1480As for the
1481.Cm \&:S
1482modifier, the
1483.Ar pattern
1484and
1485.Ar replacement
1486are subjected to variable expansion before being parsed as
1487regular expressions.
1488.It Cm \&:T
1489Replaces each word in the variable with its last path component.
1490.It Cm \&:u
1491Removes adjacent duplicate words (like
1492.Xr uniq 1 ) .
1493.Sm off
1494.It Cm \&:\&?\| Ar true_string\| Cm \&: Ar false_string
1495.Sm on
1496If the variable name (not its value), when parsed as a .if conditional
1497expression, evaluates to true, return as its value the
1498.Ar true_string ,
1499otherwise return the
1500.Ar false_string .
1501Since the variable name is used as the expression, \&:\&? must be the
1502first modifier after the variable name itself - which will, of course,
1503usually contain variable expansions.
1504A common error is trying to use expressions like
1505.Dl ${NUMBERS:M42:?match:no}
1506which actually tests defined(NUMBERS),
1507to determine if any words match "42" you need to use something like:
1508.Dl ${"${NUMBERS:M42}" != \&"\&":?match:no} .
1509.It Cm :\| Ns Ar old_string\| Ns Cm = Ns Ar new_string
1510This is the
1511.At V
1512style variable substitution.
1513It must be the last modifier specified.
1514If
1515.Ar old_string
1516or
1517.Ar new_string
1518do not contain the pattern matching character
1519.Ar %
1520then it is assumed that they are
1521anchored at the end of each word, so only suffixes or entire
1522words may be replaced.
1523Otherwise
1524.Ar %
1525is the substring of
1526.Ar old_string
1527to be replaced in
1528.Ar new_string .
1529If only
1530.Ar old_string
1531contains the pattern matching character
1532.Ar % ,
1533and
1534.Ar old_string
1535matches, then the result is the
1536.Ar new_string .
1537If only the
1538.Ar new_string
1539contains the pattern matching character
1540.Ar % ,
1541then it is not treated specially and it is printed as a literal
1542.Ar %
1543on match.
1544If there is more than one pattern matching character
1545.Ar ( % )
1546in either the
1547.Ar new_string
1548or
1549.Ar old_string ,
1550only the first instance is treated specially (as the pattern character);
1551all subsequent instances are treated as regular characters.
1552.Pp
1553Variable expansion occurs in the normal fashion inside both
1554.Ar old_string
1555and
1556.Ar new_string
1557with the single exception that a backslash is used to prevent the
1558expansion of a dollar sign
1559.Pq Ql \&$ ,
1560not a preceding dollar sign as is usual.
1561.Sm off
1562.It Cm \&:@ Ar temp\| Cm @ Ar string\| Cm @
1563.Sm on
1564This is the loop expansion mechanism from the OSF Development
1565Environment (ODE) make.
1566Unlike
1567.Cm \&.for
1568loops, expansion occurs at the time of reference.
1569Assigns
1570.Ar temp
1571to each word in the variable and evaluates
1572.Ar string .
1573The ODE convention is that
1574.Ar temp
1575should start and end with a period.
1576For example.
1577.Dl ${LINKS:@.LINK.@${LN} ${TARGET} ${.LINK.}@}
1578.Pp
1579However a single character variable is often more readable:
1580.Dl ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@}
1581.It Cm \&:_ Ns Oo Cm = Ns Ar var Oc
1582Saves the current variable value in
1583.Ql $_
1584or the named
1585.Va var
1586for later reference.
1587Example usage:
1588.Bd -literal -offset indent
1589M_cmpv.units = 1 1000 1000000
1590M_cmpv = S,., ,g:_:range:@i@+ $${_:[-$$i]} \&\\
1591\\* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,1:sh
1592
1593.Dv .if ${VERSION:${M_cmpv}} < ${3.1.12:L:${M_cmpv}}
1594
1595.Ed
1596Here
1597.Ql $_
1598is used to save the result of the
1599.Ql :S
1600modifier which is later referenced using the index values from
1601.Ql :range .
1602.It Cm \&:U\| Ns Ar newval
1603If the variable is undefined,
1604.Ar newval
1605is the value.
1606If the variable is defined, the existing value is returned.
1607This is another ODE make feature.
1608It is handy for setting per-target CFLAGS for instance:
1609.Dl ${_${.TARGET:T}_CFLAGS:U${DEF_CFLAGS}}
1610If a value is only required if the variable is undefined, use:
1611.Dl ${VAR:D:Unewval}
1612.It Cm \&:D\| Ns Ar newval
1613If the variable is defined,
1614.Ar newval
1615is the value.
1616.It Cm \&:L
1617The name of the variable is the value.
1618.It Cm \&:P
1619The path of the node which has the same name as the variable
1620is the value.
1621If no such node exists or its path is null, then the
1622name of the variable is used.
1623In order for this modifier to work, the name (node) must at least have
1624appeared on the rhs of a dependency.
1625.Sm off
1626.It Cm \&:\&! Ar cmd\| Cm \&!
1627.Sm on
1628The output of running
1629.Ar cmd
1630is the value.
1631.It Cm \&:sh
1632If the variable is non-empty it is run as a command and the output
1633becomes the new value.
1634.It Cm \&::= Ns Ar str
1635The variable is assigned the value
1636.Ar str
1637after substitution.
1638This modifier and its variations are useful in
1639obscure situations such as wanting to set a variable when shell commands
1640are being parsed.
1641These assignment modifiers always expand to
1642nothing, so if appearing in a rule line by themselves should be
1643preceded with something to keep
1644.Nm
1645happy.
1646.Pp
1647The
1648.Sq Cm \&::
1649helps avoid false matches with the
1650.At V
1651style
1652.Cm \&:=
1653modifier and since substitution always occurs the
1654.Cm \&::=
1655form is vaguely appropriate.
1656.It Cm \&::?= Ns Ar str
1657As for
1658.Cm \&::=
1659but only if the variable does not already have a value.
1660.It Cm \&::+= Ns Ar str
1661Append
1662.Ar str
1663to the variable.
1664.It Cm \&::!= Ns Ar cmd
1665Assign the output of
1666.Ar cmd
1667to the variable.
1668.It Cm \&:\&[ Ns Ar range Ns Cm \&]
1669Selects one or more words from the value,
1670or performs other operations related to the way in which the
1671value is divided into words.
1672.Pp
1673Ordinarily, a value is treated as a sequence of words
1674delimited by white space.
1675Some modifiers suppress this behavior,
1676causing a value to be treated as a single word
1677(possibly containing embedded white space).
1678An empty value, or a value that consists entirely of white-space,
1679is treated as a single word.
1680For the purposes of the
1681.Sq Cm \&:[]
1682modifier, the words are indexed both forwards using positive integers
1683(where index 1 represents the first word),
1684and backwards using negative integers
1685(where index \-1 represents the last word).
1686.Pp
1687The
1688.Ar range
1689is subjected to variable expansion, and the expanded result is
1690then interpreted as follows:
1691.Bl -tag -width index
1692.\" :[n]
1693.It Ar index
1694Selects a single word from the value.
1695.\" :[start..end]
1696.It Ar start Ns Cm \&.. Ns Ar end
1697Selects all words from
1698.Ar start
1699to
1700.Ar end ,
1701inclusive.
1702For example,
1703.Sq Cm \&:[2..-1]
1704selects all words from the second word to the last word.
1705If
1706.Ar start
1707is greater than
1708.Ar end ,
1709then the words are output in reverse order.
1710For example,
1711.Sq Cm \&:[-1..1]
1712selects all the words from last to first.
1713If the list is already ordered, then this effectively reverses
1714the list, but it is more efficient to use
1715.Sq Cm \&:Or
1716instead of
1717.Sq Cm \&:O:[-1..1] .
1718.\" :[*]
1719.It Cm \&*
1720Causes subsequent modifiers to treat the value as a single word
1721(possibly containing embedded white space).
1722Analogous to the effect of
1723\&"$*\&"
1724in Bourne shell.
1725.\" :[0]
1726.It 0
1727Means the same as
1728.Sq Cm \&:[*] .
1729.\" :[*]
1730.It Cm \&@
1731Causes subsequent modifiers to treat the value as a sequence of words
1732delimited by white space.
1733Analogous to the effect of
1734\&"$@\&"
1735in Bourne shell.
1736.\" :[#]
1737.It Cm \&#
1738Returns the number of words in the value.
1739.El \" :[range]
1740.El
1741.Sh INCLUDE STATEMENTS, CONDITIONALS AND FOR LOOPS
1742Makefile inclusion, conditional structures and for loops reminiscent
1743of the C programming language are provided in
1744.Nm .
1745All such structures are identified by a line beginning with a single
1746dot
1747.Pq Ql \&.
1748character.
1749Files are included with either
1750.Cm \&.include \&< Ns Ar file Ns Cm \&>
1751or
1752.Cm \&.include \&\*q Ns Ar file Ns Cm \&\*q .
1753Variables between the angle brackets or double quotes are expanded
1754to form the file name.
1755If angle brackets are used, the included makefile is expected to be in
1756the system makefile directory.
1757If double quotes are used, the including makefile's directory and any
1758directories specified using the
1759.Fl I
1760option are searched before the system
1761makefile directory.
1762For compatibility with other versions of
1763.Nm
1764.Ql include file ...
1765is also accepted.
1766.Pp
1767If the include statement is written as
1768.Cm .-include
1769or as
1770.Cm .sinclude
1771then errors locating and/or opening include files are ignored.
1772.Pp
1773If the include statement is written as
1774.Cm .dinclude
1775not only are errors locating and/or opening include files ignored,
1776but stale dependencies within the included file will be ignored
1777just like
1778.Va .MAKE.DEPENDFILE .
1779.Pp
1780Conditional expressions are also preceded by a single dot as the first
1781character of a line.
1782The possible conditionals are as follows:
1783.Bl -tag -width Ds
1784.It Ic .error Ar message
1785The message is printed along with the name of the makefile and line number,
1786then
1787.Nm
1788will exit immediately.
1789.It Ic .export Ar variable ...
1790Export the specified global variable.
1791If no variable list is provided, all globals are exported
1792except for internal variables (those that start with
1793.Ql \&. ) .
1794This is not affected by the
1795.Fl X
1796flag, so should be used with caution.
1797For compatibility with other
1798.Nm
1799programs
1800.Ql export variable=value
1801is also accepted.
1802.Pp
1803Appending a variable name to
1804.Va .MAKE.EXPORTED
1805is equivalent to exporting a variable.
1806.It Ic .export-env Ar variable ...
1807The same as
1808.Ql .export ,
1809except that the variable is not appended to
1810.Va .MAKE.EXPORTED .
1811This allows exporting a value to the environment which is different from that
1812used by
1813.Nm
1814internally.
1815.It Ic .export-literal Ar variable ...
1816The same as
1817.Ql .export-env ,
1818except that variables in the value are not expanded.
1819.It Ic .info Ar message
1820The message is printed along with the name of the makefile and line number.
1821.It Ic .undef Ar variable ...
1822Un-define the specified global variables.
1823Only global variables can be un-defined.
1824.It Ic .unexport Ar variable ...
1825The opposite of
1826.Ql .export .
1827The specified global
1828.Va variable
1829will be removed from
1830.Va .MAKE.EXPORTED .
1831If no variable list is provided, all globals are unexported,
1832and
1833.Va .MAKE.EXPORTED
1834deleted.
1835.It Ic .unexport-env
1836Unexport all globals previously exported and
1837clear the environment inherited from the parent.
1838This operation will cause a memory leak of the original environment,
1839so should be used sparingly.
1840Testing for
1841.Va .MAKE.LEVEL
1842being 0, would make sense.
1843Also note that any variables which originated in the parent environment
1844should be explicitly preserved if desired.
1845For example:
1846.Bd -literal -offset indent
1847.Li .if ${.MAKE.LEVEL} == 0
1848PATH := ${PATH}
1849.Li .unexport-env
1850.Li .export PATH
1851.Li .endif
1852.Pp
1853.Ed
1854Would result in an environment containing only
1855.Sq Ev PATH ,
1856which is the minimal useful environment.
1857Actually
1858.Sq Ev .MAKE.LEVEL
1859will also be pushed into the new environment.
1860.It Ic .warning Ar message
1861The message prefixed by
1862.Sq Pa warning:
1863is printed along with the name of the makefile and line number.
1864.It Ic \&.if Oo \&! Oc Ns Ar expression Op Ar operator expression ...
1865Test the value of an expression.
1866.It Ic .ifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
1867Test the value of a variable.
1868.It Ic .ifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
1869Test the value of a variable.
1870.It Ic .ifmake Oo \&! Oc Ns Ar target Op Ar operator target ...
1871Test the target being built.
1872.It Ic .ifnmake Oo \&! Ns Oc Ar target Op Ar operator target ...
1873Test the target being built.
1874.It Ic .else
1875Reverse the sense of the last conditional.
1876.It Ic .elif Oo \&! Ns Oc Ar expression Op Ar operator expression ...
1877A combination of
1878.Sq Ic .else
1879followed by
1880.Sq Ic .if .
1881.It Ic .elifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
1882A combination of
1883.Sq Ic .else
1884followed by
1885.Sq Ic .ifdef .
1886.It Ic .elifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
1887A combination of
1888.Sq Ic .else
1889followed by
1890.Sq Ic .ifndef .
1891.It Ic .elifmake Oo \&! Oc Ns Ar target Op Ar operator target ...
1892A combination of
1893.Sq Ic .else
1894followed by
1895.Sq Ic .ifmake .
1896.It Ic .elifnmake Oo \&! Oc Ns Ar target Op Ar operator target ...
1897A combination of
1898.Sq Ic .else
1899followed by
1900.Sq Ic .ifnmake .
1901.It Ic .endif
1902End the body of the conditional.
1903.El
1904.Pp
1905The
1906.Ar operator
1907may be any one of the following:
1908.Bl -tag -width "Cm XX"
1909.It Cm \&|\&|
1910Logical OR.
1911.It Cm \&&&
1912Logical
1913.Tn AND ;
1914of higher precedence than
1915.Dq \&|\&| .
1916.El
1917.Pp
1918As in C,
1919.Nm
1920will only evaluate a conditional as far as is necessary to determine
1921its value.
1922Parentheses may be used to change the order of evaluation.
1923The boolean operator
1924.Sq Ic \&!
1925may be used to logically negate an entire
1926conditional.
1927It is of higher precedence than
1928.Sq Ic \&&& .
1929.Pp
1930The value of
1931.Ar expression
1932may be any of the following:
1933.Bl -tag -width defined
1934.It Ic defined
1935Takes a variable name as an argument and evaluates to true if the variable
1936has been defined.
1937.It Ic make
1938Takes a target name as an argument and evaluates to true if the target
1939was specified as part of
1940.Nm Ns 's
1941command line or was declared the default target (either implicitly or
1942explicitly, see
1943.Va .MAIN )
1944before the line containing the conditional.
1945.It Ic empty
1946Takes a variable, with possible modifiers, and evaluates to true if
1947the expansion of the variable would result in an empty string.
1948.It Ic exists
1949Takes a file name as an argument and evaluates to true if the file exists.
1950The file is searched for on the system search path (see
1951.Va .PATH ) .
1952.It Ic target
1953Takes a target name as an argument and evaluates to true if the target
1954has been defined.
1955.It Ic commands
1956Takes a target name as an argument and evaluates to true if the target
1957has been defined and has commands associated with it.
1958.El
1959.Pp
1960.Ar Expression
1961may also be an arithmetic or string comparison.
1962Variable expansion is
1963performed on both sides of the comparison, after which the numerical
1964values are compared.
1965A value is interpreted as hexadecimal if it is
1966preceded by 0x, otherwise it is decimal; octal numbers are not supported.
1967The standard C relational operators are all supported.
1968If after
1969variable expansion, either the left or right hand side of a
1970.Sq Ic ==
1971or
1972.Sq Ic "!="
1973operator is not a numerical value, then
1974string comparison is performed between the expanded
1975variables.
1976If no relational operator is given, it is assumed that the expanded
1977variable is being compared against 0, or an empty string in the case
1978of a string comparison.
1979.Pp
1980When
1981.Nm
1982is evaluating one of these conditional expressions, and it encounters
1983a (white-space separated) word it doesn't recognize, either the
1984.Dq make
1985or
1986.Dq defined
1987expression is applied to it, depending on the form of the conditional.
1988If the form is
1989.Sq Ic .ifdef ,
1990.Sq Ic .ifndef ,
1991or
1992.Sq Ic .if
1993the
1994.Dq defined
1995expression is applied.
1996Similarly, if the form is
1997.Sq Ic .ifmake
1998or
1999.Sq Ic .ifnmake ,
2000the
2001.Dq make
2002expression is applied.
2003.Pp
2004If the conditional evaluates to true the parsing of the makefile continues
2005as before.
2006If it evaluates to false, the following lines are skipped.
2007In both cases this continues until a
2008.Sq Ic .else
2009or
2010.Sq Ic .endif
2011is found.
2012.Pp
2013For loops are typically used to apply a set of rules to a list of files.
2014The syntax of a for loop is:
2015.Pp
2016.Bl -tag -compact -width Ds
2017.It Ic \&.for Ar variable Oo Ar variable ... Oc Ic in Ar expression
2018.It Aq make-lines
2019.It Ic \&.endfor
2020.El
2021.Pp
2022After the for
2023.Ic expression
2024is evaluated, it is split into words.
2025On each iteration of the loop, one word is taken and assigned to each
2026.Ic variable ,
2027in order, and these
2028.Ic variables
2029are substituted into the
2030.Ic make-lines
2031inside the body of the for loop.
2032The number of words must come out even; that is, if there are three
2033iteration variables, the number of words provided must be a multiple
2034of three.
2035.Sh COMMENTS
2036Comments begin with a hash
2037.Pq Ql \&#
2038character, anywhere but in a shell
2039command line, and continue to the end of an unescaped new line.
2040.Sh SPECIAL SOURCES (ATTRIBUTES)
2041.Bl -tag -width .IGNOREx
2042.It Ic .EXEC
2043Target is never out of date, but always execute commands anyway.
2044.It Ic .IGNORE
2045Ignore any errors from the commands associated with this target, exactly
2046as if they all were preceded by a dash
2047.Pq Ql \- .
2048.\" .It Ic .INVISIBLE
2049.\" XXX
2050.\" .It Ic .JOIN
2051.\" XXX
2052.It Ic .MADE
2053Mark all sources of this target as being up-to-date.
2054.It Ic .MAKE
2055Execute the commands associated with this target even if the
2056.Fl n
2057or
2058.Fl t
2059options were specified.
2060Normally used to mark recursive
2061.Nm Ns s .
2062.It Ic .META
2063Create a meta file for the target, even if it is flagged as
2064.Ic .PHONY ,
2065.Ic .MAKE ,
2066or
2067.Ic .SPECIAL .
2068Usage in conjunction with
2069.Ic .MAKE
2070is the most likely case.
2071In "meta" mode, the target is out-of-date if the meta file is missing.
2072.It Ic .NOMETA
2073Do not create a meta file for the target.
2074Meta files are also not created for
2075.Ic .PHONY ,
2076.Ic .MAKE ,
2077or
2078.Ic .SPECIAL
2079targets.
2080.It Ic .NOMETA_CMP
2081Ignore differences in commands when deciding if target is out of date.
2082This is useful if the command contains a value which always changes.
2083If the number of commands change, though, the target will still be out of date.
2084The same effect applies to any command line that uses the variable
2085.Va .OODATE ,
2086which can be used for that purpose even when not otherwise needed or desired:
2087.Bd -literal -offset indent
2088
2089skip-compare-for-some:
2090	@echo this will be compared
2091	@echo this will not ${.OODATE:M.NOMETA_CMP}
2092	@echo this will also be compared
2093
2094.Ed
2095The
2096.Cm \&:M
2097pattern suppresses any expansion of the unwanted variable.
2098.It Ic .NOPATH
2099Do not search for the target in the directories specified by
2100.Ic .PATH .
2101.It Ic .NOTMAIN
2102Normally
2103.Nm
2104selects the first target it encounters as the default target to be built
2105if no target was specified.
2106This source prevents this target from being selected.
2107.It Ic .OPTIONAL
2108If a target is marked with this attribute and
2109.Nm
2110can't figure out how to create it, it will ignore this fact and assume
2111the file isn't needed or already exists.
2112.It Ic .PHONY
2113The target does not
2114correspond to an actual file; it is always considered to be out of date,
2115and will not be created with the
2116.Fl t
2117option.
2118Suffix-transformation rules are not applied to
2119.Ic .PHONY
2120targets.
2121.It Ic .PRECIOUS
2122When
2123.Nm
2124is interrupted, it normally removes any partially made targets.
2125This source prevents the target from being removed.
2126.It Ic .RECURSIVE
2127Synonym for
2128.Ic .MAKE .
2129.It Ic .SILENT
2130Do not echo any of the commands associated with this target, exactly
2131as if they all were preceded by an at sign
2132.Pq Ql @ .
2133.It Ic .USE
2134Turn the target into
2135.Nm Ns 's
2136version of a macro.
2137When the target is used as a source for another target, the other target
2138acquires the commands, sources, and attributes (except for
2139.Ic .USE )
2140of the
2141source.
2142If the target already has commands, the
2143.Ic .USE
2144target's commands are appended
2145to them.
2146.It Ic .USEBEFORE
2147Exactly like
2148.Ic .USE ,
2149but prepend the
2150.Ic .USEBEFORE
2151target commands to the target.
2152.It Ic .WAIT
2153If
2154.Ic .WAIT
2155appears in a dependency line, the sources that precede it are
2156made before the sources that succeed it in the line.
2157Since the dependents of files are not made until the file itself
2158could be made, this also stops the dependents being built unless they
2159are needed for another branch of the dependency tree.
2160So given:
2161.Bd -literal
2162x: a .WAIT b
2163	echo x
2164a:
2165	echo a
2166b: b1
2167	echo b
2168b1:
2169	echo b1
2170
2171.Ed
2172the output is always
2173.Ql a ,
2174.Ql b1 ,
2175.Ql b ,
2176.Ql x .
2177.br
2178The ordering imposed by
2179.Ic .WAIT
2180is only relevant for parallel makes.
2181.El
2182.Sh SPECIAL TARGETS
2183Special targets may not be included with other targets, i.e. they must be
2184the only target specified.
2185.Bl -tag -width .BEGINx
2186.It Ic .BEGIN
2187Any command lines attached to this target are executed before anything
2188else is done.
2189.It Ic .DEFAULT
2190This is sort of a
2191.Ic .USE
2192rule for any target (that was used only as a
2193source) that
2194.Nm
2195can't figure out any other way to create.
2196Only the shell script is used.
2197The
2198.Ic .IMPSRC
2199variable of a target that inherits
2200.Ic .DEFAULT Ns 's
2201commands is set
2202to the target's own name.
2203.It Ic .DELETE_ON_ERROR
2204If this target is present in the makefile, it globally causes make to
2205delete targets whose commands fail.
2206(By default, only targets whose commands are interrupted during
2207execution are deleted.
2208This is the historical behavior.)
2209This setting can be used to help prevent half-finished or malformed
2210targets from being left around and corrupting future rebuilds.
2211.It Ic .END
2212Any command lines attached to this target are executed after everything
2213else is done.
2214.It Ic .ERROR
2215Any command lines attached to this target are executed when another target fails.
2216The
2217.Ic .ERROR_TARGET
2218variable is set to the target that failed.
2219See also
2220.Ic MAKE_PRINT_VAR_ON_ERROR .
2221.It Ic .IGNORE
2222Mark each of the sources with the
2223.Ic .IGNORE
2224attribute.
2225If no sources are specified, this is the equivalent of specifying the
2226.Fl i
2227option.
2228.It Ic .INTERRUPT
2229If
2230.Nm
2231is interrupted, the commands for this target will be executed.
2232.It Ic .MAIN
2233If no target is specified when
2234.Nm
2235is invoked, this target will be built.
2236.It Ic .MAKEFLAGS
2237This target provides a way to specify flags for
2238.Nm
2239when the makefile is used.
2240The flags are as if typed to the shell, though the
2241.Fl f
2242option will have
2243no effect.
2244.\" XXX: NOT YET!!!!
2245.\" .It Ic .NOTPARALLEL
2246.\" The named targets are executed in non parallel mode.
2247.\" If no targets are
2248.\" specified, then all targets are executed in non parallel mode.
2249.It Ic .NOPATH
2250Apply the
2251.Ic .NOPATH
2252attribute to any specified sources.
2253.It Ic .NOTPARALLEL
2254Disable parallel mode.
2255.It Ic .NO_PARALLEL
2256Synonym for
2257.Ic .NOTPARALLEL ,
2258for compatibility with other pmake variants.
2259.It Ic .OBJDIR
2260The source is a new value for
2261.Sq Va .OBJDIR .
2262If it exists,
2263.Nm
2264will
2265.Xr chdir 2
2266to it and update the value of
2267.Sq Va .OBJDIR .
2268.It Ic .ORDER
2269In parallel mode, the named targets are made in sequence.
2270This ordering does not add targets to the list of targets to be made.
2271.Pp
2272Since the dependents of a target do not get built until the target itself
2273could be built, unless
2274.Ql a
2275is built by another part of the dependency graph,
2276the following is a dependency loop:
2277.Bd -literal
2278\&.ORDER: b a
2279b: a
2280.Ed
2281.Pp
2282.\" XXX: NOT YET!!!!
2283.\" .It Ic .PARALLEL
2284.\" The named targets are executed in parallel mode.
2285.\" If no targets are
2286.\" specified, then all targets are executed in parallel mode.
2287.It Ic .PATH
2288The sources are directories which are to be searched for files not
2289found in the current directory.
2290If no sources are specified, any previously specified directories are
2291deleted.
2292If the source is the special
2293.Ic .DOTLAST
2294target, then the current working
2295directory is searched last.
2296.It Ic .PATH. Ns Va suffix
2297Like
2298.Ic .PATH
2299but applies only to files with a particular suffix.
2300The suffix must have been previously declared with
2301.Ic .SUFFIXES .
2302.It Ic .PHONY
2303Apply the
2304.Ic .PHONY
2305attribute to any specified sources.
2306.It Ic .POSIX
2307If this is the first non-comment line in the main makefile,
2308the variable
2309.Va %POSIX
2310is set to the value
2311.Ql 1003.2
2312and the makefile
2313.Ql <posix.mk>
2314is included if it exists,
2315to provide POSIX-compatible default rules.
2316If
2317.Nm
2318is run with the
2319.Fl r
2320flag, then only
2321.Ql posix.mk
2322will contribute to the default rules.
2323.It Ic .PRECIOUS
2324Apply the
2325.Ic .PRECIOUS
2326attribute to any specified sources.
2327If no sources are specified, the
2328.Ic .PRECIOUS
2329attribute is applied to every
2330target in the file.
2331.It Ic .SHELL
2332Sets the shell that
2333.Nm
2334will use to execute commands.
2335The sources are a set of
2336.Ar field=value
2337pairs.
2338.Bl -tag -width hasErrCtls
2339.It Ar name
2340This is the minimal specification, used to select one of the built-in
2341shell specs;
2342.Ar sh ,
2343.Ar ksh ,
2344and
2345.Ar csh .
2346.It Ar path
2347Specifies the path to the shell.
2348.It Ar hasErrCtl
2349Indicates whether the shell supports exit on error.
2350.It Ar check
2351The command to turn on error checking.
2352.It Ar ignore
2353The command to disable error checking.
2354.It Ar echo
2355The command to turn on echoing of commands executed.
2356.It Ar quiet
2357The command to turn off echoing of commands executed.
2358.It Ar filter
2359The output to filter after issuing the
2360.Ar quiet
2361command.
2362It is typically identical to
2363.Ar quiet .
2364.It Ar errFlag
2365The flag to pass the shell to enable error checking.
2366.It Ar echoFlag
2367The flag to pass the shell to enable command echoing.
2368.It Ar newline
2369The string literal to pass the shell that results in a single newline
2370character when used outside of any quoting characters.
2371.El
2372Example:
2373.Bd -literal
2374\&.SHELL: name=ksh path=/bin/ksh hasErrCtl=true \e
2375	check="set \-e" ignore="set +e" \e
2376	echo="set \-v" quiet="set +v" filter="set +v" \e
2377	echoFlag=v errFlag=e newline="'\en'"
2378.Ed
2379.It Ic .SILENT
2380Apply the
2381.Ic .SILENT
2382attribute to any specified sources.
2383If no sources are specified, the
2384.Ic .SILENT
2385attribute is applied to every
2386command in the file.
2387.It Ic .STALE
2388This target gets run when a dependency file contains stale entries, having
2389.Va .ALLSRC
2390set to the name of that dependency file.
2391.It Ic .SUFFIXES
2392Each source specifies a suffix to
2393.Nm .
2394If no sources are specified, any previously specified suffixes are deleted.
2395It allows the creation of suffix-transformation rules.
2396.Pp
2397Example:
2398.Bd -literal
2399\&.SUFFIXES: .o
2400\&.c.o:
2401	cc \-o ${.TARGET} \-c ${.IMPSRC}
2402.Ed
2403.El
2404.Sh ENVIRONMENT
2405.Nm
2406uses the following environment variables, if they exist:
2407.Ev MACHINE ,
2408.Ev MACHINE_ARCH ,
2409.Ev MAKE ,
2410.Ev MAKEFLAGS ,
2411.Ev MAKEOBJDIR ,
2412.Ev MAKEOBJDIRPREFIX ,
2413.Ev MAKESYSPATH ,
2414.Ev PWD ,
2415and
2416.Ev TMPDIR .
2417.Pp
2418.Ev MAKEOBJDIRPREFIX
2419and
2420.Ev MAKEOBJDIR
2421may only be set in the environment or on the command line to
2422.Nm
2423and not as makefile variables;
2424see the description of
2425.Sq Va .OBJDIR
2426for more details.
2427.Sh FILES
2428.Bl -tag -width /usr/share/mk -compact
2429.It .depend
2430list of dependencies
2431.It Makefile
2432list of dependencies
2433.It makefile
2434list of dependencies
2435.It sys.mk
2436system makefile
2437.It /usr/share/mk
2438system makefile directory
2439.El
2440.Sh COMPATIBILITY
2441The basic make syntax is compatible between different versions of make;
2442however the special variables, variable modifiers and conditionals are not.
2443.Ss Older versions
2444An incomplete list of changes in older versions of
2445.Nm :
2446.Pp
2447The way that .for loop variables are substituted changed after
2448NetBSD 5.0
2449so that they still appear to be variable expansions.
2450In particular this stops them being treated as syntax, and removes some
2451obscure problems using them in .if statements.
2452.Pp
2453The way that parallel makes are scheduled changed in
2454NetBSD 4.0
2455so that .ORDER and .WAIT apply recursively to the dependent nodes.
2456The algorithms used may change again in the future.
2457.Ss Other make dialects
2458Other make dialects (GNU make, SVR4 make, POSIX make, etc.) do not
2459support most of the features of
2460.Nm
2461as described in this manual.
2462Most notably:
2463.Bl -bullet -offset indent
2464.It
2465The
2466.Ic .WAIT
2467and
2468.Ic .ORDER
2469declarations and most functionality pertaining to parallelization.
2470(GNU make supports parallelization but lacks these features needed to
2471control it effectively.)
2472.It
2473Directives, including for loops and conditionals and most of the
2474forms of include files.
2475(GNU make has its own incompatible and less powerful syntax for
2476conditionals.)
2477.It
2478All built-in variables that begin with a dot.
2479.It
2480Most of the special sources and targets that begin with a dot,
2481with the notable exception of
2482.Ic .PHONY ,
2483.Ic .PRECIOUS ,
2484and
2485.Ic .SUFFIXES .
2486.It
2487Variable modifiers, except for the
2488.Dl :old=new
2489string substitution, which does not portably support globbing with
2490.Ql %
2491and historically only works on declared suffixes.
2492.It
2493The
2494.Ic $>
2495variable even in its short form; most makes support this functionality
2496but its name varies.
2497.El
2498.Pp
2499Some features are somewhat more portable, such as assignment with
2500.Ic += ,
2501.Ic ?= ,
2502and
2503.Ic != .
2504The
2505.Ic .PATH
2506functionality is based on an older feature
2507.Ic VPATH
2508found in GNU make and many versions of SVR4 make; however,
2509historically its behavior is too ill-defined (and too buggy) to rely
2510upon.
2511.Pp
2512The
2513.Ic $@
2514and
2515.Ic $<
2516variables are more or less universally portable, as is the
2517.Ic $(MAKE)
2518variable.
2519Basic use of suffix rules (for files only in the current directory,
2520not trying to chain transformations together, etc.) is also reasonably
2521portable.
2522.Sh SEE ALSO
2523.Xr mkdep 1
2524.Sh HISTORY
2525.Nm
2526is derived from NetBSD
2527.Xr make 1 .
2528It uses autoconf to facilitate portability to other platforms.
2529.Pp
2530A
2531make
2532command appeared in
2533.At v7 .
2534This
2535make
2536implementation is based on Adam De Boor's pmake program which was written
2537for Sprite at Berkeley.
2538It was designed to be a parallel distributed make running jobs on different
2539machines using a daemon called
2540.Dq customs .
2541.Pp
2542Historically the target/dependency
2543.Dq FRC
2544has been used to FoRCe rebuilding (since the target/dependency
2545does not exist... unless someone creates an
2546.Dq FRC
2547file).
2548.Sh BUGS
2549The
2550make
2551syntax is difficult to parse without actually acting on the data.
2552For instance, finding the end of a variable's use should involve scanning
2553each of the modifiers, using the correct terminator for each field.
2554In many places
2555make
2556just counts {} and () in order to find the end of a variable expansion.
2557.Pp
2558There is no way of escaping a space character in a filename.
2559