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