]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/make/make.1
This commit was generated by cvs2svn to compensate for changes in r113778,
[FreeBSD/FreeBSD.git] / usr.bin / make / make.1
1 .\" Copyright (c) 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)make.1      8.8 (Berkeley) 6/13/95
33 .\" $FreeBSD$
34 .\"
35 .Dd June 13, 1995
36 .Dt MAKE 1
37 .Os
38 .Sh NAME
39 .Nm make
40 .Nd maintain program dependencies
41 .Sh SYNOPSIS
42 .Nm
43 .Op Fl BPSXeiknqrstv
44 .Op Fl C Ar directory
45 .Op Fl D Ar variable
46 .Op Fl d Ar flags
47 .Op Fl E Ar variable
48 .Op Fl f Ar makefile
49 .Op Fl I Ar directory
50 .Bk -words
51 .Op Fl j Ar max_jobs
52 .Op Fl m Ar directory
53 .Ek
54 .Op Fl V Ar variable
55 .Op Ar variable Ns No = Ns Ar value
56 .Op Ar target ...
57 .Sh DESCRIPTION
58 The
59 .Nm
60 utility is a program designed to simplify the maintenance of other programs.
61 Its input is a list of specifications
62 describing dependency relationships between the generation of
63 files and programs.
64 The first of
65 .Pa BSDmakefile ,
66 .Pa makefile
67 and
68 .Pa Makefile
69 that can be found in either the current directory or a special object directory
70 (see
71 .Va .OBJDIR )
72 will be read for this list of specifications.
73 If the file
74 .Pa .depend
75 can be found, it is also read (see
76 .Xr mkdep 1 ) .
77 .Pp
78 This manual page is intended as a reference document only.
79 For a more thorough introduction to
80 .Nm
81 and makefiles, please refer to
82 .%T "Make \- A Tutorial" .
83 .Pp
84 The options are as follows:
85 .Bl -tag -width Ds
86 .It Fl B
87 Try to be backwards compatible by executing a single shell per command and
88 by executing the commands to make the sources of a dependency line in sequence.
89 This is turned on by default unless
90 .Fl j
91 is used.
92 .It Fl C Ar directory
93 Change to
94 .Ar directory
95 while running.
96 .It Fl D Ar variable
97 Define
98 .Ar variable
99 to be 1, in the global context.
100 .It Fl d Ar flags
101 Turn on debugging, and specify which portions of
102 .Nm
103 are to print debugging information.
104 Argument
105 .Ar flags
106 is one or more of the following:
107 .Bl -tag -width Ds
108 .It Ar A
109 Print all possible debugging information;
110 equivalent to specifying all of the debugging flags.
111 .It Ar a
112 Print debugging information about archive searching and caching.
113 .It Ar c
114 Print debugging information about conditional evaluation.
115 .It Ar d
116 Print debugging information about directory searching and caching.
117 .It Ar f
118 Print debugging information about the execution of for loops.
119 .It Ar "g1"
120 Print the input graph before making anything.
121 .It Ar "g2"
122 Print the input graph after making everything, or before exiting
123 on error.
124 .It Ar j
125 Print debugging information about running multiple shells.
126 .It Ar l
127 Print commands in Makefiles regardless of whether or not they are prefixed
128 by @ or other "quiet" flags.
129 Also known as "loud" behavior.
130 .It Ar m
131 Print debugging information about making targets, including modification
132 dates.
133 .It Ar s
134 Print debugging information about suffix-transformation rules.
135 .It Ar t
136 Print debugging information about target list maintenance.
137 .It Ar v
138 Print debugging information about variable assignment.
139 .El
140 .It Fl E Ar variable
141 Specify a variable whose environment value (if any) will override
142 macro assignments within makefiles.
143 .It Fl e
144 Specify that environment values override macro assignments within
145 makefiles for all variables.
146 .It Fl f Ar makefile
147 Specify a makefile to read instead of the default
148 .Pa makefile
149 and
150 .Pa Makefile .
151 If
152 .Ar makefile
153 is
154 .Sq Fl ,
155 standard input is read.
156 Multiple makefiles may be specified, and are read in the order specified.
157 .It Fl I Ar directory
158 Specify a directory in which to search for makefiles and included makefiles.
159 The system makefile directory (or directories, see the
160 .Fl m
161 option) is automatically included as part of this list.
162 .It Fl i
163 Ignore non-zero exit of shell commands in the makefile.
164 Equivalent to specifying
165 .Sq Ic \-
166 before each command line in the makefile.
167 .It Fl j Ar max_jobs
168 Specify the maximum number of jobs that
169 .Nm
170 may have running at any one time.
171 Turns compatibility mode off, unless the
172 .Ar B
173 flag is also specified.
174 .It Fl k
175 Continue processing after errors are encountered, but only on those targets
176 that do not depend on the target whose creation caused the error.
177 .It Fl m Ar directory
178 Specify a directory in which to search for
179 .Pa sys.mk
180 and makefiles included via the <...> style.
181 Multiple directories can be added to form a search path.
182 This path will override the default system include path:
183 .Pa /usr/share/mk .
184 Furthermore, the system include path will be appended to the search path used
185 for "..."-style inclusions (see the
186 .Fl I
187 option).
188 .It Fl n
189 Display the commands that would have been executed, but do not actually
190 execute them.
191 .It Fl P
192 Collate the output of a given job and display it only when the job finishes,
193 instead of mixing the output of parallel jobs together.
194 This option has no effect unless
195 .Fl j
196 is used too.
197 .It Fl q
198 Do not execute any commands, but exit 0 if the specified targets are
199 up-to-date and 1, otherwise.
200 .It Fl r
201 Do not use the built-in rules specified in the system makefile.
202 .It Fl S
203 Stop processing when an error is encountered.
204 Default behaviour.
205 This is needed to negate the
206 .Fl k
207 option during recursive builds.
208 .It Fl s
209 Do not echo any commands as they are executed.
210 Equivalent to specifying
211 .Sq Ic @
212 before each command line in the makefile.
213 .It Fl t
214 Rather than re-building a target as specified in the makefile, create it
215 or update its modification time to make it appear up-to-date.
216 .It Fl V Ar variable
217 Print
218 .Nm Ns 's
219 idea of the value of
220 .Ar variable ,
221 in the global context.
222 Do not build any targets.
223 Multiple instances of this option may be specified;
224 the variables will be printed one per line,
225 with a blank line for each null or undefined variable.
226 .It Fl v
227 Be extra verbose.
228 For multi-job makes, this will cause file banners to be generated.
229 .It Fl X
230 When using the
231 .Fl V
232 option to print the values of variables,
233 do not recursively expand the values.
234 .It Ar variable Ns No = Ns Ar value
235 Set the value of the variable
236 .Ar variable
237 to
238 .Ar value .
239 .El
240 .Pp
241 There are seven different types of lines in a makefile: file dependency
242 specifications, shell commands, variable assignments, include statements,
243 conditional directives, for loops, and comments.
244 .Pp
245 In general, lines may be continued from one line to the next by ending
246 them with a backslash
247 .Pq Ql \e .
248 The trailing newline character and initial whitespace on the following
249 line are compressed into a single space.
250 .Sh FILE DEPENDENCY SPECIFICATIONS
251 Dependency lines consist of one or more targets, an operator, and zero
252 or more sources.
253 This creates a relationship where the targets
254 .Dq depend
255 on the sources
256 and are usually created from them.
257 The exact relationship between the target and the source is determined
258 by the operator that separates them.
259 The three operators are as follows:
260 .Bl -tag -width flag
261 .It Ic \&:
262 A target is considered out-of-date if its modification time is less than
263 those of any of its sources.
264 Sources for a target accumulate over dependency lines when this operator
265 is used.
266 The target is removed if
267 .Nm
268 is interrupted.
269 .It Ic \&!
270 Targets are always re-created, but not until all sources have been
271 examined and re-created as necessary.
272 Sources for a target accumulate over dependency lines when this operator
273 is used.
274 The target is removed if
275 .Nm
276 is interrupted.
277 .It Ic \&::
278 If no sources are specified, the target is always re-created.
279 Otherwise, a target is considered out-of-date if any of its sources has
280 been modified more recently than the target.
281 Sources for a target do not accumulate over dependency lines when this
282 operator is used.
283 The target will not be removed if
284 .Nm
285 is interrupted.
286 .El
287 .Pp
288 Targets and sources may contain the shell wildcard expressions
289 .Ql \&? ,
290 .Ql * ,
291 .Ql []
292 and
293 .Ql {} .
294 The expressions
295 .Ql \&? ,
296 .Ql *
297 and
298 .Ql []
299 may only be used as part of the final
300 component of the target or source, and must be used to describe existing
301 files.
302 The expression
303 .Ql {}
304 need not necessarily be used to describe existing files.
305 Expansion is in directory order, not alphabetically as done in the shell.
306 .Sh SHELL COMMANDS
307 Each target may have associated with it a series of shell commands, normally
308 used to create the target.
309 Each of the commands in this script
310 .Em must
311 be preceded by a tab.
312 While any target may appear on a dependency line, only one of these
313 dependencies may be followed by a creation script, unless the
314 .Sq Ic ::
315 operator is used.
316 .Pp
317 If the first or first two characters of the command line are
318 .Sq Ic @
319 and/or
320 .Sq Ic \- ,
321 the command is treated specially.
322 A
323 .Sq Ic @
324 causes the command not to be echoed before it is executed.
325 A
326 .Sq Ic \-
327 causes any non-zero exit status of the command line to be ignored.
328 .Sh VARIABLE ASSIGNMENTS
329 Variables in
330 .Nm
331 are much like variables in the shell, and, by tradition,
332 consist of all upper-case letters.
333 The five operators that can be used to assign values to variables are as
334 follows:
335 .Bl -tag -width Ds
336 .It Ic \&=
337 Assign the value to the variable.
338 Any previous value is overridden.
339 .It Ic \&+=
340 Append the value to the current value of the variable.
341 .It Ic \&?=
342 Assign the value to the variable if it is not already defined.
343 .It Ic \&:=
344 Assign with expansion, i.e. expand the value before assigning it
345 to the variable.
346 Normally, expansion is not done until the variable is referenced.
347 .It Ic \&!=
348 Expand the value and pass it to the shell for execution and assign
349 the result to the variable.
350 Any newlines in the result are replaced with spaces.
351 .El
352 .Pp
353 Any whitespace before the assigned
354 .Ar value
355 is removed; if the value is being appended, a single space is inserted
356 between the previous contents of the variable and the appended value.
357 .Pp
358 Variables are expanded by surrounding the variable name with either
359 curly braces
360 .Pq Ql {}
361 or parentheses
362 .Pq Ql ()
363 and preceding it with
364 a dollar sign
365 .Pq Ql \&$ .
366 If the variable name contains only a single letter, the surrounding
367 braces or parentheses are not required.
368 This shorter form is not recommended.
369 .Pp
370 Variable substitution occurs at two distinct times, depending on where
371 the variable is being used.
372 Variables in dependency lines are expanded as the line is read.
373 Variables in shell commands are expanded when the shell command is
374 executed.
375 .Pp
376 The four different classes of variables (in order of increasing precedence)
377 are:
378 .Bl -tag -width Ds
379 .It Environment variables
380 Variables defined as part of
381 .Nm Ns 's
382 environment.
383 .It Global variables
384 Variables defined in the makefile or in included makefiles.
385 .It Command line variables
386 Variables defined as part of the command line.
387 .It Local variables
388 Variables that are defined specific to a certain target.
389 The seven local variables are as follows:
390 .Bl -tag -width ".ARCHIVE"
391 .It Va .ALLSRC
392 The list of all sources for this target; also known as
393 .Sq Va \&> .
394 .It Va .ARCHIVE
395 The name of the archive file; also known as
396 .Sq Va \&! .
397 .It Va .IMPSRC
398 The name/path of the source from which the target is to be transformed
399 (the
400 .Dq implied
401 source); also known as
402 .Sq Va \&< .
403 .It Va .MEMBER
404 The name of the archive member; also known as
405 .Sq Va \&% .
406 .It Va .OODATE
407 The list of sources for this target that were deemed out-of-date; also
408 known as
409 .Sq Va \&? .
410 .It Va .PREFIX
411 The file prefix of the file, containing only the file portion, no suffix
412 or preceding directory components; also known as
413 .Sq Va * .
414 .It Va .TARGET
415 The name of the target; also known as
416 .Sq Va @ .
417 .El
418 .Pp
419 The shorter forms
420 .Sq Va @ ,
421 .Sq Va \&! ,
422 .Sq Va \&< ,
423 .Sq Va \&% ,
424 .Sq Va \&? ,
425 .Sq Va \&> ,
426 and
427 .Sq Va *
428 are permitted for backward
429 compatibility and are not recommended.
430 The six variables
431 .Sq Va @F ,
432 .Sq Va @D ,
433 .Sq Va <F ,
434 .Sq Va <D ,
435 .Sq Va *F ,
436 and
437 .Sq Va *D
438 are
439 permitted for compatibility with
440 .At V
441 makefiles and are not recommended.
442 .Pp
443 Four of the local variables may be used in sources on dependency lines
444 because they expand to the proper value for each target on the line.
445 These variables are
446 .Va .TARGET ,
447 .Va .PREFIX ,
448 .Va .ARCHIVE ,
449 and
450 .Va .MEMBER .
451 .El
452 .Pp
453 In addition,
454 .Nm
455 sets or knows about the following internal variables or environment
456 variables:
457 .Bl -tag -width MAKEFLAGS
458 .It Va \&$
459 A single dollar sign
460 .Ql \&$ ,
461 i.e.\&
462 .Ql \&$$
463 expands to a single dollar
464 sign.
465 .It Va MAKE
466 The name that
467 .Nm
468 was executed with
469 .Pq Va argv Ns Op 0 .
470 .It Va .CURDIR
471 A path to the directory where
472 .Nm
473 was executed.
474 The
475 .Nm
476 utility sets
477 .Va .CURDIR
478 to the canonical path given by
479 .Xr getcwd 3 .
480 .It Va .OBJDIR
481 A path to the directory where the targets are built.
482 At startup,
483 .Nm
484 searches for an alternate directory to place target files.
485 It will attempt to change into this special directory
486 and will search this directory for makefiles
487 not found in the current directory.
488 The following directories are tried in order:
489 .Pp
490 .Bl -enum -compact
491 .It
492 ${MAKEOBJDIRPREFIX}/`pwd`
493 .It
494 ${MAKEOBJDIR}
495 .It
496 obj.${MACHINE}
497 .It
498 obj
499 .It
500 /usr/obj/`pwd`
501 .El
502 .Pp
503 The first directory that
504 .Nm
505 successfully changes into is used.
506 If either
507 .Ev MAKEOBJDIRPREFIX
508 or
509 .Ev MAKEOBJDIR
510 is set in the environment but
511 .Nm
512 is unable to change into the corresponding directory,
513 then the current directory is used
514 without checking the remainder of the list.
515 If they are undefined and
516 .Nm
517 is unable to change into any of the remaining three directories,
518 then the current directory is used.
519 .Pp
520 The
521 .Nm
522 utility sets
523 .Va .OBJDIR
524 to the canonical path given by
525 .Xr getcwd 3 .
526 .It Va .MAKEFLAGS
527 The environment variable
528 .Ev MAKEFLAGS
529 may contain anything that
530 may be specified on
531 .Nm Ns 's
532 command line.
533 Its contents are stored in
534 .Nm Ns 's
535 .Va .MAKEFLAGS
536 variable.
537 Anything specified on
538 .Nm Ns 's
539 command line is appended to the
540 .Va .MAKEFLAGS
541 variable which is then
542 entered into the environment as
543 .Ev MAKEFLAGS
544 for all programs which
545 .Nm
546 executes.
547 .It Va MFLAGS
548 A synonym for
549 .Va .MAKEFLAGS
550 provided for backward compatibility.
551 .It Va .TARGETS
552 List of targets
553 .Nm
554 is currently building.
555 .It Va .INCLUDES
556 See
557 .Ic .INCLUDES
558 special target.
559 .It Va .LIBS
560 See
561 .Ic .LIBS
562 special target.
563 .It Va MACHINE
564 Name of the machine architecture
565 .Nm
566 is running on, obtained from the
567 .Ev MACHINE
568 environment variable, or through
569 .Xr uname 3
570 if not defined.
571 .It Va MACHINE_ARCH
572 Name of the machine architecture
573 .Nm
574 was compiled for, defined at compilation time.
575 .It Va VPATH
576 Makefiles may assign a colon-delimited list of directories to
577 .Va VPATH .
578 These directories will be searched for source files by
579 .Nm
580 after it has finished parsing all input makefiles.
581 .El
582 .Pp
583 Variable expansion may be modified to select or modify each word of the
584 variable (where a
585 .Dq word
586 is whitespace-delimited sequence of characters).
587 The general format of a variable expansion is as follows:
588 .Pp
589 .Dl {variable[:modifier[:...]]}
590 .Pp
591 Each modifier begins with a colon and one of the following
592 special characters.
593 The colon may be escaped with a backslash
594 .Pq Ql \e .
595 .Bl -tag -width Cm
596 .Sm off
597 .It Cm C No \&/ Ar pattern Xo
598 .No \&/ Ar replacement
599 .No \&/ Op Cm 1g
600 .Xc
601 .Sm on
602 The
603 .Cm C
604 modifier is just like the
605 .Cm S
606 modifier except that the old and new strings, instead of being
607 simple strings, are an extended regular expression (see
608 .Xr re_format 7 )
609 and an
610 .Xr ed 1 Ns \-style
611 replacement string.
612 Normally, the first occurrence of the pattern in
613 each word of the value is changed.
614 The
615 .Ql 1
616 modifier causes the substitution to apply to at most one word; the
617 .Ql g
618 modifier causes the substitution to apply to as many instances of the
619 search pattern as occur in the word or words it is found in.
620 Note that
621 .Ql 1
622 and
623 .Ql g
624 are orthogonal; the former specifies whether multiple words are
625 potentially affected, the latter whether multiple substitutions can
626 potentially occur within each affected word.
627 .It Cm E
628 Replaces each word in the variable with its suffix.
629 .It Cm H
630 Replaces each word in the variable with everything but the last component.
631 .It Cm L
632 Converts variable to lower-case letters.
633 .It Cm M Ns Ar pattern
634 Select only those words that match the rest of the modifier.
635 The standard shell wildcard characters
636 .Pf ( Ql * ,
637 .Ql \&? ,
638 and
639 .Ql [] )
640 may
641 be used.
642 The wildcard characters may be escaped with a backslash
643 .Pq Ql \e .
644 .It Cm N Ns Ar pattern
645 This is identical to
646 .Cm M ,
647 but selects all words which do not match
648 the rest of the modifier.
649 .It Cm Q
650 Quotes every shell meta-character in the variable, so that it can be passed
651 safely through recursive invocations of
652 .Nm .
653 .It Cm R
654 Replaces each word in the variable with everything but its suffix.
655 .Sm off
656 .It Cm S No \&/ Ar old_string Xo
657 .No \&/ Ar new_string
658 .No \&/ Op Cm g
659 .Xc
660 .Sm on
661 Modify the first occurrence of
662 .Ar old_string
663 in each word of the variable's value, replacing it with
664 .Ar new_string .
665 If a
666 .Ql g
667 is appended to the last slash of the pattern, all occurrences
668 in each word are replaced.
669 If
670 .Ar old_string
671 begins with a caret
672 .Pq Ql ^ ,
673 .Ar old_string
674 is anchored at the beginning of each word.
675 If
676 .Ar old_string
677 ends with a dollar sign
678 .Pq Ql \&$ ,
679 it is anchored at the end of each word.
680 Inside
681 .Ar new_string ,
682 an ampersand
683 .Pq Ql &
684 is replaced by
685 .Ar old_string .
686 Any character may be used as a delimiter for the parts of the modifier
687 string.
688 The anchoring, ampersand, and delimiter characters may be escaped with a
689 backslash
690 .Pq Ql \e .
691 .Pp
692 Variable expansion occurs in the normal fashion inside both
693 .Ar old_string
694 and
695 .Ar new_string
696 with the single exception that a backslash is used to prevent the expansion
697 of a dollar sign
698 .Pq Ql \&$ ,
699 not a preceding dollar sign as is usual.
700 .It Ar old_string=new_string
701 This is the
702 .At V
703 style variable substitution.
704 It must be the last modifier specified.
705 If
706 .Ar old_string
707 or
708 .Ar new_string
709 do not contain the pattern matching character
710 .Ar %
711 then it is assumed that they are
712 anchored at the end of each word, so only suffixes or entire
713 words may be replaced.
714 Otherwise
715 .Ar %
716 is the substring of
717 .Ar old_string
718 to be replaced in
719 .Ar new_string
720 .It Cm T
721 Replaces each word in the variable with its last component.
722 .It Cm U
723 Converts variable to upper-case letters.
724 .El
725 .Sh DIRECTIVES, CONDITIONALS, AND FOR LOOPS
726 Directives, conditionals, and for loops reminiscent
727 of the C programming language are provided in
728 .Nm .
729 All such structures are identified by a line beginning with a single
730 dot
731 .Pq Ql \&.
732 character.
733 The following directives are supported:
734 .Bl -tag -width Ds
735 .It Ic \&.include Ar <file>
736 .It Ic \&.include Ar \*qfile\*q
737 Include the specified makefile.
738 Variables between the angle brackets
739 or double quotes are expanded to form the file name.
740 If angle brackets
741 are used, the included makefile is expected to be in the system
742 makefile directory.
743 If double quotes are used, the including
744 makefile's directory and any directories specified using the
745 .Fl I
746 option are searched before the system
747 makefile directory.
748 .It Ic \&.undef Ar variable
749 Un-define the specified global variable.
750 Only global variables may be un-defined.
751 .It Ic \&.error Ar message
752 Terminate processing of the makefile immediately.
753 The filename of the
754 makefile, the line on which the error was encountered and the specified
755 message are printed to standard output and
756 .Nm
757 terminates with exit code 1.
758 Variables in the message are expanded.
759 .El
760 .Pp
761 Conditionals are used to determine which parts of the Makefile
762 to process.
763 They are used similarly to the conditionals supported
764 by the C pre-processor.
765 The following conditionals are supported:
766 .Bl -tag -width Ds
767 .It Xo
768 .Ic \&.if
769 .Oo \&! Oc Ns Ar expression
770 .Op Ar operator expression ...
771 .Xc
772 Test the value of an expression.
773 .It Xo
774 .Ic .ifdef
775 .Oo \&! Oc Ns Ar variable
776 .Op Ar operator variable ...
777 .Xc
778 Test the value of a variable.
779 .It Xo
780 .Ic .ifndef
781 .Oo \&! Oc Ns Ar variable
782 .Op Ar operator variable ...
783 .Xc
784 Test the value of a variable.
785 .It Xo
786 .Ic .ifmake
787 .Oo \&! Oc Ns Ar target
788 .Op Ar operator target ...
789 .Xc
790 Test the target being built.
791 .It Xo
792 .Ic .ifnmake
793 .Oo \&! Oc Ns Ar target
794 .Op Ar operator target ...
795 .Xc
796 Test the target being built.
797 .It Ic .else
798 Reverse the sense of the last conditional.
799 .It Xo
800 .Ic .elif
801 .Oo \&! Oc Ns Ar expression
802 .Op Ar operator expression ...
803 .Xc
804 A combination of
805 .Ic .else
806 followed by
807 .Ic .if .
808 .It Xo
809 .Ic .elifdef
810 .Oo \&! Oc Ns Ar variable
811 .Op Ar operator variable ...
812 .Xc
813 A combination of
814 .Ic .else
815 followed by
816 .Ic .ifdef .
817 .It Xo
818 .Ic .elifndef
819 .Oo \&! Oc Ns Ar variable
820 .Op Ar operator variable ...
821 .Xc
822 A combination of
823 .Ic .else
824 followed by
825 .Ic .ifndef .
826 .It Xo
827 .Ic .elifmake
828 .Oo \&! Oc Ns Ar target
829 .Op Ar operator target ...
830 .Xc
831 A combination of
832 .Ic .else
833 followed by
834 .Ic .ifmake .
835 .It Xo
836 .Ic .elifnmake
837 .Oo \&! Oc Ns Ar target
838 .Op Ar operator target ...
839 .Xc
840 A combination of
841 .Ic .else
842 followed by
843 .Ic .ifnmake .
844 .It Ic .endif
845 End the body of the conditional.
846 .El
847 .Pp
848 The
849 .Ar operator
850 may be any one of the following:
851 .Bl -tag -width "Cm XX"
852 .It Cm \&|\&|
853 logical
854 .Tn OR
855 .It Cm &&
856 Logical
857 .Tn AND ;
858 of higher precedence than
859 .Sq Ic || .
860 .El
861 .Pp
862 As in C,
863 .Nm
864 will only evaluate a conditional as far as is necessary to determine
865 its value.
866 Parentheses may be used to change the order of evaluation.
867 The boolean operator
868 .Sq Ic !\&
869 may be used to logically negate an entire
870 conditional.
871 It is of higher precedence than
872 .Sq Ic && .
873 .Pp
874 The value of
875 .Ar expression
876 may be any of the following:
877 .Bl -tag -width Ic
878 .It Ic defined
879 Takes a variable name as an argument and evaluates to true if the variable
880 has been defined.
881 .It Ic make
882 Takes a target name as an argument and evaluates to true if the target
883 was specified as part of
884 .Nm Ns 's
885 command line or was declared the default target (either implicitly or
886 explicitly, see
887 .Va .MAIN )
888 before the line containing the conditional.
889 .It Ic empty
890 Takes a variable, with possible modifiers, and evaluates to true if
891 the expansion of the variable would result in an empty string.
892 .It Ic exists
893 Takes a file name as an argument and evaluates to true if the file exists.
894 The file is searched for on the system search path (see
895 .Va .PATH ) .
896 .It Ic target
897 Takes a target name as an argument and evaluates to true if the target
898 has been defined.
899 .El
900 .Pp
901 An
902 .Ar expression
903 may also be an arithmetic or string comparison, with the left-hand side
904 being a variable expansion.
905 Variable expansion is
906 performed on both sides of the comparison, after which the integral
907 values are compared.
908 A value is interpreted as hexadecimal if it is
909 preceded by 0x, otherwise it is decimal; octal numbers are not supported.
910 The standard C relational operators are all supported.
911 If after
912 variable expansion, either the left or right hand side of a
913 .Sq Ic ==
914 or
915 .Sq Ic !=
916 operator is not an integral value, then
917 string comparison is performed between the expanded
918 variables.
919 If no relational operator is given, it is assumed that the expanded
920 variable is being compared against 0.
921 .Pp
922 When
923 .Nm
924 is evaluating one of these conditional expressions, and it encounters
925 a word it doesn't recognize, either the
926 .Dq make
927 or
928 .Dq defined
929 expression is applied to it, depending on the form of the conditional.
930 If the form is
931 .Ic .if ,
932 .Ic .ifdef
933 or
934 .Ic .ifndef ,
935 the
936 .Dq defined
937 expression is applied.
938 Similarly, if the form is
939 .Ic .ifmake
940 or
941 .Ic .ifnmake ,
942 the
943 .Dq make
944 expression is applied.
945 .Pp
946 If the conditional evaluates to true the parsing of the makefile continues
947 as before.
948 If it evaluates to false, the following lines are skipped.
949 In both cases this continues until a
950 .Ic .else
951 or
952 .Ic .endif
953 is found.
954 .Pp
955 For loops are typically used to apply a set of rules to a list of files.
956 The syntax of a for loop is:
957 .Pp
958 .Bl -tag -width indent -compact
959 .It Ic .for Ar variable Ic in Ar expression
960 .It <make-rules>
961 .It Ic \&.endfor
962 .El
963 .Pp
964 After the for
965 .Ar expression
966 is evaluated, it is split into words.
967 The
968 iteration
969 .Ar variable
970 is successively set to each word, and substituted in the
971 .Ic make-rules
972 inside the body of the for loop.
973 .Sh COMMENTS
974 Comments begin with a hash
975 .Pq Ql \&#
976 character, anywhere but in a shell
977 command line, and continue to the end of the line.
978 .Sh SPECIAL SOURCES
979 .Bl -tag -width Ic
980 .It Ic .IGNORE
981 Ignore any errors from the commands associated with this target, exactly
982 as if they all were preceded by a dash
983 .Pq Ql \- .
984 .It Ic .MAKE
985 Execute the commands associated with this target even if the
986 .Fl n
987 or
988 .Fl t
989 options were specified.
990 Normally used to mark recursive
991 .Nm Ns 's .
992 .It Ic .NOTMAIN
993 Normally
994 .Nm
995 selects the first target it encounters as the default target to be built
996 if no target was specified.
997 This source prevents this target from being selected.
998 .It Ic .OPTIONAL
999 If a target is marked with this attribute and
1000 .Nm
1001 can't figure out how to create it, it will ignore this fact and assume
1002 the file isn't needed or already exists.
1003 .It Ic .PRECIOUS
1004 When
1005 .Nm
1006 is interrupted, it removes any partially made targets.
1007 This source prevents the target from being removed.
1008 .It Ic .SILENT
1009 Do not echo any of the commands associated with this target, exactly
1010 as if they all were preceded by an at sign
1011 .Pq Ql @ .
1012 .It Ic .USE
1013 Turn the target into
1014 .Nm Ns 's
1015 version of a macro.
1016 When the target is used as a source for another target, the other target
1017 acquires the commands, sources, and attributes (except for
1018 .Ic .USE )
1019 of the
1020 source.
1021 If the target already has commands, the
1022 .Ic .USE
1023 target's commands are appended
1024 to them.
1025 .It Ic .WAIT
1026 If special
1027 .Ic .WAIT
1028 source is appears in a dependency line, the sources that precede it are
1029 made before the sources that succeed it in the line.
1030 Loops are not being
1031 detected and targets that form loops will be silently ignored.
1032 .El
1033 .Sh "SPECIAL TARGETS"
1034 Special targets may not be included with other targets, i.e. they must be
1035 the only target specified.
1036 .Bl -tag -width Ic
1037 .It Ic .BEGIN
1038 Any command lines attached to this target are executed before anything
1039 else is done.
1040 .It Ic .DEFAULT
1041 This is sort of a
1042 .Ic .USE
1043 rule for any target (that was used only as a
1044 source) that
1045 .Nm
1046 can't figure out any other way to create.
1047 Only the shell script is used.
1048 The
1049 .Ic .IMPSRC
1050 variable of a target that inherits
1051 .Ic .DEFAULT Ns 's
1052 commands is set
1053 to the target's own name.
1054 .It Ic .END
1055 Any command lines attached to this target are executed after everything
1056 else is done.
1057 .It Ic .IGNORE
1058 Mark each of the sources with the
1059 .Ic .IGNORE
1060 attribute.
1061 If no sources are specified, this is the equivalent of specifying the
1062 .Fl i
1063 option.
1064 .It Ic .INCLUDES
1065 A list of suffixes that indicate files that can be included in a source
1066 file.
1067 The suffix must have already been declared with
1068 .Ic .SUFFIXES ;
1069 any suffix so declared will have the directories on its search path (see
1070 .Ic .PATH )
1071 placed in the
1072 .Va .INCLUDES
1073 special variable, each preceded by a
1074 .Fl I
1075 flag.
1076 .It Ic .INTERRUPT
1077 If
1078 .Nm
1079 is interrupted, the commands for this target will be executed.
1080 .It Ic .LIBS
1081 This does for libraries what
1082 .Ic .INCLUDES
1083 does for include files, except that the flag used is
1084 .Fl L .
1085 .It Ic .MAIN
1086 If no target is specified when
1087 .Nm
1088 is invoked, this target will be built.
1089 This is always set, either
1090 explicitly, or implicitly when
1091 .Nm
1092 selects the default target, to give the user a way to refer to the default
1093 target on the command line.
1094 .It Ic .MAKEFLAGS
1095 This target provides a way to specify flags for
1096 .Nm
1097 when the makefile is used.
1098 The flags are as if typed to the shell, though the
1099 .Fl f
1100 option will have
1101 no effect.
1102 .\" XXX: NOT YET!!!!
1103 .\" .It Ic .NOTPARALLEL
1104 .\" The named targets are executed in non parallel mode. If no targets are
1105 .\" specified, then all targets are executed in non parallel mode.
1106 .It Ic .NOTPARALLEL
1107 Disable parallel mode.
1108 .It Ic .NO_PARALLEL
1109 Same as above, for compatibility with other
1110 .Nm pmake
1111 variants.
1112 .It Ic .ORDER
1113 The named targets are made in sequence.
1114 .\" XXX: NOT YET!!!!
1115 .\" .It Ic .PARALLEL
1116 .\" The named targets are executed in parallel mode. If no targets are
1117 .\" specified, then all targets are executed in parallel mode.
1118 .It Ic .PATH
1119 The sources are directories which are to be searched for files not
1120 found in the current directory.
1121 If no sources are specified, any previously specified directories are
1122 deleted.
1123 Where possible, use of
1124 .Ic .PATH
1125 is preferred over use of the
1126 .Va VPATH
1127 variable.
1128 .It Ic .PATH\fIsuffix\fR
1129 The sources are directories which are to be searched for suffixed files
1130 not found in the current directory.
1131 The
1132 .Nm
1133 utility
1134 first searches the suffixed search path, before reverting to the default
1135 path if the file is not found there.
1136 This form is required for
1137 .Ic .LIBS
1138 and
1139 .Ic .INCLUDES
1140 to work.
1141 .It Ic .PHONY
1142 Apply the
1143 .Ic .PHONY
1144 attribute to any specified sources.
1145 Targets with this attribute are always
1146 considered to be out of date.
1147 .It Ic .PRECIOUS
1148 Apply the
1149 .Ic .PRECIOUS
1150 attribute to any specified sources.
1151 If no sources are specified, the
1152 .Ic .PRECIOUS
1153 attribute is applied to every
1154 target in the file.
1155 .It Ic .SILENT
1156 Apply the
1157 .Ic .SILENT
1158 attribute to any specified sources.
1159 If no sources are specified, the
1160 .Ic .SILENT
1161 attribute is applied to every
1162 command in the file.
1163 .It Ic .SUFFIXES
1164 Each source specifies a suffix to
1165 .Nm .
1166 If no sources are specified, any previous specified suffices are deleted.
1167 .El
1168 .Sh COMPATIBILITY
1169 Older versions of
1170 .Nm
1171 used
1172 .Ev MAKE
1173 instead of
1174 .Ev MAKEFLAGS .
1175 This was removed for POSIX compatibility.
1176 The internal variable
1177 .Va MAKE
1178 is set to the same value as
1179 .Va .MAKE ;
1180 support for this may be removed in the future.
1181 .Pp
1182 Most of the more esoteric features of
1183 .Nm
1184 should probably be avoided for greater compatibility.
1185 .Sh ENVIRONMENT
1186 The
1187 .Nm
1188 utility uses the following environment variables, if they exist:
1189 .Ev MACHINE ,
1190 .Ev MAKE ,
1191 .Ev MAKEFLAGS ,
1192 .Ev MAKEOBJDIR ,
1193 and
1194 .Ev MAKEOBJDIRPREFIX .
1195 .Sh FILES
1196 .Bl -tag -width /usr/share/doc/psd/12.make -compact
1197 .It Pa .depend
1198 list of dependencies
1199 .It Pa Makefile
1200 list of dependencies
1201 .It Pa makefile
1202 list of dependencies
1203 .It obj
1204 object directory
1205 .It Pa sys.mk
1206 system makefile (processed before any other file, including
1207 .Pa makefile
1208 and
1209 .Pa Makefile )
1210 .It Pa /usr/share/mk
1211 system makefile directory
1212 .It /usr/share/doc/psd/12.make
1213 PMake tutorial
1214 .It Pa /usr/obj
1215 default
1216 .Ev MAKEOBJDIRPREFIX
1217 directory.
1218 .El
1219 .Sh BUGS
1220 The determination of
1221 .Va .OBJDIR
1222 is contorted to the point of absurdity.
1223 .Pp
1224 In the presence of several
1225 .Ic .MAIN
1226 special targets,
1227 .Nm
1228 silently ignores all but the first.
1229 .Pp
1230 .Va .TARGETS
1231 is not set to the default target when
1232 .Nm
1233 is invoked without a target name and no
1234 .Ic .MAIN
1235 special target exists.
1236 .Pp
1237 The evaluation of
1238 .Ar expression
1239 in a test is very simple-minded.
1240 Currently, the only form that works is
1241 .Ql .if ${VAR} op something
1242 For instance, you should write tests as
1243 .Ql .if ${VAR} = "string"
1244 not the other way around, which doesn't work.
1245 .Pp
1246 For loops are expanded before tests, so a fragment such as:
1247 .Bd -literal -offset indent
1248 \&.for TMACHINE in ${SHARED_ARCHS}
1249 \&.if ${TMACHINE} = ${MACHINE}
1250      ...
1251 \&.endif
1252 \&.endfor
1253 .Ed
1254 .Pp
1255 won't work, and should be rewritten the other way around.
1256 .Pp
1257 The parsing code is broken with respect to handling a semicolon
1258 after a colon, so a fragment like this will fail:
1259 .Bd -literal -offset indent
1260 HDRS=   foo.h bar.h
1261
1262 all:
1263 \&.for h in ${HDRS:S;^;${.CURDIR}/;}
1264      ...
1265 \&.endfor
1266 .Ed
1267 .Sh SEE ALSO
1268 .Xr mkdep 1 ,
1269 .Xr make.conf 5
1270 .Rs
1271 .%T "PMake - A Tutorial"
1272 .Re
1273 in
1274 .Pa /usr/share/doc/psd/12.make
1275 .Sh HISTORY
1276 A
1277 .Nm
1278 command appeared in PWB UNIX.