home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / gnuc / unix / usr / share / man / cat1 / make.0 < prev    next >
Encoding:
Text File  |  1992-12-28  |  25.9 KB  |  529 lines

  1.  
  2. MAKE(1)                      UNIX Reference Manual                     MAKE(1)
  3.  
  4. NNAAMMEE
  5.      mmaakkee - maintain program dependencies
  6.  
  7. SSYYNNOOPPSSIISS
  8.      mmaakkee [--eeiikknnqqrrssttvv] [--DD _v_a_r_i_a_b_l_e] [--dd _f_l_a_g_s] [--ff _m_a_k_e_f_i_l_e] [--II _d_i_r_e_c_t_o_r_y]
  9.           [--jj _m_a_x___j_o_b_s] [_v_a_r_i_a_b_l_e_=_v_a_l_u_e] [_t_a_r_g_e_t _._._.]
  10.  
  11. DDEESSCCRRIIPPTTIIOONN
  12.      MMaakkee is a program designed to simplify the maintenance of other programs.
  13.      Its input is a list of specifications as to the files upon which programs
  14.      and other files depend.  If the file `_m_a_k_e_f_i_l_e' exists, it is read for
  15.      this list of specifications.  If it does not exist, the file `_M_a_k_e_f_i_l_e'
  16.      is read.  If the file `_._d_e_p_e_n_d' exists, it is read (see mkdep(1)).
  17.  
  18.      This manual page is intended as a reference document only.  For a more
  19.      thorough description of mmaakkee and makefiles, please refer to _M_a_k_e _- _A
  20.      _T_u_t_o_r_i_a_l.
  21.  
  22.      The options are as follows:
  23.  
  24.      --DD _v_a_r_i_a_b_l_e
  25.              Define Ar variable to be 1, in the global context.
  26.  
  27.      --dd _f_l_a_g_s
  28.              Turn on debugging, and specify which portions of mmaakkee are to
  29.              print debugging information.  _F_l_a_g_s is one or more of the follow-
  30.              ing:
  31.  
  32.              _A       Print all possible debugging information; equivalent to
  33.                      specifying all of the debugging flags.
  34.  
  35.              _a       Print debugging information about archive searching and
  36.                      caching.
  37.  
  38.              _c       Print debugging information about conditional evaluation.
  39.  
  40.              _d       Print debugging information about directory searching and
  41.                      caching.
  42.  
  43.              _g_1      Print the input graph before making anything.
  44.  
  45.              _g_2      Print the input graph after making everything, or before
  46.                      exiting on error.
  47.  
  48.              _j       Print debugging information about running multiple
  49.                      shells.
  50.  
  51.              _m       Print debugging information about making targets, includ-
  52.                      ing modification dates.
  53.  
  54.              _s       Print debugging information about suffix-transformation
  55.                      rules.
  56.  
  57.              _t       Print debugging information about target list mainte-
  58.                      nance.
  59.  
  60.              _v       Print debugging information about variable assignment.
  61.  
  62.      --ee      Specify that environmental variables override macro assignments
  63.              within makefiles.
  64.  
  65.      --ff _m_a_k_e_f_i_l_e
  66.              Specify a makefile to read instead of the default `_m_a_k_e_f_i_l_e' and
  67.              `_M_a_k_e_f_i_l_e'. If _m_a_k_e_f_i_l_e is `--', standard input is read.  Multiple
  68.              makefile's may be specified, and are read in the order specified.
  69.  
  70.      --II _d_i_r_e_c_t_o_r_y
  71.              Specify a directory in which to search for makefiles and included
  72.              makefiles.  The system makefile directory is automatically in-
  73.              cluded as part of this list.
  74.  
  75.      --ii      Ignore non-zero exit of shell commands in the makefile.  Equiva-
  76.              lent to specifying `--' before each command line in the makefile.
  77.  
  78.      --jj _m_a_x___j_o_b_s
  79.              Specify the maximum number of jobs that mmaakkee may have running at
  80.              any one time.
  81.  
  82.      --kk      Continue processing after errors are encountered, but only on
  83.              those targets that do not depend on the target whose creation
  84.              caused the error.
  85.  
  86.      --nn      Display the commands that would have been executed, but do not
  87.              actually execute them.
  88.  
  89.      --qq      Do not execute any commands, but exit 0 if the specified targets
  90.              are up-to-date and 1, otherwise.
  91.  
  92.      --rr      Do not use the built-in rules specified in the system makefile.
  93.  
  94.      --ss      Do not echo any commands as they are executed.  Equivalent to
  95.              specifying `@@' before each command line in the makefile.
  96.  
  97.      --tt      Rather than re-building a target as specified in the makefile,
  98.              create it or update its modification time to make it appear up-
  99.              to-date.
  100.  
  101.      _v_a_r_i_a_b_l_e_=_v_a_l_u_e
  102.              Set the value of the variable _v_a_r_i_a_b_l_e to _v_a_l_u_e.
  103.  
  104.      There are six different types of lines in a makefile: file dependency
  105.      specifications, shell commands, variable assignments, include statements,
  106.      conditional directives, and comments.
  107.  
  108.      In general, lines may be continued from one line to the next by ending
  109.      them with a backslash (`\'). The trailing newline character and initial
  110.      whitespace on the following line are compressed into a single space.
  111.  
  112. FFIILLEE DDEEPPEENNDDEENNCCYY SSPPEECCIIFFIICCAATTIIOONNSS
  113.      Dependency lines consist of one or more targets, an operator, and zero or
  114.      more sources.  This creates a relationship where the targets ``depend''
  115.      on the sources and are usually created from them.  The exact relationship
  116.      between the target and the source is determined by the operator that sep-
  117.      arates them.  The three operators are as follows:
  118.  
  119.      ::     A target is considered out-of-date if its modification time is less
  120.            than those of any of its sources.  Sources for a target accumulate
  121.            over dependency lines when this operator is used.  The target is
  122.            removed if mmaakkee is interrupted.
  123.  
  124.      !!     Targets are always re-created, but not until all sources have been
  125.            examined and re-created as necessary.  Sources for a target accumu-
  126.            late over dependency lines when this operator is used.  The target
  127.            is removed if mmaakkee is interrupted.
  128.  
  129.      ::::    If no sources are specified, the target is always re-created.  Oth-
  130.            erwise, a target is considered out-of-date if any of its sources
  131.            has been modified more recently than the target.  Sources for a
  132.            target do not accumulate over dependency lines when this operator
  133.            is used.  The target will not be removed if mmaakkee is interrupted.
  134.  
  135.      Targets and sources may contain the shell wildcard values `?', `*', `[]'
  136.      and `{}'. The values `?', `*' and `[]' may only be used as part of the
  137.      final component of the target or source, and must be used to describe ex-
  138.      isting files.  The value `{}' need not necessarily be used to describe
  139.      existing files.  Expansion is in directory order, not alphabetically as
  140.      done in the shell.
  141.  
  142. SSHHEELLLL CCOOMMMMAANNDDSS
  143.      Each target may have associated with it a series of shell commands, nor-
  144.      mally used to create the target.  Each of the commands in this script
  145.      _m_u_s_t be preceded by a tab.  While any target may appear on a dependency
  146.      line, only one of these dependencies may be followed by a creation
  147.      script, unless the `::::' operator is used.
  148.  
  149.      If the first or first two characters of the command line are `@@' and/or
  150.      `--', the command is treated specially.  A `@@' causes the command not to
  151.      be echoed before it is executed.  A `--' causes any non-zero exit status
  152.      of the command line to be ignored.
  153.  
  154. VVAARRIIAABBLLEE AASSSSIIGGNNMMEENNTTSS
  155.      Variables in make are much like variables in the shell, and, by tradi-
  156.      tion, consist of all upper-case letters.  The five operators that can be
  157.      used to assign values to variables are as follows:
  158.  
  159.      ==       Assign the value to the variable.  Any previous value is overrid-
  160.              den.
  161.  
  162.      ++==      Append the value to the current value of the variable.
  163.  
  164.      ??==      Assign the value to the variable if it is not already defined.
  165.  
  166.      ::==      Assign with expansion, i.e. expand the value before assigning it
  167.              to the variable.  Normally, expansion is not done until the vari-
  168.              able is referenced.
  169.  
  170.      !!==      Expand the value and pass it to the shell for execution and as-
  171.              sign the result to the variable.  Any newlines in the result are
  172.              replaced with spaces.
  173.  
  174.      Any white-space before the assigned _v_a_l_u_e is removed; if the value is be-
  175.      ing appended, a single space is inserted between the previous contents of
  176.      the variable and the appended value.
  177.  
  178.      Variables are expanded by surrounding the variable name with either curly
  179.      braces (`{}') or parenthesis (`()') and preceding it with a dollar sign
  180.      (`$'). If the variable name contains only a single letter, the surround-
  181.      ing braces or parenthesis are not required.  This shorter form is not
  182.      recommended.
  183.  
  184.      Variable substitution occurs at two distinct times, depending on where
  185.      the variable is being used.  Variables in dependency lines are expanded
  186.      as the line is read.  Variables in shell commands are expanded when the
  187.      shell command is executed.
  188.  
  189.      The four different classes of variables (in order of increasing prece-
  190.      dence) are:
  191.  
  192.      Environment variables
  193.              Variables defined as part of mmaakkee's environment.
  194.  
  195.      Global variables
  196.  
  197.  
  198.              Variables defined in the makefile or in included makefiles.
  199.  
  200.      Command line variables
  201.              Variables defined as part of the command line.
  202.  
  203.      Local variables
  204.              Variables that are defined specific to a certain target.  The
  205.              seven local variables are as follows:
  206.  
  207.              _._A_L_L_S_R_C   The list of all sources for this target; also known as
  208.                        `_>'.
  209.  
  210.              _._A_R_C_H_I_V_E  The name of the archive file.
  211.  
  212.              _._I_M_P_S_R_C   The name/path of the source from which the target is to
  213.                        be transformed (the ``implied'' source); also known as
  214.                        `_<'.
  215.  
  216.              _._M_E_M_B_E_R   The name of the archive member.
  217.  
  218.              _._O_O_D_A_T_E   The list of sources for this target that were deemed
  219.                        out-of-date; also known as `_?'.
  220.  
  221.              _._P_R_E_F_I_X   The file prefix of the file, containing only the file
  222.                        portion, no suffix or preceding directory components;
  223.                        also known as `_*'.
  224.  
  225.              _._T_A_R_G_E_T   The name of the target; also known as `_@'.
  226.  
  227.              The shorter forms `_@', `_?', `_>' and `_*' are permitted for back-
  228.              ward compatibility with historical makefiles and are not recom-
  229.              mended.  The six variables `_@_F', `_@_D', `_<_F', `_<_D', `_*_F' and `_*_D'
  230.              are permitted for compatibility with AT&T System V UNIX makefiles
  231.              and are not recommended.
  232.  
  233.              Four of the local variables may be used in sources on dependency
  234.              lines because they expand to the proper value for each target on
  235.              the line.  These variables are `_._T_A_R_G_E_T', `_._P_R_E_F_I_X', `_._A_R_C_H_I_V_E',
  236.              and `_._M_E_M_B_E_R'.
  237.  
  238.              In addition, mmaakkee sets or knows about the following variables:
  239.  
  240.              _$          A single dollar sign `$', i.e.  `$$' expands to a sin-
  241.                         gle dollar sign.
  242.  
  243.              _._M_A_K_E      The name that mmaakkee was executed with (_a_r_g_v [0])
  244.  
  245.              _._C_U_R_D_I_R    A path to the directory where mmaakkee was executed.
  246.  
  247.              MAKEFLAGS  The environment variable `MAKEFLAGS' may contain any-
  248.                         thing that may be specified on mmaakkee's command line.
  249.                         Anything specified on mmaakkee's command line is appended
  250.                         to the `MAKEFLAGS' variable which is then entered into
  251.                         the environment for all programs which mmaakkee executes.
  252.  
  253.              Variable expansion may be modified to select or modify each word
  254.              of the variable (where a ``word'' is white-space delimited se-
  255.              quence of characters).  The general format of a variable expan-
  256.              sion is as follows:
  257.  
  258.                    {variable[:modifier[:...]]}
  259.  
  260.              Each modifier begins with a colon and one of the following spe-
  261.              cial characters.  The colon may be escaped with a backslash
  262.  
  263.  
  264.              (`\').
  265.  
  266.              EE           Replaces each word in the variable with its suffix.
  267.  
  268.              HH           Replaces each word in the variable with everything
  269.                          but the last component.
  270.  
  271.              MM_p_a_t_t_e_r_n    Select only those words that match the rest of the
  272.                          modifier.  The standard shell wildcard characters
  273.                          (`*', `?', and `[]') may be used.  The wildcard char-
  274.                          acters may be escaped with a backslash (`\').
  275.  
  276.              NN_p_a_t_t_e_r_n    This is identical to `MM', but selects all words which
  277.                          do not match the rest of the modifier.
  278.  
  279.              RR           Replaces each word in the variable with everything
  280.                          but its suffix.
  281.  
  282.              SS/_o_l_d___p_a_t_t_e_r_n/_n_e_w___p_a_t_t_e_r_n/[gg]
  283.                          Modify the first occurrence of _o_l_d___p_a_t_t_e_r_n in each
  284.                          word to be replaced with _n_e_w___p_a_t_t_e_r_n. If a `g' is ap-
  285.                          pended to the last slash of the pattern, all occur-
  286.                          rences in each word are replaced.  If _o_l_d___p_a_t_t_e_r_n be-
  287.                          gins with a carat (`^'), _o_l_d___p_a_t_t_e_r_n is anchored at
  288.                          the beginning of each word.  If _o_l_d___p_a_t_t_e_r_n ends with
  289.                          a dollar sign (`$'), it is anchored at the end of
  290.                          each word.  Inside _n_e_w___s_t_r_i_n_g, an ampersand (`&') is
  291.                          replaced by _o_l_d___p_a_t_t_e_r_n. Any character may be used as
  292.                          a delimiter for the parts of the modifier string.
  293.                          The anchoring, ampersand and delimiter characters may
  294.                          be escaped with a backslash (`\').
  295.  
  296.                          Variable expansion occurs in the normal fashion in-
  297.                          side both _o_l_d___s_t_r_i_n_g and _n_e_w___s_t_r_i_n_g with the single
  298.                          exception that a backslash is used to prevent the ex-
  299.                          pansion of a dollar sign (`$') not a preceding dollar
  300.                          sign as is usual.
  301.  
  302.              TT           Replaces each word in the variable with its last com-
  303.                          ponent.
  304.  
  305.              _o_l_d___s_t_r_i_n_g_=_n_e_w___s_t_r_i_n_g
  306.                          This is the AT&T System V UNIX style variable substi-
  307.                          tution.  It must be the last modifier specified.
  308.                          _O_l_d___s_t_r_i_n_g is anchored at the end of each word, so
  309.                          only suffixes or entire words may be replaced.
  310.  
  311. IINNCCLLUUDDEE SSTTAATTEEMMEENNTTSS AANNDD CCOONNDDIITTIIOONNAALLSS
  312.      Makefile inclusion and conditional structures reminiscent of the C pro-
  313.      gramming language are provided in mmaakkee. All such structures are identi-
  314.      fied by a line beginning with a single dot (`.') character.  Files are
  315.      included with either `.include <file>' or `.include "file"'. Variables
  316.      between the angle brackets or double quotes are expanded to form the file
  317.      name.  If angle brackets are used, the included makefile is expected to
  318.      be in the system makefile directory.  If double quotes are used, the in-
  319.      cluding makefile's directory and any directories specified using the --II
  320.      option are searched before the system makefile directory.
  321.  
  322.      Conditional expressions are also preceded by a single dot as the first
  323.      chraracter of a line.  The possible conditionals are as follows:
  324.  
  325.      ..uunnddeeff _v_a_r_i_a_b_l_e
  326.              Un-define the specified global variable.  Only global variables
  327.              may be un-defined.
  328.  
  329.      ..iiff [!]_e_x_p_r_e_s_s_i_o_n [_o_p_e_r_a_t_o_r _e_x_p_r_e_s_s_i_o_n _._._.]
  330.  
  331.              Test the value of an expression.
  332.  
  333.      ..iiffddeeff [!]_v_a_r_i_a_b_l_e [_o_p_e_r_a_t_o_r _v_a_r_i_a_b_l_e _._._.]
  334.              Test the value of an variable.
  335.  
  336.      ..iiffnnddeeff [!]_v_a_r_i_a_b_l_e [_o_p_e_r_a_t_o_r _v_a_r_i_a_b_l_e _._._.]
  337.              Test the value of an variable.
  338.  
  339.      ..iiffmmaakkee [!]_t_a_r_g_e_t [_o_p_e_r_a_t_o_r _t_a_r_g_e_t _._._.]
  340.              Test the the target being built.
  341.  
  342.      ..iiffnnmmaakkee [!]_t_a_r_g_e_t [_o_p_e_r_a_t_o_r _t_a_r_g_e_t _._._.]
  343.              Test the target being built.
  344.  
  345.      ..eellssee   Reverse the sense of the last conditional.
  346.  
  347.      ..eelliiff [!]_e_x_p_r_e_s_s_i_o_n [_o_p_e_r_a_t_o_r _e_x_p_r_e_s_s_i_o_n _._._.]
  348.              A combination of `..eellssee' followed by `..iiff'.
  349.  
  350.      ..eelliiffddeeff [!]_v_a_r_i_a_b_l_e [_o_p_e_r_a_t_o_r _v_a_r_i_a_b_l_e _._._.]
  351.              A combination of `..eellssee' followed by `..iiffddeeff'.
  352.  
  353.      ..eelliiffnnddeeff [!]_v_a_r_i_a_b_l_e [_o_p_e_r_a_t_o_r _v_a_r_i_a_b_l_e _._._.]
  354.              A combination of `..eellssee' followed by `..iiffnnddeeff'.
  355.  
  356.      ..eelliiffmmaakkee [!]_t_a_r_g_e_t [_o_p_e_r_a_t_o_r _t_a_r_g_e_t _._._.]
  357.              A combination of `..eellssee' followed by `..iiffmmaakkee'.
  358.  
  359.      ..eelliiffnnmmaakkee [!]_t_a_r_g_e_t [_o_p_e_r_a_t_o_r _t_a_r_g_e_t _._._.]
  360.              A combination of `..eellssee' followed by `..iiffnnmmaakkee'.
  361.  
  362.      ..eennddiiff  End the body of the conditional.
  363.  
  364.      The _o_p_e_r_a_t_o_r may be any one of the following:
  365.  
  366.      ||||     logical OR
  367.  
  368.      &&&&     Logical AND; of higher precedence than ``''.
  369.  
  370.      As in C, mmaakkee will only evaluate a conditional as far as is necessary to
  371.      determine its value.  Parenthesis may be used to change the order of
  372.      evaluation.  The boolean operator `!!' may be used to logically negate an
  373.      entire conditional.  It is of higher precendence than `&&&&'.
  374.  
  375.      The value of _e_x_p_r_e_s_s_i_o_n may be any of the following:
  376.  
  377.      ddeeffiinneedd     Takes a variable name as an argument and evaluates to true if
  378.                  the variable has been defined.
  379.  
  380.      mmaakkee        Takes a target name as an argument and evaluates to true if
  381.                  the target was specified as part of mmaakkee's command line or
  382.                  was declared the default target (either implicitly or explic-
  383.                  itly, see _._M_A_I_N) before the line containing the conditional.
  384.  
  385.      eemmppttyy       Takes a variable, with possible modifiers, and evalutes to
  386.                  true if the expansion of the variable would result in an emp-
  387.                  ty string.
  388.  
  389.      eexxiissttss      Takes a file name as an argument and evaluates to true if the
  390.                  file exists.  The file is searched for on the system search
  391.                  path (see _._P_A_T_H).
  392.  
  393.      ttaarrggeett      Takes a target name as an argument and evaluates to true if
  394.                  the target has been defined.
  395.  
  396.  
  397.      _E_x_p_r_e_s_s_i_o_n may also be an arithmetic or string comparison, with the left-
  398.      hand side being a variable expansion.  The standard C relational opera-
  399.      tors are all supported, and the usual number/base conversion is per-
  400.      formed.  Note, octal numbers are not supported.  If the righthand value
  401.      of a `====' or `!!==' operator begins with a quotation mark (`"') a string
  402.      comparison is done between the expanded variable and the text between the
  403.      quotation marks.  If no relational operator is given, it is assumed that
  404.      the expanded variable is being compared against 0.
  405.  
  406.      When mmaakkee is evaluating one of these conditional expression, and it en-
  407.      counters a word it doesn't recognize, either the ``make'' or ``defined''
  408.      expression is applied to it, depending on the form of the conditional.
  409.      If the form is `..iiffddeeff' or `..iiffnnddeeff', the ``defined'' expression is ap-
  410.      plied.  Similarly, if the form is `..iiffmmaakkee' or `..iiffnnmmaakkee, tthhee ````mmaakkee'''''
  411.      expression is applied.
  412.  
  413.      If the conditional evaluates to true the parsing of the makefile contin-
  414.      ues as before.  If it evaluates to false, the following lines are
  415.      skipped.  In both cases this continues until a `..eellssee' or `..eennddiiff' is
  416.      found.
  417.  
  418. CCOOMMMMEENNTTSS
  419.      Comments begin with a hash (`#') character, anywhere but in a shell com-
  420.      mand line, and continue to the end of the line.
  421.  
  422. SSPPEECCIIAALL SSOOUURRCCEESS
  423.      ..IIGGNNOORREE     Ignore any errors from the commands associated with this tar-
  424.                  get, exactly as if they all were preceded by a dash (`-').
  425.  
  426.      ..MMAAKKEE       Execute the commands associated with this target even if the
  427.                  --nn or --tt options were specified.  Normally used to mark re-
  428.                  cursive mmaakkee's.
  429.  
  430.      ..NNOOTTMMAAIINN    Normally mmaakkee selects the first target it encounters as the
  431.                  default target to be built if no target was specified.  This
  432.                  source prevents this target from being selected.
  433.  
  434.      ..OOPPTTIIOONNAALL   If a target is marked with this attribute and mmaakkee can't fig-
  435.                  ure out how to create it, it will ignore this fact and assume
  436.                  the file isn't needed or already exists.
  437.  
  438.      ..PPRREECCIIOOUUSS   When mmaakkee is interrupted, it removes any partially made tar-
  439.                  gets.  This source prevents the target from being removed.
  440.  
  441.      ..SSIILLEENNTT     Do not echo any of the commands associated with this target,
  442.                  exactly as if they all were preceded by an at sign (`@').
  443.  
  444.      ..UUSSEE        Turn the target into mmaakkee's. version of a macro.  When the
  445.                  target is used as a source for another target, the other tar-
  446.                  get acquires the commands, sources, and attributes (except
  447.                  for ..UUSSEE) of the source.  If the target already has commands,
  448.                  the ..UUSSEE target's commands are appended to them.
  449.  
  450. SSPPEECCIIAALL TTAARRGGEETTSS
  451.      Special targets may not be included with other targets, i.e. they must be
  452.      the only target specified.
  453.  
  454.      ..BBEEGGIINN      Any command lines attached to this target are executed before
  455.                  anything else is done.
  456.  
  457.      ..DDEEFFAAUULLTT    This is sort of a ..UUSSEE rule for any target (that was used on-
  458.                  ly as a source) that mmaakkee can't figure out any other way to
  459.                  create.  Only the shell script is used.  The ..IIMMPPSSRRCC variable
  460.                  of a target that inherits ..DDEEFFAAUULLTT's commands is set to the
  461.  
  462.                  target's own name.
  463.  
  464.      ..EENNDD        Any command lines attached to this target are executed after
  465.                  everything else is done.
  466.  
  467.      ..IIGGNNOORREE     Mark each of the sources with the ..IIGGNNOORREE attribute.  If no
  468.                  sources are specified, this is the equivalent of specifying
  469.                  the --ii option.
  470.  
  471.      ..IINNTTEERRRRUUPPTT  If mmaakkee is interrupted, the commands for this target will be
  472.                  executed.
  473.  
  474.      ..MMAAIINN       If no target is specified when mmaakkee is invoked, this target
  475.                  will be built.
  476.  
  477.      ..MMAAKKEEFFLLAAGGSS  This target provides a way to specify flags for mmaakkee when the
  478.                  makefile is used.  The flags are as if typed to the shell,
  479.                  though the --ff option will have no effect.
  480.  
  481.      ..PPAATTHH       The sources are directories which are to be searched for
  482.                  files not found in the current directory.  If no sources are
  483.                  specified, any previously specified directories are deleted.
  484.  
  485.      ..PPRREECCIIOOUUSS   Apply the ..PPRREECCIIOOUUSS attribute to any specified sources.  If
  486.                  no sources are specified, the ..PPRREECCIIOOUUSS attribute is applied
  487.                  to every target in the file.
  488.  
  489.      ..SSIILLEENNTT     Apply the ..SSIILLEENNTT attribute to any specified sources.  If no
  490.                  sources are specified, the ..SSIILLEENNTT attribute is applied to
  491.                  every command in the file.
  492.  
  493.      ..SSUUFFFFIIXXEESS   Each source specifies a suffix to mmaakkee. If no sources are
  494.                  specified, any previous specifies suffices are deleted.
  495.  
  496. EENNVVIIRROONNMMEENNTT
  497.      MMaakkee utilizes the following environment variables, if they exist: MAKE,
  498.      MAKEFLAGS and MAKEOBJDIR.
  499.  
  500. FFIILLEESS
  501.      .depend        list of dependencies
  502.      Makefile       list of dependencies
  503.      makefile       list of dependencies
  504.      sys.mk         system makefile
  505.      /usr/share/mk  system makefile directory
  506.  
  507. SSEEEE AALLSSOO
  508.      mkdep(1)
  509.  
  510. HHIISSTTOORRYY
  511.      A MMaakkee command appeared in Version 7 AT&T UNIX.
  512.  
  513. BSD Experimental                 July 24, 1991                               8
  514.  
  515.  
  516.  
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524.  
  525.  
  526.  
  527.  
  528.  
  529.