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