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