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