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