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