home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dmake40x.zip / man / dmake.p < prev    next >
Text File  |  1998-07-06  |  144KB  |  3,521 lines

  1.  
  2.  
  3.  
  4.  
  5. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  6.  
  7.  
  8.  
  9. NNAAMMEE
  10.      ddmmaakkee - maintain program groups, or interdependent files
  11.  
  12. SSYYNNOOPPSSIISS
  13.      ddmmaakkee [-P#] [-{f|C|K} file] [-{w|W} target ...]
  14.      [macro[[!][*][+][:]]=_v_a_l_u_e ...] [-v{cdfimt}]
  15.      [-ABcdeEghiknpqrsStTuVxX] [target ...]
  16.  
  17. DDEESSCCRRIIPPTTIIOONN
  18.      ddmmaakkee is a re-implementation of the UNIX Make utility with
  19.      significant enhancements.  ddmmaakkee executes commands found in
  20.      an external file called a _m_a_k_e_f_i_l_e to update one or more
  21.      target names.  Each target may depend on zero or more prere-
  22.      quisite targets.  If any of the target's prerequisites is
  23.      newer than the target or if the target itself does not
  24.      exist, then ddmmaakkee will attempt to make the target.
  25.  
  26.      If no --ff command line option is present then ddmmaakkee searches
  27.      for an existing _m_a_k_e_f_i_l_e from the list of prerequisites
  28.      specified for the special target _._M_A_K_E_F_I_L_E_S (see the STARTUP
  29.      section for more details).  If "-" is the name of the file
  30.      specified to the --ff flag then ddmmaakkee uses standard input as
  31.      the source of the makefile text.
  32.  
  33.      Any macro definitions (arguments with embedded "=" signs)
  34.      that appear on the command line are processed first and
  35.      supercede definitions for macros of the same name found
  36.      within the makefile.  In general it is impossible for defin-
  37.      itions found inside the makefile to redefine a macro defined
  38.      on the command line, see the MACROS section for exceptions.
  39.  
  40.      If no _t_a_r_g_e_t names are specified on the command line, then
  41.      ddmmaakkee uses the first non-special target found in the
  42.      makefile as the default target.  See the SSPPEECCIIAALL TTAARRGGEETTSS
  43.      section for the list of special targets and their function.
  44.      Makefiles written for most previous versions of _M_a_k_e will be
  45.      handled correctly by ddmmaakkee.. Known differences between ddmmaakkee
  46.      and other versions of make are discussed in the CCOOMMPPAATTIIBBIILL----
  47.      IITTYY section found at the end of this document.  ddmmaakkee
  48.      returns 0 if no errors were detected and a non-zero result
  49.      if an error occurred.
  50.  
  51. OOPPTTIIOONNSS
  52.      --AA   Enable AUGMAKE special inference rule transformations
  53.           (see the "PERCENT(%) RULES" section), these are set to
  54.           off by default.
  55.  
  56.      --BB   Enable the use of spaces instead of <tabs> to begin
  57.           recipe lines.  This flag equivalent to the .NOTABS spe-
  58.           cial macro and is further described below.
  59.  
  60.  
  61.  
  62.  
  63.  
  64. Version 3.9 PL0                 UW                              1
  65.  
  66.  
  67.  
  68.  
  69. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  70.  
  71.  
  72.  
  73.      --cc   Use non-standard comment stripping.  If you specify --cc
  74.           then ddmmaakkee will treat any ## character as a start of
  75.           comment character wherever it may appear unless it is
  76.           escaped by a \.
  77.  
  78.      --CC [[++]]ffiillee
  79.           This option writes to _f_i_l_e a copy of standard output
  80.           and standard error from any child processes and from
  81.           the ddmmaakkee process itself.  If you specify a ++ prior to
  82.           the file name then the text is appended to the previous
  83.           contents of _f_i_l_e.  This option is active in the MSDOS
  84.           implementation only and is ignored by non-MSDOS ver-
  85.           sions of ddmmaakkee..
  86.  
  87.      --dd   Disable the use of the directory cache.  Normally ddmmaakkee
  88.           caches directories as it checks file timestamps.  Giv-
  89.           ing this flag is equivalent to the .DIRCACHE attribute
  90.           or macro being set to _n_o.
  91.  
  92.      --EE   Read the environment and define all strings of the form
  93.           'EENNVV--VVAARR=_e_v_a_l_u_e' defined within as macros whose name is
  94.           EENNVV--VVAARR, and whose value is '_e_v_a_l_u_e'.  The environment
  95.           is processed prior to processing the user specified
  96.           makefile thereby allowing definitions in the makefile
  97.           to override definitions in the environment.
  98.  
  99.      --ee   Same as -E, except that the environment is processed
  100.           after the user specified makefile has been processed
  101.           (thus definitions in the environment override defini-
  102.           tions in the makefile).  The -e and -E options are
  103.           mutually exclusive.  If both are given the latter takes
  104.           effect.
  105.  
  106.      --ff ffiillee
  107.           Use ffiillee as the source for the makefile text.  Only one
  108.           --ff option is allowed.
  109.  
  110.      --gg   Globally disable group recipe parsing, equivalent to
  111.           the .IGNOREGROUP attribute or macro being set to _y_e_s at
  112.           the start of the makefile.
  113.  
  114.      --hh   Print the command summary for ddmmaakkee.
  115.  
  116.      --ii   Tells ddmmaakkee to ignore errors, and continue making other
  117.           targets.  This is equivalent to the .IGNORE attribute
  118.           or macro.
  119.  
  120.      --KK ffiillee
  121.           Turns on ..KKEEEEPP__SSTTAATTEE state tracking and tells ddmmaakkee to
  122.           use _f_i_l_e as the state file.
  123.  
  124.  
  125.  
  126.  
  127.  
  128. Version 3.9 PL0                 UW                              2
  129.  
  130.  
  131.  
  132.  
  133. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  134.  
  135.  
  136.  
  137.      --kk   Causes ddmmaakkee to ignore errors caused by command execu-
  138.           tion and to make all targets not depending on targets
  139.           that could not be made. Ordinarily ddmmaakkee stops after a
  140.           command returns a non-zero status, specifying --kk causes
  141.           ddmmaakkee to ignore the error and continue to make as much
  142.           as possible.
  143.  
  144.      --nn   Causes ddmmaakkee to print out what it would have executed,
  145.           but does not actually execute the commands.  A special
  146.           check is made for the string "$(MAKE)" inside a recipe
  147.           line, if found, the line is expanded and invoked,
  148.           thereby enabling recursive makes to give a full
  149.           description of all that they will do.  The check for
  150.           "$(MAKE)" is disabled inside group recipes.
  151.  
  152.      --pp   Print out a version of the digested makefile in human
  153.           readable form.  (useful for debugging, but cannot be
  154.           re-read by ddmmaakkee)
  155.  
  156.      --PP##  On systems that support multi-processing cause ddmmaakkee to
  157.           use _# concurrent child processes to make targets.  See
  158.           the "MULTI PROCESSING" section for more information.
  159.  
  160.      --qq   Check and see if the target is up to date.  Exits with
  161.           code 0 if up to date, 1 otherwise.
  162.  
  163.      --rr   Tells ddmmaakkee not to read the initial startup makefile,
  164.           see STARTUP section for more details.
  165.  
  166.      --ss   Tells ddmmaakkee to do all its work silently and not echo
  167.           the commands it is executing to stdout (also suppresses
  168.           warnings).  This  is equivalent to the .SILENT attri-
  169.           bute or macro.
  170.  
  171.      --SS   Force sequential execution of recipes on architectures
  172.           which support concurrent makes.  For backward compati-
  173.           bility with old makefiles that have nasty side-effect
  174.           prerequisite dependencies.
  175.  
  176.      --tt   Causes ddmmaakkee to touch the targets and bring them up to
  177.           date without executing any commands.  Note that targets
  178.           will not be created if they do not already exist.
  179.  
  180.      --TT   Tells ddmmaakkee to not perform transitive closure on the
  181.           inference graph.
  182.  
  183.      --uu   Force an unconditional update.  (ie. do everything that
  184.           would be done if everything that a target depended on
  185.           was out of date)
  186.  
  187.      --vv[[ddffiimmtt]]
  188.           Verbose flag, when making targets print to stdout what
  189.  
  190.  
  191.  
  192. Version 3.9 PL0                 UW                              3
  193.  
  194.  
  195.  
  196.  
  197. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  198.  
  199.  
  200.  
  201.           we are going to make and what we think its time stamp
  202.           is.  The optional flags [[ddffiimmtt]] can be used to restrict
  203.           the information that is displayed.  In the absence of
  204.           any optional flags all are assumed to be given (ie. --vv
  205.           is equivalent to --vvddffiimmtt).  The meanings of the
  206.           optional flags are:
  207.  
  208.           dd    Notify of change directory operations only.
  209.  
  210.           ff    Notify of file I/O operations only.
  211.  
  212.           ii    Notify of inference algorithm operation only.
  213.  
  214.           mm    Notify of target update operations only.
  215.  
  216.           tt    Keep any temporary files created; normally they
  217.                are automatically deleted.
  218.  
  219.      --VV   Print the version of ddmmaakkee, and values of builtin mac-
  220.           ros.
  221.  
  222.      --WW ttaarrggeett
  223.           Run ddmmaakkee pretending that _t_a_r_g_e_t is out of date.
  224.  
  225.      --ww ttaarrggeett
  226.           _W_h_a_t _i_f_? Show what would be made if _t_a_r_g_e_t were out of
  227.           date.
  228.  
  229.      --xx   Upon processing the user makefile export all non-
  230.           internally defined macros to the user's environment.
  231.           This option together with the -e option allows SYSV
  232.           AUGMAKE recursive makes to function as expected.
  233.  
  234.      --XX   Inhibit the execution of ##!! lines found at the begin-
  235.           ning of a makefile.  The use of this flag prevents
  236.           non-termination of recursive make invocations.
  237.  
  238. IINNDDEEXX
  239.      Here is a list of the sections that follow and a short
  240.      description of each.  Perhaps you won't have to read the
  241.      entire man page to find what you need.
  242.  
  243.      SSTTAARRTTUUPP            Describes ddmmaakkee initialization.
  244.  
  245.      SSYYNNTTAAXX             Describes the syntax of makefile expres-
  246.                         sions.
  247.  
  248.      AATTTTRRIIBBUUTTEESS         Describes the notion of attributes and
  249.                         how they are used when making targets.
  250.  
  251.      MMAACCRROOSS             Defining and expanding macros.
  252.  
  253.  
  254.  
  255.  
  256. Version 3.9 PL0                 UW                              4
  257.  
  258.  
  259.  
  260.  
  261. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  262.  
  263.  
  264.  
  265.      RRUULLEESS AANNDD TTAARRGGEETTSS  How to define targets and their prere-
  266.                         quisites.
  267.  
  268.      RREECCIIPPEESS            How to tell ddmmaakkee how to make a target.
  269.  
  270.      TTEEXXTT DDIIVVEERRSSIIOONNSS    How to use text diversions in recipes and
  271.                         macro expansions.
  272.  
  273.      SSPPEECCIIAALL TTAARRGGEETTSS    Some targets are special.
  274.  
  275.      SSPPEECCIIAALL MMAACCRROOSS     Macros used by ddmmaakkee to alter the pro-
  276.                         cessing of the makefile, and those
  277.                         defined by ddmmaakkee for the user.
  278.  
  279.      CCOONNTTRROOLL MMAACCRROOSS     Itemized list of special control macros.
  280.  
  281.      RRUUNN--TTIIMMEE MMAACCRROOSS    Discussion of special run-time macros
  282.                         such as $@ and $<.
  283.  
  284.      FFUUNNCCTTIIOONN MMAACCRROOSS    GNU style function macros, only $(mktmp
  285.                         ...) for now.
  286.  
  287.      CCOONNDDIITTIIOONNAALL MMAACCRROOSS Target specific conditional macros.
  288.  
  289.      DDYYNNAAMMIICC PPRREERREEQQUUIISSIITTEESS
  290.                         Processing of prerequisites which contain
  291.                         macro expansions in their name.
  292.  
  293.      BBIINNDDIINNGG TTAARRGGEETTSS    The rules that ddmmaakkee uses to bind a tar-
  294.                         get to an existing file in the file sys-
  295.                         tem.
  296.  
  297.      PPEERRCCEENNTT((%%)) RRUULLEESS   Specification of recipes to be used by
  298.                         the inference algorithm.
  299.  
  300.      MMAAKKIINNGG IINNFFEERREENNCCEESS  The rules that ddmmaakkee uses when inferring
  301.                         how to make a target which has no expli-
  302.                         cit recipe.  This and the previous sec-
  303.                         tion are really a single section in the
  304.                         text.
  305.  
  306.      MMAAKKIINNGG TTAARRGGEETTSS     How ddmmaakkee makes targets other than
  307.                         libraries.
  308.  
  309.      MMAAKKIINNGG LLIIBBRRAARRIIEESS   How ddmmaakkee makes libraries.
  310.  
  311.      KKEEEEPP SSTTAATTEE         A discussion of how .KEEP_STATE works.
  312.  
  313.      MMUULLTTII PPRROOCCEESSSSIINNGG   Discussion of ddmmaakkee''ss parallel make
  314.                         facilities for architectures that support
  315.                         them.
  316.  
  317.  
  318.  
  319.  
  320. Version 3.9 PL0                 UW                              5
  321.  
  322.  
  323.  
  324.  
  325. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  326.  
  327.  
  328.  
  329.      CCOONNDDIITTIIOONNAALLSS       Conditional expressions which control the
  330.                         processing of the makefile.
  331.  
  332.      EEXXAAMMPPLLEESS           Some hopefully useful examples.
  333.  
  334.      CCOOMMPPAATTIIBBIILLIITTYY      How ddmmaakkee compares with previous versions
  335.                         of make.
  336.  
  337.      LLIIMMIITTSS             Limitations of ddmmaakkee.
  338.  
  339.      PPOORRTTAABBIILLIITTYY        Comments on writing portable makefiles.
  340.  
  341.      FFIILLEESS              Files used by ddmmaakkee.
  342.  
  343.      SSEEEE AALLSSOO           Other related programs, and man pages.
  344.  
  345.      AAUUTTHHOORR             The guy responsible for this thing.
  346.  
  347.      BBUUGGSS               Hope not.
  348.  
  349. SSTTAARRTTUUPP
  350.      When ddmmaakkee begins execution it first processes the command
  351.      line and then processes an initial startup-makefile.  This
  352.      is followed by an attempt to locate and process a user sup-
  353.      plied makefile.  The startup file defines the default values
  354.      of all required control macros and the set of default rules
  355.      for making targets and inferences.  When searching for the
  356.      startup makefile, ddmmaakkee searches the following locations, in
  357.      the order specified, until a startup file is located:
  358.  
  359.           1.   The location given as the value of the macro MAK-
  360.                ESTARTUP defined on the command line.
  361.  
  362.           2.   The location given as the value of the environment
  363.                variable MAKESTARTUP defined in the current
  364.                environment.
  365.  
  366.           3.   The location given as the value of the macro MAK-
  367.                ESTARTUP defined internally within ddmmaakkee.
  368.  
  369.      The above search is disabled by specifying the -r option on
  370.      the command line.  An error is issued if a startup makefile
  371.      cannot be found and the -r option was not specified.  A user
  372.      may substitute a custom startup file by defining the MAKES-
  373.      TARTUP environment variable or by redefining the MAKESTARTUP
  374.      macro on the command line.  To determine where ddmmaakkee looks
  375.      for the default startup file, check your environment or
  376.      issue the command _"_d_m_a_k_e _-_V_".
  377.  
  378.      A similar search is performed to locate a default user
  379.      makefile when no --ff command line option is specified.  By
  380.      default, the prerequisite list of the special target
  381.  
  382.  
  383.  
  384. Version 3.9 PL0                 UW                              6
  385.  
  386.  
  387.  
  388.  
  389. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  390.  
  391.  
  392.  
  393.      .MAKEFILES specifies the names of possible makefiles and the
  394.      search order that ddmmaakkee should use to determine if one
  395.      exists.  A typical definition for this target is:
  396.  
  397.           .MAKEFILES : makefile.mk Makefile makefile
  398.  
  399.      ddmmaakkee will first look for makefile.mk and then the others.
  400.      If a prerequisite cannot be found ddmmaakkee will try to make it
  401.      before going on to the next prerequisite.  For example,
  402.      makefile.mk can be checked out of an RCS file if the proper
  403.      rules for doing so are defined in the startup file.
  404.  
  405.      If the first line of the user makefile is of the form:
  406.  
  407.           #! command command_args
  408.  
  409.      then ddmmaakkee will expand and run the command prior to reading
  410.      any additional input.  If the return code of the command is
  411.      zero then ddmmaakkee will continue on to process the remainder of
  412.      the user makefile, if the return code is non-zero then dmake
  413.      will exit.
  414.  
  415.      ddmmaakkee builds the internal dependency graph as it parses a
  416.      user specified makefile.  The graph is rooted at the special
  417.      target ..RROOOOTT. .ROOT is the top level target that dmake
  418.      builds when it starts to build targets.  All user specified
  419.      targets (those from the command line or taken as defaults
  420.      from the makefile) are made prerequisites of the special
  421.      target ..TTAARRGGEETTSS.  ddmmaakkee by default creates the relationship
  422.      that .ROOT depends on .TARGETS and as a result everything is
  423.      made.  This approach allows the user to customize, within
  424.      their makefile, the order and which, target, is built first.
  425.      For example the default makefiles come with settings for
  426.      .ROOT that specify:
  427.  
  428.           .ROOT .PHONY .NOSTATE .SEQUENTIAL : .INIT .TARGETS
  429.           .DONE
  430.  
  431.      with .INIT and .DONE defined as:
  432.  
  433.           .INIT .DONE :;
  434.  
  435.      which nicely emulates the behaviour of Sun's make exten-
  436.      sions.  The building of .ROOT's prerequisites is always
  437.      forced to be sequential.
  438.  
  439. SSYYNNTTAAXX
  440.      This section is a summary of the syntax of makefile state-
  441.      ments.  The description is given in a style similar to BNF,
  442.      where { } enclose items that may appear zero or more times,
  443.      and [ ] enclose items that are optional.  Alternative pro-
  444.      ductions for a left hand side are indicated by '->', and
  445.  
  446.  
  447.  
  448. Version 3.9 PL0                 UW                              7
  449.  
  450.  
  451.  
  452.  
  453. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  454.  
  455.  
  456.  
  457.      newlines are significant.  All symbols in bboolldd type are text
  458.      or names representing text supplied by the user.
  459.  
  460.  
  461.  
  462.           Makefile -> { Statement }
  463.  
  464.           Statement -> Macro-Definition
  465.                     -> Conditional-Macro-Definition
  466.                     -> Conditional
  467.                     -> Rule-Definition
  468.                     -> Attribute-Definition
  469.  
  470.           Macro-Definition -> MMAACCRROO == LLIINNEE
  471.                            -> MMAACCRROO [[!!]*= LINE
  472.                            ---->>>> MMAACCRROO [[!!]:= LINE
  473.                            ---->>>> MMAACCRROO [[!!]*:= LINE
  474.                            ---->>>> MMAACCRROO [[!!]+= LINE
  475.                            ---->>>> MMAACCRROO [[!!]+:= LINE
  476.  
  477.           CCoonnddiittiioonnaall--MMaaccrroo--DDeeffiinniittiioonn ---->>>>  TTAARRGGEETT ?= Macro-
  478.                                            Definition
  479.  
  480.           Conditional ->  ..IIFF expression
  481.                              Makefile
  482.                           [ ..EELLIIFF expression
  483.                              Makefile ]
  484.                           [ ..EELLSSEE
  485.                              Makefile ]
  486.                           ..EENNDD
  487.  
  488.           expression -> LLIINNEE
  489.                      -> SSTTRRIINNGG ==== LLIINNEE
  490.                      -> SSTTRRIINNGG !!== LLIINNEE
  491.  
  492.  
  493.           Rule-Definition ->  target-definition
  494.                                  [ recipe ]
  495.  
  496.           target-definition -> targets [attrs] op { PPRREERREEQQUUIISSIITTEE } [;; rcp-line]
  497.  
  498.           targets -> target { targets }
  499.                   -> ""target"" { targets }
  500.  
  501.           target -> special-target
  502.                  -> TTAARRGGEETT
  503.  
  504.           attrs -> attribute { attrs }
  505.                 -> ""attribute"" { attrs }
  506.  
  507.           op -> :: { modifier }
  508.  
  509.  
  510.  
  511.  
  512. Version 3.9 PL0                 UW                              8
  513.  
  514.  
  515.  
  516.  
  517. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  518.  
  519.  
  520.  
  521.           modifier -> ::
  522.                    -> ^^
  523.                    -> !!
  524.                    -> --
  525.                    -> ||
  526.  
  527.           recipe -> { TTAABB rcp-line }
  528.                  -> [@@][%%][--] [[
  529.                        { LLIINNEE }
  530.                     ]]
  531.  
  532.           rcp-line -> [@@][%%][--][++] LLIINNEE
  533.  
  534.  
  535.           Attribute-Definition -> attrs :: targets
  536.  
  537.  
  538.           attribute -> ..EEPPIILLOOGG
  539.                     -> ..GGRROOUUPP
  540.                     -> ..IIGGNNOORREE
  541.                     -> ..IIGGNNOORREEGGRROOUUPP
  542.                     -> ..LLIIBBRRAARRYY
  543.                     -> ..MMKKSSAARRGGSS
  544.                     -> ..NNOOIINNFFEERR
  545.                     -> ..NNOOSSTTAATTEE
  546.                     -> ..PPHHOONNYY
  547.                     -> ..PPRREECCIIOOUUSS
  548.                     -> ..PPRROOLLOOGG
  549.                     -> ..SSEETTDDIIRR==_p_a_t_h
  550.                     -> ..SSIILLEENNTT
  551.                     -> ..SSEEQQUUEENNTTIIAALL
  552.                     -> ..SSWWAAPP
  553.                     -> ..UUSSEESSHHEELLLL
  554.                     -> ..SSYYMMBBOOLL
  555.                     -> ..UUPPDDAATTEEAALLLL
  556.  
  557.           special-target -> ..EERRRROORR
  558.                          -> ..EEXXIITT
  559.                          -> ..EEXXPPOORRTT
  560.                          -> ..GGRROOUUPPEEPPIILLOOGG
  561.                          -> ..GGRROOUUPPPPRROOLLOOGG
  562.                          -> ..IIMMPPOORRTT
  563.                          -> ..IINNCCLLUUDDEE
  564.                          -> ..IINNCCLLUUDDEEDDIIRRSS
  565.                          -> ..MMAAKKEEFFIILLEESS
  566.                          -> ..RREEMMOOVVEE
  567.                          -> ..SSOOUURRCCEE
  568.                          -> ..SSOOUURRCCEE.._s_u_f_f_i_x
  569.                          -> ._s_u_f_f_i_x_1._s_u_f_f_i_x_2
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576. Version 3.9 PL0                 UW                              9
  577.  
  578.  
  579.  
  580.  
  581. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  582.  
  583.  
  584.  
  585.      Where, TTAABB represents a <tab> character, SSTTRRIINNGG represents
  586.      an arbitrary sequence of characters, and LLIINNEE represents a
  587.      possibly empty sequence of characters terminated by a non-
  588.      escaped (not immediately preceded by a backslash '\') new-
  589.      line character.  MMAACCRROO, PPRREERREEQQUUIISSIITTEE, and TTAARRGGEETT each
  590.      represent a string of characters not including space or tab
  591.      which respectively form the name of a macro, prerequisite or
  592.      target.  The name may itself be a macro expansion expres-
  593.      sion.  A LLIINNEE can be continued over several physical lines
  594.      by terminating it with a single backslash character.  Com-
  595.      ments are initiated by the pound ## character and extend to
  596.      the end of line.  All comment text is discarded, a '#' may
  597.      be placed into the makefile text by escaping it with '\'
  598.      (ie. \# translates to # when it is parsed).  An exception to
  599.      this occurs when a # is seen inside a recipe line that
  600.      begins with a <tab> or is inside a group recipe.  If you
  601.      specify the --cc command line switch then this behavior is
  602.      disabled and ddmmaakkee will treat all # characters as start of
  603.      comment indicators unless they are escaped by \.  A set of
  604.      continued lines may be commented out by placing a single #
  605.      at the start of the first line.  A continued line cannot
  606.      span more than one makefile.
  607.  
  608.      wwhhiittee ssppaaccee is defined to be any combination of <space>,
  609.      <tab>, and the sequence \<nl> when \<nl> is used to ter-
  610.      minate a LINE.  When processing mmaaccrroo definition lines, any
  611.      amount of white space is allowed on either side of the macro
  612.      operator and white space is stripped from both before and
  613.      after the macro value string.  The sequence \<nl> is treated
  614.      as white space during recipe expansion and is deleted from
  615.      the final recipe string.  You must escape the \<nl> with
  616.      another \ in order to get a \ at the end of a recipe line.
  617.      The \<nl> sequence is deleted from macro values when they
  618.      are expanded.
  619.  
  620.      When processing ttaarrggeett definition lines, the recipe for a
  621.      target must, in general, follow the first definition of the
  622.      target (See the RULES AND TARGETS section for an exception),
  623.      and the recipe may not span across multiple makefiles.  Any
  624.      targets and prerequisites found on a target definition line
  625.      are taken to be white space separated tokens.  The rule
  626.      operator (_o_p in SYNTAX section) is also considered to be a
  627.      token but does not require white space to precede or follow
  628.      it.  Since the rule operator begins with a `:', traditional
  629.      versions of make do not allow the `:' character to form a
  630.      valid target name.  ddmmaakkee allows `:' to be present in
  631.      target/prerequisite names as long as the entire
  632.      target/prerequisite name is quoted.  For example:
  633.  
  634.           a:fred : test
  635.  
  636.      would be parsed as TARGET = a, PREREQUISITES={fred, :,
  637.  
  638.  
  639.  
  640. Version 3.9 PL0                 UW                             10
  641.  
  642.  
  643.  
  644.  
  645. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  646.  
  647.  
  648.  
  649.      test}, which is not what was intended.  To fix this you must
  650.      write:
  651.  
  652.           "a:fred" : test
  653.  
  654.      Which will be parsed as expected.  Quoted target and prere-
  655.      quisite specifications may also contain white space thereby
  656.      allowing the use of complex function macro expressions..
  657.      See the EXAMPLES section for how to apply "" quoting to a
  658.      list of targets.
  659.  
  660. AATTTTRRIIBBUUTTEESS
  661.      ddmmaakkee defines several target attributes.  Attributes may be
  662.      assigned to a single target, a group of targets, or to all
  663.      targets in the makefile.  Attributes are used to modify
  664.      ddmmaakkee actions during target update.  The recognized attri-
  665.      butes are:
  666.  
  667.  
  668.      ..EEPPIILLOOGG     Insert shell epilog code when executing a group
  669.                  recipe associated with any target having this
  670.                  attribute set.
  671.  
  672.      ..FFIIRRSSTT      Used in conjunction with .INCLUDE.  Terminates
  673.                  the inclusion with the first successfully
  674.                  included prerequisite.
  675.  
  676.      ..GGRROOUUPP      Force execution of a target's recipe as a group
  677.                  recipe.
  678.  
  679.      ..IIGGNNOORREE     Ignore an error when trying to make any target
  680.                  with this attribute set.
  681.  
  682.      ..IIGGNNOORREEGGRROOUUPP
  683.                  Disable the special meaning of '[' to initiate a
  684.                  group recipe.
  685.  
  686.      ..LLIIBBRRAARRYY    Target is a library.
  687.  
  688.      ..MMKKSSAARRGGSS    If running in an MSDOS environment then use MKS
  689.                  extended argument passing conventions to pass
  690.                  arguments to commands.  Non-MSDOS environments
  691.                  ignore this attribute.
  692.  
  693.      ..NNOOIINNFFEERR    Any target with this attribute set will not be
  694.                  subjected to transitive closure if it is
  695.                  inferred as a prerequisite of a target whose
  696.                  recipe and prerequisites are being inferred.
  697.                  (i.e. the inference algorithm will not use any
  698.                  prerequisite with this attribute set, as a tar-
  699.                  get) If specified as '.NOINFER:' (ie. with no
  700.                  prerequisites or targets) then the effect is
  701.  
  702.  
  703.  
  704. Version 3.9 PL0                 UW                             11
  705.  
  706.  
  707.  
  708.  
  709. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  710.  
  711.  
  712.  
  713.                  equivalent to specifying --TT on the command line.
  714.  
  715.      ..NNOOSSTTAATTEE    Any target with this attribute set will not have
  716.                  command line flag information stored in the
  717.                  state file if .KEEP_STATE has been enabled.
  718.  
  719.      ..PPHHOONNYY      Any target with this attribute set will have its
  720.                  recipe executed each time the target is made
  721.                  even if a file matching the target name can be
  722.                  located.  Any targets that have a .PHONY attri-
  723.                  buted target as a prerequisite will be made each
  724.                  time the .PHONY attributed prerequisite is made.
  725.  
  726.      ..PPRREECCIIOOUUSS   Do not remove associated target under any cir-
  727.                  cumstances.  Set by default for any targets
  728.                  whose corresponding files exist in the file sys-
  729.                  tem prior to the execution of ddmmaakkee.
  730.  
  731.      ..PPRROOLLOOGG     Insert shell prolog code when executing a group
  732.                  recipe associated with any target having this
  733.                  attribute set.
  734.  
  735.      ..SSEEQQUUEENNTTIIAALL Force a sequential make of the associated
  736.                  target's prerequisites.
  737.  
  738.      ..SSEETTDDIIRR     Change current working directory to specified
  739.                  directory when making the associated target.
  740.                  You must specify the directory at the time the
  741.                  attribute is specified.  To do this simply give
  742.                  _._S_E_T_D_I_R_=_p_a_t_h as the attribute.  _p_a_t_h is expanded
  743.                  and the result is used as the value of the
  744.                  directory to change to.  If _p_a_t_h contains $$$$@@
  745.                  then the name of the target to be built is used
  746.                  in computing the path to change directory to.
  747.                  If path is surrounded by single quotes then path
  748.                  is not expanded, and is used literally as the
  749.                  directory name.  If the _p_a_t_h contains any `:'
  750.                  characters then the entire attribute string must
  751.                  be quoted using ".  If a target having this
  752.                  attribute set also has the .IGNORE attribute set
  753.                  then if the change to the specified directory
  754.                  fails it will be ignored, and no error message
  755.                  will be issued.
  756.  
  757.      ..SSIILLEENNTT     Do not echo the recipe lines when making any
  758.                  target with this attribute set, and do not issue
  759.                  any warnings.
  760.  
  761.      ..SSWWAAPP       Under MSDOS when making a target with this
  762.                  attribute set swap the ddmmaakkee executable to disk
  763.                  prior to executing the recipe line.  Also see
  764.                  the '%' recipe line flag defined in the RECIPES
  765.  
  766.  
  767.  
  768. Version 3.9 PL0                 UW                             12
  769.  
  770.  
  771.  
  772.  
  773. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  774.  
  775.  
  776.  
  777.                  section.
  778.  
  779.      ..SSYYMMBBOOLL     Target is a library member and is an entry point
  780.                  into a module in the library.  This attribute is
  781.                  used only when searching a library for a target.
  782.                  Targets of the form lib((entry)) have this
  783.                  attribute set automatically.
  784.  
  785.      ..UUSSEESSHHEELLLL   Force each recipe line of a target to be exe-
  786.                  cuted using a shell.  Specifying this attribute
  787.                  is equivalent to specifying the '+' character at
  788.                  the start of each line of a non-group recipe.
  789.  
  790.      ..UUPPDDAATTEEAALLLL  Indicates that all the targets listed in this
  791.                  rule are updated by the execution of the accom-
  792.                  panying recipe.  A common example is the produc-
  793.                  tion of the _y_._t_a_b_._c and _y_._t_a_b_._h files by yyaacccc
  794.                  when it is run on a grammar.  Specifying
  795.                  .UPDATEALL in such a rule prevents the running
  796.                  of yacc twice, once for the y.tab.c file and
  797.                  once for the y.tab.h file.  .UPDATEALL targets
  798.                  that are specified in a single rule are treated
  799.                  as a single target and all timestamps are
  800.                  updated whenever any target in the set is made.
  801.                  As a side-effect, ddmmaakkee internally sorts such
  802.                  targets in ascending alphabetical order and the
  803.                  value of $@ is always the first target in the
  804.                  sorted set.
  805.  
  806.      All attributes are user setable and except for .UPDATEALL,
  807.      .SETDIR and .MKSARGS may be used in one of two forms.  The
  808.      .MKSARGS attribute is restricted to use as a global attri-
  809.      bute, and the use of the .UPDATEALL and .SETDIR attributes
  810.      is restricted to rules of the second form only.
  811.  
  812.           ATTRIBUTE_LIST : _t_a_r_g_e_t_s
  813.  
  814.      assigns the attributes specified by ATTRIBUTE_LIST to each
  815.      target in _t_a_r_g_e_t_s or
  816.  
  817.           _t_a_r_g_e_t_s ATTRIBUTE_LIST : ...
  818.  
  819.      assigns the attributes specified by ATTRIBUTE_LIST to each
  820.      target in _t_a_r_g_e_t_s_. In the first form if _t_a_r_g_e_t_s is empty
  821.      (ie. a NULL list), then the list of attributes will apply to
  822.      all targets in the makefile (this is equivalent to the com-
  823.      mon Make construct of _"_._I_G_N_O_R_E _:_" but has been modified to
  824.      the notion of an attribute instead of a special target).
  825.      Not all of the attributes have global meaning.  In particu-
  826.      lar, .LIBRARY, .NOSTATE, .PHONY, .SETDIR, .SYMBOL and
  827.      .UPDATEALL have no assigned global meaning.
  828.  
  829.  
  830.  
  831.  
  832. Version 3.9 PL0                 UW                             13
  833.  
  834.  
  835.  
  836.  
  837. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  838.  
  839.  
  840.  
  841.      Any attribute may be used with any target, even with the
  842.      special targets.  Some combinations are useless (e.g.
  843.      .INCLUDE .PRECIOUS: ... ), while others are useful (e.g.
  844.      .INCLUDE .IGNORE : "file.mk" will not complain if file.mk
  845.      cannot be found using the include file search rules, see the
  846.      section on SPECIAL TARGETS for a description of .INCLUDE).
  847.      If a specified attribute will not be used with the special
  848.      target a warning is issued and the attribute is ignored.
  849.  
  850. MMAACCRROOSS
  851.      ddmmaakkee supports six forms of macro assignment.
  852.  
  853.  
  854.      MMAACCRROO == LLIINNEE    This is the most common and familiar form of
  855.                      macro assignment.  It assigns LINE literally
  856.                      as the value of MACRO.  Future expansions of
  857.                      MACRO recursively expand its value.
  858.  
  859.      MMAACCRROO **== LLIINNEE   This form behaves exactly as the simple '='
  860.                      form with the exception that if MACRO
  861.                      already has a value then the assignment is
  862.                      not performed.
  863.  
  864.      MMAACCRROO ::== LLIINNEE   This form differs from the simple '=' form
  865.                      in that it expands LINE prior to assigning
  866.                      it as the value of MACRO.  Future expansions
  867.                      of MACRO do not recursively expand its
  868.                      value.
  869.  
  870.      MMAACCRROO **::== LLIINNEE  This form behaves exactly as the ':=' form
  871.                      with the exception that if MACRO already has
  872.                      a value then the assignment and expansion
  873.                      are not performed.
  874.  
  875.      MMAACCRROO ++== LLIINNEE   This form of macro assignment allows macro
  876.                      values to grow.  It takes the literal value
  877.                      of LINE and appends it to the previous value
  878.                      of MACRO separating the two by a single
  879.                      space.  Future expansions of MACRO recur-
  880.                      sively expand its value.
  881.  
  882.      MMAACCRROO ++::== LLIINNEE  This form is similar to the '+=' form except
  883.                      that the value of LINE is expanded prior to
  884.                      being added to the value of MACRO.
  885.  
  886.      Macro expressions specified on the command line allow the
  887.      macro value to be redefined within the makefile only if the
  888.      macro is defined using the '+=' and '+:=' operators.  Other
  889.      operators will define a macro that cannot be further modi-
  890.      fied.
  891.  
  892.  
  893.  
  894.  
  895.  
  896. Version 3.9 PL0                 UW                             14
  897.  
  898.  
  899.  
  900.  
  901. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  902.  
  903.  
  904.  
  905.      Each of the preceeding macro assignment operators may be
  906.      prefixed by !!  to indicate that the assignment should be
  907.      forced and that no warnings should be issued.  Thus, speci-
  908.      fying !! has the effect of silently forcing the specified
  909.      macro assignment.
  910.  
  911.      When ddmmaakkee defines a non-environment macro it strips leading
  912.      and trailing white space from the macro value.  Macros
  913.      imported from the environment via either the .IMPORT special
  914.      target (see the SPECIAL TARGETS section), or the --ee, or --EE
  915.      flags are an exception to this rule.  Their values are
  916.      always taken literally and white space is never stripped.
  917.      In addition, named macros defined using the .IMPORT special
  918.      target do not have their values expanded when they are used
  919.      within a makefile.  In contrast, environment macros that are
  920.      imported due to the specification of the --ee or --EE flags are
  921.      subject to expansion when used.
  922.  
  923.      To specify a macro expansion enclose the name in () or {}
  924.      and precede it with a dollar sign $.  Thus $(TEST)
  925.      represents an expansion of the macro variable named TEST.
  926.      If TEST is defined then $(TEST) is replaced by its expanded
  927.      value.  If TEST is not defined then $(TEST) expands to the
  928.      NULL string (this is equivalent to defining a macro as
  929.      'TEST=' ).  A short form may be used for single character
  930.      named macros.  In this case the parentheses are optional,
  931.      and $(I) is equivalent to $I.  Macro expansion is recursive,
  932.      hence, if the value string contains an expression represent-
  933.      ing a macro expansion, the expansion is performed.  Circular
  934.      macro expansions are detected and cause an error to be
  935.      issued.
  936.  
  937.      When defining a macro the given macro name is first expanded
  938.      before being used to define the macro.  Thus it is possible
  939.      to define macros whose names depend on values of other mac-
  940.      ros.  For example, suppose CWD is defined as
  941.  
  942.           CWD = $(PWD:b)
  943.  
  944.      then the value of $(CWD) is the name of the current direc-
  945.      tory.  This can be used to define macros specific to this
  946.      directory, for example:
  947.  
  948.           _$(CWD).prt = list of files to print...
  949.  
  950.      The actual name of the defined macro is a function of the
  951.      current directory.  A construct such as this is useful when
  952.      processing a hierarchy of directories using .SETDIR attri-
  953.      buted targets and a collection of small distributed makefile
  954.      stubs.
  955.  
  956.  
  957.  
  958.  
  959.  
  960. Version 3.9 PL0                 UW                             15
  961.  
  962.  
  963.  
  964.  
  965. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  966.  
  967.  
  968.  
  969.      Macro variables may be defined within the makefile, on the
  970.      command line, or imported from the environment.
  971.  
  972.      ddmmaakkee supports several non-standard macro expansions: The
  973.      first is of the form:
  974.  
  975.           _$_(_m_a_c_r_o___n_a_m_e_:_m_o_d_i_f_i_e_r___l_i_s_t_:_m_o_d_i_f_i_e_r___l_i_s_t_:_._._._)
  976.  
  977.      where _m_o_d_i_f_i_e_r___l_i_s_t is chosen from the set { B or b, D or d,
  978.      E or e, F or f, I or i, L or l, S or s, T or t, U or u, ^, +
  979.      } and
  980.  
  981.           b  - file (not including suffix) portion of path names
  982.           d  - directory portion of all path names
  983.           e  - suffix portion of path names
  984.           f  - file (including suffix) portion of path names
  985.           i  - inferred names of targets
  986.           l  - macro value in lower case
  987.           s  - simple pattern substitution
  988.           t  - tokenization.
  989.           u  - macro value in upper case
  990.           ^  - prepend a prefix to each token
  991.           +  - append a suffix to each token
  992.  
  993.      Thus if we have the example:
  994.  
  995.           test = d1/d2/d3/a.out f.out d1/k.out
  996.  
  997.      The following macro expansions produce the values on the
  998.      right of '->' after expansion.
  999.  
  1000.           $(test:d)             -> d1/d2/d3/ d1/
  1001.           $(test:b)             -> a f k
  1002.           $(test:f)             -> a.out f.out k.out
  1003.           ${test:db}            -> d1/d2/d3/a f d1/k
  1004.           ${test:s/out/in/:f}   -> a.in f.in k.in
  1005.           $(test:f:t"+")        -> a.out+f.out+k.out
  1006.           $(test:e)             -> .out .out .out
  1007.           $(test:u)             -> D1/D2/D3/A.OUT F.OUT D1/K.OUT
  1008.  
  1009.      If a token ends in a string composed from the value of the
  1010.      macro DIRBRKSTR (ie. ends in a directory separator string,
  1011.      e.g. '/' in UNIX) and you use the ::dd modifier then the
  1012.      expansion returns the directory name less the final direc-
  1013.      tory separator string.  Thus successive pairs of :d modif-
  1014.      iers each remove a level of directory in the token string.
  1015.  
  1016.      The tokenization modifier takes all white space separated
  1017.      tokens from the macro value and separates them by the quoted
  1018.      separator string.  The separator string may contain the fol-
  1019.      lowing escape codes \a => <bel>, \b => <backspace>, \f =>
  1020.      <formfeed>, \n => <nl>, \r => <cr>, \t => <tab>, \v =>
  1021.  
  1022.  
  1023.  
  1024. Version 3.9 PL0                 UW                             16
  1025.  
  1026.  
  1027.  
  1028.  
  1029. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1030.  
  1031.  
  1032.  
  1033.      <vertical tab>, \" => ", and \xxx => <xxx> where xxx is the
  1034.      octal representation of a character.  Thus the expansion:
  1035.  
  1036.           $(test:f:t"+\n")
  1037.      produces:
  1038.           a.out+
  1039.           f.out+
  1040.           k.out
  1041.  
  1042.      The prefix operator ^^ takes all white space separated tokens
  1043.      from the macro value and prepends _s_t_r_i_n_g to each.
  1044.  
  1045.           $(test:f:^mydir/)
  1046.      produces:
  1047.           mydir/a.out mydir/f.out mydir/k.out
  1048.  
  1049.      The suffix operator ++ takes all white space separated tokens
  1050.      from the macro value and appends _s_t_r_i_n_g to each.
  1051.  
  1052.           $(test:b:+.c)
  1053.      produces:
  1054.           a.c f.c k.c
  1055.  
  1056.      The next non-standard form of macro expansion allows for
  1057.      recursive macros.  It is possible to specify a $(_m_a_c_r_o___n_a_m_e)
  1058.      or ${_m_a_c_r_o___n_a_m_e} expansion where _m_a_c_r_o___n_a_m_e contains more $(
  1059.      ... ) or ${ ... } macro expansions itself.
  1060.  
  1061.      For example $(CC$(_HOST)$(_COMPILER)) will first expand
  1062.      CC$(_HOST)$(_COMPILER) to get a result and use that result
  1063.      as the name of the macro to expand.  This is useful for
  1064.      writing a makefile for more than one target environment.  As
  1065.      an example consider the following hypothetical case. Suppose
  1066.      that _HOST and _COMPILER are imported from the environment
  1067.      and are set to represent the host machine type and the host
  1068.      compiler respectively.
  1069.  
  1070.           CFLAGS_VAX_CC = -c -O     # _HOST == "_VAX", _COMPILER == "_CC"
  1071.           CFLAGS_PC_MSC = -c -ML # _HOST == "_PC",  _COMPILER == "_MSC"
  1072.  
  1073.           # redefine CFLAGS macro as:
  1074.  
  1075.           CFLAGS := $(CFLAGS$(_HOST)$(_COMPILER))
  1076.  
  1077.      This causes CFLAGS to take on a value that corresponds to
  1078.      the environment in which the make is being invoked.
  1079.  
  1080.      The final non-standard macro expansion is of the form:
  1081.  
  1082.           string1{token_list}string2
  1083.  
  1084.  
  1085.  
  1086.  
  1087.  
  1088. Version 3.9 PL0                 UW                             17
  1089.  
  1090.  
  1091.  
  1092.  
  1093. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1094.  
  1095.  
  1096.  
  1097.      where string1, string2 and token_list are expanded.  After
  1098.      expansion, string1 is prepended to each token found in
  1099.      token_list and string2 is appended to each resulting token
  1100.      from the previous prepend.  string1 and string2 are not del-
  1101.      imited by white space whereas the tokens in token_list are.
  1102.      A null token in the token list is specified using "".  Thus
  1103.      using another example we have:
  1104.  
  1105.           test/{f1 f2}.o     --> test/f1.o test/f2.o
  1106.           test/ {f1 f2}.o    --> test/ f1.o f2.o
  1107.           test/{f1 f2} .o    --> test/f1 test/f2 .o
  1108.           test/{"f1"  ""}.o  --> test/f1.o test/.o
  1109.  
  1110.           and
  1111.  
  1112.           test/{d1 d2}/{f1 f2}.o --> test/d1/f1.o test/d1/f2.o
  1113.                                      test/d2/f1.o test/d2/f2.o
  1114.  
  1115.      This last expansion is activated only when the first charac-
  1116.      ters of _t_o_k_e_n___l_i_s_t appear immediately after the opening '{'
  1117.      with no intervening white space.  The reason for this res-
  1118.      triction is the following incompatibility with Bourne Shell
  1119.      recipes.  The line
  1120.  
  1121.           { echo hello;}
  1122.  
  1123.      is valid /bin/sh syntax; while
  1124.  
  1125.           {echo hello;}
  1126.  
  1127.      is not.  Hence the latter triggers the enhanced macro expan-
  1128.      sion while the former causes it to be suppressed.  See the
  1129.      SPECIAL MACROS section for a description of the special mac-
  1130.      ros that ddmmaakkee defines and understands.
  1131.  
  1132. RRUULLEESS AANNDD TTAARRGGEETTSS
  1133.      A makefile contains a series of entries that specify depen-
  1134.      dencies.  Such entries are called _t_a_r_g_e_t_/_p_r_e_r_e_q_u_i_s_i_t_e or
  1135.      _r_u_l_e definitions.  Each rule definition is optionally fol-
  1136.      lowed by a set of lines that provide a recipe for updating
  1137.      any targets defined by the rule.  Whenever ddmmaakkee attempts to
  1138.      bring a target up to date and an explicit recipe is provided
  1139.      with a rule defining the target, that recipe is used to
  1140.      update the target.  A rule definition begins with a line
  1141.      having the following syntax:
  1142.  
  1143.           _<_t_a_r_g_e_t_s_> [_<_a_t_t_r_i_b_u_t_e_s_>] _<_r_u_l_e_o_p_> [_<_p_r_e_r_e_q_u_i_s_i_t_e_s_>] [;_<_r_e_c_i_p_e_>]
  1144.  
  1145.      _t_a_r_g_e_t_s is a non-empty list of targets.  If the target is a
  1146.      special target (see SPECIAL TARGETS section below) then it
  1147.      must appear alone on the rule line.  For example:
  1148.  
  1149.  
  1150.  
  1151.  
  1152. Version 3.9 PL0                 UW                             18
  1153.  
  1154.  
  1155.  
  1156.  
  1157. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1158.  
  1159.  
  1160.  
  1161.           .IMPORT .ERROR : ...
  1162.  
  1163.      is not allowed since both .IMPORT and .ERROR are special
  1164.      targets.  Special targets are not used in the construction
  1165.      of the dependency graph and will not be made.
  1166.  
  1167.      _a_t_t_r_i_b_u_t_e_s is a possibly empty list of attributes.  Any
  1168.      attribute defined in the ATTRIBUTES section above may be
  1169.      specified.  All attributes will be applied to the list of
  1170.      named targets in the rule definition.  No other targets will
  1171.      be affected.
  1172.  
  1173.  
  1174.      NOTE:   As stated earlier, if both the target list and
  1175.              prerequisite list are empty but the attributes list
  1176.              is not, then the specified attributes affect all
  1177.              targets in the makefile.
  1178.  
  1179.  
  1180.      _r_u_l_e_o_p is a separator which is used to identify the targets
  1181.      from the prerequisites.  Optionally it also provides a
  1182.      facility for modifying the way in which ddmmaakkee handles the
  1183.      making of the associated targets.  In its simplest form the
  1184.      operator is a single ':', and need not be separated by white
  1185.      space from its neighboring tokens.  It may additionally be
  1186.      followed by any of the modifiers { !, ^, -, :, | }, where:
  1187.  
  1188.  
  1189.      !!    says execute the recipe for the associated targets once
  1190.           for each out of date prerequisite.  Ordinarily the
  1191.           recipe is executed once for all out of date prere-
  1192.           quisites at the same time.
  1193.  
  1194.      ^^    says to insert the specified prerequisites, if any,
  1195.           before any other prerequisites already associated with
  1196.           the specified targets.  In general, it is not useful to
  1197.           specify ^ with an empty list of prerequisites.
  1198.  
  1199.      --    says to clear the previous list of prerequisites before
  1200.           adding the new prerequisites.  Thus,
  1201.  
  1202.                .SUFFIXES :
  1203.                .SUFFIXES : .a .b
  1204.  
  1205.           can be replaced by
  1206.  
  1207.                .SUFFIXES :- .a .b
  1208.  
  1209.           however the old form still works as expected.  NOTE:
  1210.           .SUFFIXES is ignored by ddmmaakkee it is used here simply as
  1211.           an example.
  1212.  
  1213.  
  1214.  
  1215.  
  1216. Version 3.9 PL0                 UW                             19
  1217.  
  1218.  
  1219.  
  1220.  
  1221. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1222.  
  1223.  
  1224.  
  1225.      ::    When the rule operator is not modified by a second ':'
  1226.           only one set of rules may be specified for making a
  1227.           target.  Multiple definitions may be used to add to the
  1228.           list of prerequisites that a target depends on.  How-
  1229.           ever, if a target is multiply defined only one defini-
  1230.           tion may specify a recipe for making the target.
  1231.  
  1232.           When a target's rule operator is modified by a second
  1233.           ':' (:: for example) then this definition may not be
  1234.           the only definition with a recipe for the target.
  1235.           There may be other :: target definition lines that
  1236.           specify a different set of prerequisites with a dif-
  1237.           ferent recipe for updating the target. Any such target
  1238.           is made if any of the definitions find it to be out of
  1239.           date with respect to the related prerequisites and the
  1240.           corresponding recipe is used to update the target.  By
  1241.           definition all '::' recipes that are found to be out of
  1242.           date for are executed.
  1243.  
  1244.           In the following simple example, each rule has a `::'
  1245.           _r_u_l_e_o_p.  In such an operator we call the first `:' the
  1246.           operator, and the second `:' the modifier.
  1247.  
  1248.           a.o :: a.c b.h
  1249.              first recipe for making a.o
  1250.  
  1251.           a.o :: a.y b.h
  1252.              second recipe for making a.o
  1253.  
  1254.           If a.o is found to be out of date with respect to a.c
  1255.           then the first recipe is used to make a.o.  If it is
  1256.           found out of date with respect to a.y then the second
  1257.           recipe is used.  If a.o is out of date with respect to
  1258.           b.h then both recipes are invoked to make a.o.  In the
  1259.           last case the order of invocation corresponds to the
  1260.           order in which the rule definitions appear in the
  1261.           makefile.
  1262.  
  1263.      ||    Is defined only for PERCENT rule target definitions.
  1264.           When specified it indicates that the following con-
  1265.           struct should be parsed using the old semantinc mean-
  1266.           ing:
  1267.  
  1268.           %.o :| %.c %.r %.f ; some rule
  1269.  
  1270.           is equivalent to:
  1271.  
  1272.           %.o : %.c ; some rule
  1273.           %.o : %.r ; some rule
  1274.           %.o : %.f ; some rule
  1275.  
  1276.  
  1277.  
  1278.  
  1279.  
  1280. Version 3.9 PL0                 UW                             20
  1281.  
  1282.  
  1283.  
  1284.  
  1285. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1286.  
  1287.  
  1288.  
  1289.      Targets defined using a single `:' operator with a recipe
  1290.      may be redefined again with a new recipe by using a `:'
  1291.      operator with a `:' modifier.  This is equivalent to a tar-
  1292.      get having been initially defined with a rule using a `:'
  1293.      modifier.  Once a target is defined using a `:' modifier it
  1294.      may not be defined again with a recipe using only the `:'
  1295.      operator with no `:' modifier.  In both cases the use of a
  1296.      `:' modifier creates a new list of prerequisites and makes
  1297.      it the current prerequisite list for the target.  The `:'
  1298.      operator with no recipe always modifies the current list of
  1299.      prerequisites.  Thus assuming each of the following defini-
  1300.      tions has a recipe attached, then:
  1301.  
  1302.           joe :  fred ...     (1)
  1303.           joe :: more ...     (2)
  1304.  
  1305.           and
  1306.  
  1307.           joe :: fred ...     (3)
  1308.           joe :: more ...     (4)
  1309.  
  1310.      are legal and mean:  add the recipe associated with (2), or
  1311.      (4) to the set of recipes for joe, placing them after exist-
  1312.      ing recipes for making joe.  The constructs:
  1313.  
  1314.           joe :: fred ...     (5)
  1315.           joe : more ... (6)
  1316.  
  1317.           and
  1318.  
  1319.           joe : fred ... (7)
  1320.           joe : more ... (8)
  1321.  
  1322.      are errors since we have two sets of perfectly good recipes
  1323.      for making the target.
  1324.  
  1325.      _p_r_e_r_e_q_u_i_s_i_t_e_s is a possibly empty list of targets that must
  1326.      be brought up to date before making the current target.
  1327.  
  1328.      _r_e_c_i_p_e is a short form and allows the user to specify short
  1329.      rule definitions on a single line.  It is taken to be the
  1330.      first recipe line in a larger recipe if additional lines
  1331.      follow the rule definition.  If the semi-colon is present
  1332.      but the recipe line is empty (ie. null string) then it is
  1333.      taken to be an empty rule.  Any target so defined causes the
  1334.      _D_o_n_'_t _k_n_o_w _h_o_w _t_o _m_a_k_e _._._. error message to be suppressed
  1335.      when ddmmaakkee tries to make the target and fails.  This silence
  1336.      is maintained for rules that are terminated by a semicolon
  1337.      and have no following recipe lines, for targets listed on
  1338.      the command line, for the first target found in the
  1339.      makefile, and for any target having no recipe but containing
  1340.      a list of prerequisites (see the COMPATIBILITY section for
  1341.  
  1342.  
  1343.  
  1344. Version 3.9 PL0                 UW                             21
  1345.  
  1346.  
  1347.  
  1348.  
  1349. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1350.  
  1351.  
  1352.  
  1353.      an exception to this rule if the AUGMAKE (--AA) flag was
  1354.      specified.
  1355.  
  1356. RREECCIIPPEESS
  1357.      The traditional format used by most versions of Make defines
  1358.      the recipe lines as arbitrary strings that may contain macro
  1359.      expansions.  They follow a rule definition line and may be
  1360.      spaced apart by comment or blank lines.  The list of recipe
  1361.      lines defining the recipe is terminated by a new target
  1362.      definition, a macro definition, or end-of-file.  Each recipe
  1363.      line MMUUSSTT begin with a <<TTAABB>> character which may optionally
  1364.      be followed with one or all of the characters _'_@_%_+_-_'.  The
  1365.      _'_-_' indicates that non-zero exit values (ie. errors) are to
  1366.      be ignored when this recipe line is executed, the _'_+_' indi-
  1367.      cates that the current recipe line is to be executed using
  1368.      the shell, the _'_%_' indicates that ddmmaakkee should swap itself
  1369.      out to secondary storage (MSDOS only) before running the
  1370.      recipe and the _'_@_' indicates that the recipe line should NOT
  1371.      be echoed to the terminal prior to being executed.  Each
  1372.      switch is off by default (ie. by default, errors are signi-
  1373.      ficant, commands are echoed, no swapping is done and a shell
  1374.      is used only if the recipe line contains a character found
  1375.      in the value of the SHELLMETAS macro).  Global settings
  1376.      activated via command line options or special attribute or
  1377.      target names may also affect these settings.  An example
  1378.      recipe:
  1379.  
  1380.           target :
  1381.                first recipe line
  1382.                second recipe line, executed independently of the first.
  1383.                @a recipe line that is not echoed
  1384.                -and one that has errors ignored
  1385.                %and one that causes dmake to swap out
  1386.                +and one that is executed using a shell.
  1387.  
  1388.      The second and new format of the recipe block begins the
  1389.      block with the character '[' (the open group character) in
  1390.      the last non-white space position of a line, and terminates
  1391.      the block with the character ']' (the close group character)
  1392.      in the first non-white space position of a line.  In this
  1393.      form each recipe line need not have a leading TAB.  This is
  1394.      called a recipe group.  Groups so defined are fed intact as
  1395.      a single unit to a shell for execution whenever the
  1396.      corresponding target needs to be updated.  If the open group
  1397.      character '[' is preceded by one or all of -, @ or % then
  1398.      they apply to the entire group in the same way that they
  1399.      apply to single recipe lines.  You may also specify '+' but
  1400.      it is redundant as a shell is already being used to run the
  1401.      recipe.  See the MAKING TARGETS section for a description of
  1402.      how ddmmaakkee invokes recipes.  Here is an example of a group
  1403.      recipe:
  1404.  
  1405.  
  1406.  
  1407.  
  1408. Version 3.9 PL0                 UW                             22
  1409.  
  1410.  
  1411.  
  1412.  
  1413. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1414.  
  1415.  
  1416.  
  1417.           target :
  1418.           [
  1419.                first recipe line
  1420.                second recipe line
  1421.                all of these recipe lines are fed to a
  1422.                single copy of a shell for execution.
  1423.           ]
  1424.  
  1425.  
  1426. TTEEXXTT DDIIVVEERRSSIIOONNSS
  1427.      ddmmaakkee supports the notion of text diversions.  If a recipe
  1428.      line contains the macro expression
  1429.  
  1430.           $(mktmp[,[_f_i_l_e][,_t_e_x_t]] _d_a_t_a)
  1431.  
  1432.      then all text contained in the _d_a_t_a expression is expanded
  1433.      and is written to a temporary file.  The return value of the
  1434.      macro is the name of the temporary file.
  1435.  
  1436.      _d_a_t_a can be any text and must be separated from the 'mktmp'
  1437.      portion of the macro name by white-space.  The only restric-
  1438.      tion on the data text is that it must contain a balanced
  1439.      number of parentheses of the same kind as are used to ini-
  1440.      tiate the $(mktmp ...) expression.  For example:
  1441.  
  1442.           $(mktmp $(XXX))
  1443.  
  1444.      is legal and works as expected, but:
  1445.  
  1446.           $(mktmp text (to dump to file)
  1447.  
  1448.      is not legal.  You can achieve what you wish by either
  1449.      defining a macro that expands to '(' or by using {} in the
  1450.      macro expression; like this:
  1451.  
  1452.           ${mktmp text (to dump to file}
  1453.  
  1454.      Since the temporary file is opened when the macro containing
  1455.      the text diversion expression is expanded, diversions may be
  1456.      nested and any diversions that are created as part of ':='
  1457.      macro expansions persist for the duration of the ddmmaakkee run.
  1458.      The diversion text may contain the same escape codes as
  1459.      those described in the MACROS section.  Thus if the _d_a_t_a
  1460.      text is to contain new lines they must be inserted using the
  1461.      \n escape sequence.  For example the expression:
  1462.  
  1463.           all:
  1464.                cat $(mktmp this is a\n\
  1465.                test of the text diversion\n)
  1466.  
  1467.      is replaced by:
  1468.  
  1469.  
  1470.  
  1471.  
  1472. Version 3.9 PL0                 UW                             23
  1473.  
  1474.  
  1475.  
  1476.  
  1477. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1478.  
  1479.  
  1480.  
  1481.           cat /tmp/mk12294AA
  1482.  
  1483.      where the temporary file contains two lines both of which
  1484.      are terminated by a new-line.  If the _d_a_t_a text spans multi-
  1485.      ple lines in the makefile then each line must be continued
  1486.      via the use of a \.  A second more illustrative example gen-
  1487.      erates a response file to an MSDOS link command:
  1488.  
  1489.           OBJ = fred.obj mary.obj joe.obj
  1490.           all : $(OBJ)
  1491.                link @$(mktmp $(^:t"+\n")\n)
  1492.  
  1493.      The result of making `all' in the second example is the com-
  1494.      mand:
  1495.  
  1496.           link @/tmp/mk02394AA
  1497.  
  1498.      where the temporary file contains:
  1499.  
  1500.           fred.obj+
  1501.           mary.obj+
  1502.           joe.obj
  1503.  
  1504.      The last line of the file is terminated by a new-line which
  1505.      is inserted due to the \n found at the end of the _d_a_t_a
  1506.      string.
  1507.  
  1508.      If the optional _f_i_l_e specifier is present then its expanded
  1509.      value is the name of the temporary file to create.  Whenever
  1510.      a $(mktmp ...) macro is expanded the macro $(TMPFILE) is set
  1511.      to a new temporary file name.  Thus the construct:
  1512.  
  1513.           $(mktmp,$(TMPFILE) data)
  1514.  
  1515.      is completely equivalent to not specifying the $(TMPFILE)
  1516.      optional argument.  Another example that would be useful for
  1517.      MSDOS users with a Turbo-C compiler
  1518.  
  1519.           $(mktmp,turboc.cfg $(CFLAGS))
  1520.  
  1521.      will place the contents of CFLAGS into a local _t_u_r_b_o_c_._c_f_g
  1522.      file.  The second optional argument, _t_e_x_t, if present alters
  1523.      the name of the value returned by the $(mktmp ...) macro.
  1524.  
  1525.      Under MS-DOS text diversions may be a problem.  Many DOS
  1526.      tools require that path names which contain directories use
  1527.      the \ character to delimit the directories.  Some users how-
  1528.      ever wish to use the '/' to delimit pathnames and use
  1529.      environments that allow them to do so.  The macro USESHELL
  1530.      is set to "yes" if the current recipe is forced to use a
  1531.      shell via the .USESHELL or '+' directives, otherwise its
  1532.      value is "no".  The ddmmaakkee startup files define the macro
  1533.  
  1534.  
  1535.  
  1536. Version 3.9 PL0                 UW                             24
  1537.  
  1538.  
  1539.  
  1540.  
  1541. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1542.  
  1543.  
  1544.  
  1545.      DIVFILE whose value is either the value of TMPFILE or the
  1546.      value of TMPFILE edited to replace any '/' characters to the
  1547.      appropriate value based on the current shell and whether it
  1548.      will be used to execute the recipe.
  1549.  
  1550.      Previous versions of ddmmaakkee defined text diversions using <+,
  1551.      +> strings, where <+ started a text diversion and +> ter-
  1552.      minated one.  ddmmaakkee is backward compatible with this con-
  1553.      struct only if the <+ and +> appear literally on the same
  1554.      recipe line or in the same macro value string.  In such
  1555.      instances the expression:
  1556.  
  1557.           <+data+>
  1558.  
  1559.      is mapped to:
  1560.  
  1561.           $(mktmp data)
  1562.  
  1563.      which is fully output compatible with the earlier construct.
  1564.      <+, +> constructs whose text spans multiple lines must be
  1565.      converted by hand to use $(mktmp ...).
  1566.  
  1567.      If the environment variable TMPDIR is defined then the tem-
  1568.      porary file is placed into the directory specified by that
  1569.      variable.  A makefile can modify the location of temporary
  1570.      files by defining a macro named TMPDIR and exporting it
  1571.      using the .EXPORT special target.
  1572.  
  1573. SSPPEECCIIAALL TTAARRGGEETTSS
  1574.      This section describes the special targets that are recog-
  1575.      nized by ddmmaakkee.  Some are affected by attributes and others
  1576.      are not.
  1577.  
  1578.      ..EERRRROORR        If defined then the recipe associated with
  1579.                    this target is executed whenever an error con-
  1580.                    dition is detected by ddmmaakkee.  All attributes
  1581.                    that can be used with any other target may be
  1582.                    used with this target.  Any prerequisites of
  1583.                    this target will be brought up to date during
  1584.                    its processing.  NOTE:  errors will be ignored
  1585.                    while making this target, in extreme cases
  1586.                    this may cause some problems.
  1587.  
  1588.      ..EEXXIITT         If this target is encountered while parsing a
  1589.                    makefile then the parsing of the makefile is
  1590.                    immediately terminated at that point.
  1591.  
  1592.      ..EEXXPPOORRTT       All prerequisites associated with this target
  1593.                    are assumed to correspond to macro names and
  1594.                    they and their values are exported to the
  1595.                    environment as environment strings at the
  1596.                    point in the makefile at which this target
  1597.  
  1598.  
  1599.  
  1600. Version 3.9 PL0                 UW                             25
  1601.  
  1602.  
  1603.  
  1604.  
  1605. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1606.  
  1607.  
  1608.  
  1609.                    appears.  Any attributes specified with this
  1610.                    target are ignored.  Only macros which have
  1611.                    been assigned a value in the makefile prior to
  1612.                    the export directive are exported, macros as
  1613.                    yet undefined or macros whose value contains
  1614.                    any of the characters "+=:*" are not exported.
  1615.                    is suppre
  1616.  
  1617.      ..IIMMPPOORRTT       Prerequisite names specified for this target
  1618.                    are searched for in the environment and
  1619.                    defined as macros with their value taken from
  1620.                    the environment.  If the special name ..EEVVEERRYY----
  1621.                    TTHHIINNGG is used as a prerequisite name then all
  1622.                    environment variables defined in the environ-
  1623.                    ment are imported.  The functionality of the
  1624.                    --EE flag can be forced by placing the construct
  1625.                    _._I_M_P_O_R_T _: _._E_V_E_R_Y_T_H_I_N_G at the start of a
  1626.                    makefile.  Similarly, by placing the construct
  1627.                    at the end, one can emulate the effect of the
  1628.                    --ee command line flag.  If a prerequisite name
  1629.                    cannot be found in the environment an error
  1630.                    message is issued.  .IMPORT accepts the
  1631.                    .IGNORE attribute.  When given, it causes
  1632.                    ddmmaakkee to ignore the above error.  See the MAC-
  1633.                    ROS section for a description of the process-
  1634.                    ing of imported macro values.
  1635.  
  1636.      ..IINNCCLLUUDDEE      Parse another makefile just as if it had been
  1637.                    located at the point of the .INCLUDE in the
  1638.                    current makefile.  The list of prerequisites
  1639.                    gives the list of makefiles to try to read.
  1640.                    If the list contains multiple makefiles then
  1641.                    they are read in order from left to right.
  1642.                    The following search rules are used when try-
  1643.                    ing to locate the file.  If the filename is
  1644.                    surrounded by " or just by itself then it is
  1645.                    searched for in the current directory.  If it
  1646.                    is not found it is then searched for in each
  1647.                    of the directories specified as prerequisites
  1648.                    of the .INCLUDEDIRS special target.  If the
  1649.                    file name is surrounded by < and >, (ie.
  1650.                    <my_spiffy_new_makefile>) then it is searched
  1651.                    for only in the directories given by the
  1652.                    .INCLUDEDIRS special target.  In both cases if
  1653.                    the file name is a fully qualified name start-
  1654.                    ing at the root of the file system then it is
  1655.                    only searched for once, and the .INCLUDEDIRS
  1656.                    list is ignored.  .INCLUDE accepts the .IGNORE
  1657.                    and .SETDIR attributes.  If .IGNORE attribute
  1658.                    is given and the file cannot be found then
  1659.                    ddmmaakkee continues processing, otherwise an error
  1660.                    message is generated.  The .SETDIR attribute
  1661.  
  1662.  
  1663.  
  1664. Version 3.9 PL0                 UW                             26
  1665.  
  1666.  
  1667.  
  1668.  
  1669. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1670.  
  1671.  
  1672.  
  1673.                    causes ddmmaakkee to change directories to the
  1674.                    specified directory prior to attempting the
  1675.                    include operation.  If all fails ddmmaakkee
  1676.                    attempts to _m_a_k_e the file to be included.  If
  1677.                    making the file fails then ddmmaakkee terminates
  1678.                    unless the .INCLUDE directive also specified
  1679.                    the .IGNORE attribute.  If .FIRST is specified
  1680.                    along with .INCLUDE then ddmmaakkee attempts to
  1681.                    include each named prerequisite and will ter-
  1682.                    minate the inclusion with the first prere-
  1683.                    quisite that results in a successful inclu-
  1684.                    sion.
  1685.  
  1686.      ..IINNCCLLUUDDEEDDIIRRSS  The list of prerequisites specified for this
  1687.                    target defines the set of directories to
  1688.                    search when trying to include a makefile.
  1689.  
  1690.      ..KKEEEEPP__SSTTAATTEE   This special target is a synonym for the macro
  1691.                    definition
  1692.  
  1693.                         .KEEP_STATE := _state.mk
  1694.  
  1695.                    It's effect is to turn on STATE keeping and to
  1696.                    define ___s_t_a_t_e_._m_k as the state file.
  1697.  
  1698.      ..MMAAKKEEFFIILLEESS    The list of prerequisites is the set of files
  1699.                    to try to read as the default makefile.  By
  1700.                    default this target is defined as:
  1701.  
  1702.                         .MAKEFILES : makefile.mk Makefile
  1703.                    makefile
  1704.  
  1705.  
  1706.      ..SSOOUURRCCEE       The prerequisite list of this target defines a
  1707.                    set of directories to check when trying to
  1708.                    locate a target file name.  See the section on
  1709.                    BINDING of targets for more information.
  1710.  
  1711.      ..SSOOUURRCCEE..ssuuffff  The same as .SOURCE, except that the
  1712.                    .SOURCE.suff list is searched first when try-
  1713.                    ing to locate a file matching the a target
  1714.                    whose name ends in the suffix .suff.
  1715.  
  1716.      ..RREEMMOOVVEE       The recipe of this target is used whenever
  1717.                    ddmmaakkee needs to remove intermediate targets
  1718.                    that were made but do not need to be kept
  1719.                    around.  Such targets result from the applica-
  1720.                    tion of transitive closure on the dependency
  1721.                    graph.
  1722.  
  1723.      In addition to the special targets above, several other
  1724.      forms of targets are recognized and are considered special,
  1725.  
  1726.  
  1727.  
  1728. Version 3.9 PL0                 UW                             27
  1729.  
  1730.  
  1731.  
  1732.  
  1733. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1734.  
  1735.  
  1736.  
  1737.      their exact form and use is defined in the sections that
  1738.      follow.
  1739.  
  1740. SSPPEECCIIAALL MMAACCRROOSS
  1741.      ddmmaakkee defines a number of special macros.  They are divided
  1742.      into three classes: control macros, run-time macros, and
  1743.      function macros.  The control macros are used by ddmmaakkee to
  1744.      configure its actions, and are the preferred method of doing
  1745.      so.  In the case when a control macro has the same function
  1746.      as a special target or attribute they share the same name as
  1747.      the special target or attribute.  The run-time macros are
  1748.      defined when ddmmaakkee makes targets and may be used by the user
  1749.      inside recipes.  The function macros provide higher level
  1750.      functions dealing with macro expansion and diversion file
  1751.      processing.
  1752.  
  1753. CCOONNTTRROOLL MMAACCRROOSS
  1754.      To use the control macros simply assign them a value just
  1755.      like any other macro.  The control macros are divided into
  1756.      three groups: string valued macros, character valued macros,
  1757.      and boolean valued macros.
  1758.  
  1759.      The following are all of the string valued macros.  This
  1760.      list is divided into two groups.  The first group gives the
  1761.      string valued macros that are defined internally and cannot
  1762.      be directly set by the user.
  1763.  
  1764.      IINNCCDDEEPPTTHH        This macro's value is a string of digits
  1765.                      representing the current depth of makefile
  1766.                      inclusion.  In the first makefile level this
  1767.                      value is zero.
  1768.  
  1769.      MMFFLLAAGGSS          Is the list of flags that were given on the
  1770.                      command line including a leading switch
  1771.                      character.  The -f flag is not included in
  1772.                      this list.
  1773.  
  1774.      MMAAKKEECCMMDD         Is the name with which ddmmaakkee was invoked.
  1775.  
  1776.      MMAAKKEEDDIIRR         Is the full path to the initial directory in
  1777.                      which ddmmaakkee was invoked.
  1778.  
  1779.      MMAAKKEEFFIILLEE        Contains the string "-f _m_a_k_e_f_i_l_e" where,
  1780.                      _m_a_k_e_f_i_l_e is the name of initial user
  1781.                      makefile that was first read.
  1782.  
  1783.      MMAAKKEEFFLLAAGGSS       Is the same as $(MFLAGS) but has no leading
  1784.                      switch character. (ie. MFLAGS =
  1785.                      -$(MAKEFLAGS))
  1786.  
  1787.      MMAAKKEEMMAACCRROOSS      Contains the complete list of macro expres-
  1788.                      sions that were specified on the command
  1789.  
  1790.  
  1791.  
  1792. Version 3.9 PL0                 UW                             28
  1793.  
  1794.  
  1795.  
  1796.  
  1797. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1798.  
  1799.  
  1800.  
  1801.                      line.
  1802.  
  1803.      MMAAKKEETTAARRGGEETTSS     Contains the name(s) of the target(s), if
  1804.                      any, that were specified on the command
  1805.                      line.
  1806.  
  1807.      MMAAXXPPRROOCCEESSSSLLIIMMIITT Is a numeric string representing the maximum
  1808.                      number of processes that ddmmaakkee can use when
  1809.                      making targets using parallel mode.
  1810.  
  1811.      NNUULLLL            Is permanently defined to be the NULL
  1812.                      string.  This is useful when comparing a
  1813.                      conditional expression to an NULL value.
  1814.  
  1815.      PPWWDD             Is the full path to the current directory in
  1816.                      which make is executing.
  1817.  
  1818.      TTMMPPFFIILLEE         Is set to the name of the most recent tem-
  1819.                      porary file opened by ddmmaakkee.  Temporary
  1820.                      files are used for text diversions and for
  1821.                      group recipe processing.
  1822.  
  1823.      TTMMDD             Stands for "To Make Dir", and is the path
  1824.                      from the present directory (value of $(PWD))
  1825.                      to the directory that ddmmaakkee was started up
  1826.                      in (value of $(MAKEDIR)).  This macro is
  1827.                      modified when .SETDIR attributes are pro-
  1828.                      cessed.
  1829.  
  1830.      UUSSEESSHHEELLLL        The value of this macro is set to "yes" if
  1831.                      the current recipe is forced to use a shell
  1832.                      for its execution via the .USESHELL or '+'
  1833.                      directives, its value is "no" otherwise.
  1834.  
  1835.  
  1836.      The second group of string valued macros control ddmmaakkee
  1837.      behavior and may be set by the user.
  1838.  
  1839.      ..DDIIRRCCAACCHHEE       If set to "yes" enables the directory cache
  1840.                      (this is the default).  If set to "no" dis-
  1841.                      ables the directory cache (equivalent to -d
  1842.                      commandline flag).
  1843.  
  1844.      ..NNAAMMEEMMAAXX        Defines the maximum length of a filename
  1845.                      component.  The value of the variable is
  1846.                      initialized at startup to the value of the
  1847.                      compiled macro NAME_MAX.  On some systems
  1848.                      the value of NAME_MAX is too short by
  1849.                      default.  Setting a new value for .NAMEMAX
  1850.                      will override the compiled value.
  1851.  
  1852.  
  1853.  
  1854.  
  1855.  
  1856. Version 3.9 PL0                 UW                             29
  1857.  
  1858.  
  1859.  
  1860.  
  1861. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1862.  
  1863.  
  1864.  
  1865.      ..NNOOTTAABBSS         When set to non-NULL enables the use of
  1866.                      spaces as well as <tabs> to begin recipe
  1867.                      lines.  By default a non-group recipe is
  1868.                      terminated by a line without any leading
  1869.                      white-space or by a line not beggining with
  1870.                      a <tab> character.  Enabling this mode modi-
  1871.                      fies the first condition of the above termi-
  1872.                      nation rule to terminate a non-group recipe
  1873.                      with a line that contains only white-space.
  1874.                      This mode does not effect the parsing of
  1875.                      group recipes bracketed by [].
  1876.  
  1877.      AAUUGGMMAAKKEE         If set to a non NULL value will enable the
  1878.                      transformation of special meta targets to
  1879.                      support special AUGMAKE inferences (See the
  1880.                      COMPATIBILITY section).
  1881.  
  1882.      DDIIRRBBRRKKSSTTRR       Contains the string of chars used to ter-
  1883.                      minate the name of a directory in a path-
  1884.                      name.  Under UNIX its value is "/", under
  1885.                      MSDOS its value is "/\:".
  1886.  
  1887.      DDIIRRSSEEPPSSTTRR       Contains the string that is used to separate
  1888.                      directory components when path names are
  1889.                      constructed.  It is defined with a default
  1890.                      value at startup.
  1891.  
  1892.      DDIIVVFFIILLEE         Is defined in the startup file and gives the
  1893.                      name that should be returned for the diver-
  1894.                      sion file name when used in $(mktmp ...)
  1895.                      expansions, see the TEXT DIVERSION section
  1896.                      for details.
  1897.  
  1898.      DDYYNNAAMMIICCNNEESSTTIINNGGLLEEVVEELL
  1899.                      Specifies the maximum number of recursive
  1900.                      dynamic macro expansions.  Its initial value
  1901.                      is 100.
  1902.  
  1903.      ..KKEEEEPP__SSTTAATTEE     Assigning this macro a value tells ddmmaakkee the
  1904.                      name of the state file to use and turns on
  1905.                      the keeping of state information for any
  1906.                      targets that are brought up to date by the
  1907.                      make.
  1908.  
  1909.      GGRROOUUPPFFLLAAGGSS      This macro gives the set of flags to pass to
  1910.                      the shell when invoking it to execute a
  1911.                      group recipe.  The value of the macro is the
  1912.                      list of flags with a leading switch indica-
  1913.                      tor.  (ie. `-' under UNIX)
  1914.  
  1915.      GGRROOUUPPSSHHEELLLL      This macro defines the full path to the exe-
  1916.                      cutable image to be used as the shell when
  1917.  
  1918.  
  1919.  
  1920. Version 3.9 PL0                 UW                             30
  1921.  
  1922.  
  1923.  
  1924.  
  1925. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1926.  
  1927.  
  1928.  
  1929.                      processing group recipes.  This macro must
  1930.                      be defined if group recipes are used.  It is
  1931.                      assigned a default value in the startup
  1932.                      makefile.  Under UNIX this value is /bin/sh.
  1933.  
  1934.      GGRROOUUPPSSUUFFFFIIXX     If defined, this macro gives the string to
  1935.                      use as a suffix when creating group recipe
  1936.                      files to be handed to the command inter-
  1937.                      preter.  For example, if it is defined as
  1938.                      .sh, then all temporary files created by
  1939.                      ddmmaakkee will end in the suffix .sh.  Under
  1940.                      MSDOS if you are using command.com as your
  1941.                      GROUPSHELL, then this suffix must be set to
  1942.                      .bat in order for group recipes to function
  1943.                      correctly.  The setting of GROUPSUFFIX and
  1944.                      GROUPSHELL is done automatically for
  1945.                      command.com in the startup.mk files.
  1946.  
  1947.      MMAAKKEE            Is defined in the startup file by default.
  1948.                      The string $(MAKE) is recognized when using
  1949.                      the -n option for single line recipes.  Ini-
  1950.                      tially this macro is defined to have the
  1951.                      value "$(MAKECMD) $(MFLAGS)".
  1952.  
  1953.      MMAAKKEESSTTAARRTTUUPP     This macro defines the full path to the ini-
  1954.                      tial startup makefile.  Use the --VV command
  1955.                      line option to discover its initial value.
  1956.  
  1957.      MMAAXXLLIINNEELLEENNGGTTHH   This macro defines the maximum size of a
  1958.                      single line of makefile input text.  The
  1959.                      size is specified as a number, the default
  1960.                      value is defined internally and is shown via
  1961.                      the --VV option.  A buffer of this size plus 2
  1962.                      is allocated for reading makefile text.  The
  1963.                      buffer is freed before any targets are made,
  1964.                      thereby allowing files containing long input
  1965.                      lines to be processed without consuming
  1966.                      memory during the actual make.  This macro
  1967.                      can only be used to extend the line length
  1968.                      beyond it's default minimum value.
  1969.  
  1970.      MMAAXXPPRROOCCEESSSS      Specify the maximum number of child
  1971.                      processes to use when making targets.  The
  1972.                      default value of this macro is "1" and its
  1973.                      value cannot exceed the value of the macro
  1974.                      MAXPROCESSLIMIT.  Setting the value of MAX-
  1975.                      PROCESS on the command line or in the
  1976.                      makefile is equivalent to supplying a
  1977.                      corresponding value to the -P flag on the
  1978.                      command line.
  1979.  
  1980.  
  1981.  
  1982.  
  1983.  
  1984. Version 3.9 PL0                 UW                             31
  1985.  
  1986.  
  1987.  
  1988.  
  1989. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  1990.  
  1991.  
  1992.  
  1993.      PPRREEPP            This macro defines the number of iterations
  1994.                      to be expanded automatically when processing
  1995.                      % rule definitions of the form:
  1996.  
  1997.                      % : %.suff
  1998.  
  1999.                      See the sections on PERCENT(%) RULES for
  2000.                      details on how PREP is used.
  2001.  
  2002.      SSHHEELLLL           This macro defines the full path to the exe-
  2003.                      cutable image to be used as the shell when
  2004.                      processing single line recipes.  This macro
  2005.                      must be defined if recipes requiring the
  2006.                      shell for execution are to be used.  It is
  2007.                      assigned a default value in the startup
  2008.                      makefile.  Under UNIX this value is /bin/sh.
  2009.  
  2010.      SSHHEELLLLFFLLAAGGSS      This macro gives the set of flags to pass to
  2011.                      the shell when invoking it to execute a sin-
  2012.                      gle line recipe.  The value of the macro is
  2013.                      the list of flags with a leading switch
  2014.                      indicator.  (ie. `-' under UNIX)
  2015.  
  2016.      SSHHEELLLLMMEETTAASS      Each time ddmmaakkee executes a single recipe
  2017.                      line (not a group recipe) the line is
  2018.                      searched for any occurrence of a character
  2019.                      defined in the value of SHELLMETAS.  If such
  2020.                      a character is found the recipe line is
  2021.                      defined to require a shell to ensure its
  2022.                      correct execution.  In such instances a
  2023.                      shell is used to invoke the recipe line.  If
  2024.                      no match is found the recipe line is exe-
  2025.                      cuted without the use of a shell.
  2026.  
  2027.  
  2028.      There is only one character valued macro defined by ddmmaakkee:
  2029.      SSWWIITTCCHHAARR contains the switch character used to introduce
  2030.      options on command lines.  For UNIX its value is `-', and
  2031.      for MSDOS its value may be `/' or `-'.  The macro is inter-
  2032.      nally defined and is not user setable.  The MSDOS version of
  2033.      ddmmaakkee attempts to first extract SWITCHAR from an environment
  2034.      variable of the same name.  If that fails it then attempts
  2035.      to use the undocumented getswitchar system call, and returns
  2036.      the result of that.  Under MSDOS version 4.0 you must set
  2037.      the value of the environment macro SWITCHAR to '/' to obtain
  2038.      predictable behavior.
  2039.  
  2040.      All boolean macros currently understood by ddmmaakkee correspond
  2041.      directly to the previously defined attributes.  These macros
  2042.      provide a second way to apply global attributes, and
  2043.      represent the preferred method of doing so.  They are used
  2044.      by assigning them a value.  If the value is not a NULL
  2045.  
  2046.  
  2047.  
  2048. Version 3.9 PL0                 UW                             32
  2049.  
  2050.  
  2051.  
  2052.  
  2053. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2054.  
  2055.  
  2056.  
  2057.      string then the boolean condition is set to on.  If the
  2058.      value is a NULL string then the condition is set to off.
  2059.      There are five conditions defined and they correspond
  2060.      directly to the attributes of the same name.  Their meanings
  2061.      are defined in the ATTRIBUTES section above.  The macros
  2062.      are: ..EEPPIILLOOGG, ..IIGGNNOORREE, ..MMKKSSAARRGGSS, ..NNOOIINNFFEERR, ..PPRREECCIIOOUUSS, ..PPRROO----
  2063.      LLOOGG, ..SSEEQQUUEENNTTIIAALL, ..SSIILLEENNTT, ..SSWWAAPP, and ..UUSSEESSHHEELLLL.  Assigning
  2064.      any of these a non NULL value will globally set the
  2065.      corresponding attribute to on.
  2066.  
  2067. RRUUNN__TTIIMMEE MMAACCRROOSS
  2068.      These macros are defined when ddmmaakkee is making targets, and
  2069.      may take on different values for each target.  $$@@ is defined
  2070.      to be the full target name, $$?? is the list of all out of
  2071.      date prerequisites, $$&& is the list of all prerequisites, $$>>
  2072.      is the name of the library if the current target is a
  2073.      library member, and $$<< is the list of prerequisites speci-
  2074.      fied in the current rule.  If the current target had a
  2075.      recipe inferred then $$<< is the name of the inferred prere-
  2076.      quisite even if the target had a list of prerequisites sup-
  2077.      plied using an explicit rule that did not provide a recipe.
  2078.      In such situations $$&& gives the full list of prerequisites.
  2079.  
  2080.      $$** is defined as $$((@@::ddbb)) when making targets with explicit
  2081.      recipes and is defined as the value of % when making targets
  2082.      whose recipe is the result of an inference.  In the first
  2083.      case $$** is the target name with no suffix, and in the second
  2084.      case, is the value of the matched % pattern from the associ-
  2085.      ated %-rule.  $$^^ expands to the set of out of date prere-
  2086.      quisites taken from the current value of $$<<.  In addition to
  2087.      these, $$$$ expands to $, {{{{ expands to {, }}}} expands to },
  2088.      and the strings <<++ and ++>> are recognized as respectively
  2089.      starting and terminating a text diversion when they appear
  2090.      literally together in the same input line.
  2091.  
  2092.      The difference between $? and $^ can best be illustrated by
  2093.      an example, consider:
  2094.  
  2095.           fred.out : joe amy hello
  2096.                rules for making fred
  2097.  
  2098.           fred.out : my.c your.h his.h her.h   # more prerequisites
  2099.  
  2100.      Assume joe, amy, and my.c are newer then fred.out.  When
  2101.      ddmmaakkee executes the recipe for making fred.out the values of
  2102.      the following macros will be:
  2103.  
  2104.           $@ --> fred.out
  2105.           $* --> fred
  2106.           $? --> joe amy my.c  # note the difference between $? and $^
  2107.           $^ --> joe amy
  2108.           $< --> joe amy hello
  2109.  
  2110.  
  2111.  
  2112. Version 3.9 PL0                 UW                             33
  2113.  
  2114.  
  2115.  
  2116.  
  2117. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2118.  
  2119.  
  2120.  
  2121.           $& --> joe amy hello my.c your.h his.h her.h
  2122.  
  2123.  
  2124. FFUUNNCCTTIIOONN MMAACCRROOSS
  2125.      ddmmaakkee supports a full set of functional macros.  One of
  2126.      these, the $(mktmp ...) macro, is discussed in detail in the
  2127.      TEXT DIVERSION section and is not covered here.
  2128.  
  2129.  
  2130.           $(aassssiiggnn eexxpprreessssiioonn)
  2131.                Causes _e_x_p_r_e_s_s_i_o_n to be parsed as a macro assign-
  2132.                ment expression and results in the specified
  2133.                assignment being made.  An error is issued if the
  2134.                assignment is not syntatically correct.  _e_x_p_r_e_s_-
  2135.                _s_i_o_n may contain white space.  This is in effect a
  2136.                dynamic macro assignment facility and may appear
  2137.                anywhere any other macro may appear.  The result
  2138.                of the expanding a dynamic macro assignment
  2139.                expression is the name of the macro that was
  2140.                assigned and $(NULL) if the _e_x_p_r_e_s_s_i_o_n is not a
  2141.                valid macro assignment expression.  Some examples
  2142.                are:
  2143.  
  2144.                $(assign foo := fred)
  2145.                $(assign $(indirect_macro_name) +:= $(morejunk))
  2146.  
  2147.           $(nnuullll,_t_e_x_t ttrruuee ffaallssee)
  2148.                expands the value of _t_e_x_t_. If it is NULL then the
  2149.                macro returns the value of the expansion of ttrruuee
  2150.                and the expansion of ffaallssee otherwise.  The terms
  2151.                ttrruuee, and ffaallssee must be strings containing no
  2152.                white-space.
  2153.  
  2154.           $(!!nnuullll,_t_e_x_t ttrruuee ffaallssee)
  2155.                Behaves identically to the previous macro except
  2156.                that the ttrruuee string is chosen if the expansion of
  2157.                _t_e_x_t is not NULL.
  2158.  
  2159.           $(eeqq,_t_e_x_t___a,_t_e_x_t___b ttrruuee ffaallssee)
  2160.                expands _t_e_x_t___a and _t_e_x_t___b and compares their
  2161.                results.  If equal it returns the result of the
  2162.                expansion of the ttrruuee term, otherwise it returns
  2163.                the expansion of the ffaallssee term.
  2164.  
  2165.           $(!!eeqq,_t_e_x_t___a,_t_e_x_t___b ttrruuee ffaallssee)
  2166.                Behaves identically to the previous macro except
  2167.                that the ttrruuee string is chosen if the expansions
  2168.                of the two strings are not equal
  2169.  
  2170.           $(nniill eexxpprreessssiioonn)
  2171.                Always returns the value of $(NULL) regardless of
  2172.                what _e_x_p_r_e_s_s_i_o_n is.  This function macro can be
  2173.  
  2174.  
  2175.  
  2176. Version 3.9 PL0                 UW                             34
  2177.  
  2178.  
  2179.  
  2180.  
  2181. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2182.  
  2183.  
  2184.  
  2185.                used to discard results of expanding macro expres-
  2186.                sions.
  2187.  
  2188.           $(sshheellll ccoommmmaanndd)
  2189.                Runs _c_o_m_m_a_n_d as if it were part of a recipe and
  2190.                returns, separated by a single space, all the
  2191.                non-white space terms written to stdout by the
  2192.                command.  For example:
  2193.  
  2194.                     $(shell ls *.c)
  2195.  
  2196.                will return _"_a_._c _b_._c _c_._c _d_._c_" if the files exist
  2197.                in the current directory.  The recipe modification
  2198.                flags [[++@@%%--]] are honored if they appear as the
  2199.                first characters in the command.  For example:
  2200.  
  2201.                     $(shell +ls *.c)
  2202.  
  2203.                will run the command using the current shell.
  2204.  
  2205.           $(sshheellll,,eexxppaanndd ccoommmmaanndd)
  2206.                Is an extension to the $$((sshheellll...... function macro
  2207.                that expands the result of running ccoommmmaanndd.
  2208.  
  2209.           $(ssoorrtt lliisstt)
  2210.                Will take all white-space separated tokens in _l_i_s_t
  2211.                and will return their sorted equivalent list.
  2212.  
  2213.           $(ssttrriipp ddaattaa)
  2214.                Will replace all strings of white-space in data by
  2215.                a single space.
  2216.  
  2217.           $(ssuubbsstt,_p_a_t,_r_e_p_l_a_c_e_m_e_n_t ddaattaa)
  2218.                Will search for _p_a_t in ddaattaa and will replace any
  2219.                occurrence of _p_a_t with the _r_e_p_l_a_c_e_m_e_n_t string.
  2220.                The expansion
  2221.  
  2222.                $(subst,.o,.c $(OBJECTS))
  2223.  
  2224.           is equivalent to:
  2225.  
  2226.                $(OBJECTS:s/.o/.c/)
  2227.  
  2228.  
  2229. CCOONNDDIITTIIOONNAALL MMAACCRROOSS
  2230.      ddmmaakkee supports conditional macros.  These allow the defini-
  2231.      tion of target specific macro values.  You can now say the
  2232.      following:
  2233.  
  2234.           ttaarrggeett ?= _M_a_c_r_o_N_a_m_e _M_a_c_r_o_O_p _V_a_l_u_e
  2235.  
  2236.      This creates a definition for _M_a_c_r_o_N_a_m_e whose value is _V_a_l_u_e
  2237.  
  2238.  
  2239.  
  2240. Version 3.9 PL0                 UW                             35
  2241.  
  2242.  
  2243.  
  2244.  
  2245. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2246.  
  2247.  
  2248.  
  2249.      only when ttaarrggeett is being made.  You may use a conditional
  2250.      macro assignment anywhere that a regular macro assignment
  2251.      may appear, including as the value of a $(assign ...) macro.
  2252.  
  2253.      The new definition is associated with the most recent cell
  2254.      definition for ttaarrggeett.  If no prior definition exists then
  2255.      one is created.  The implications of this are immediately
  2256.      evident in the following example:
  2257.  
  2258.           foo := hello
  2259.  
  2260.           all : cond;@echo "all done, foo=[$(foo)] bar=[$(bar)]"
  2261.  
  2262.           cond ?= bar := global decl
  2263.  
  2264.           cond .SETDIR=unix::;@echo $(foo) $(bar)
  2265.           cond ?= foo := hi
  2266.  
  2267.           cond .SETDIR=msdos::;@echo $(foo) $(bar)
  2268.                cond ?= foo := hihi
  2269.  
  2270.      The first conditional assignment creates a binding for 'bar'
  2271.      that is activated when 'cond' is made.  The bindings follow-
  2272.      ing the :: definitions are activated when their respective
  2273.      recipe rules are used.  Thus the first binding serves to
  2274.      provide a global value for 'bar' while any of the cond ::
  2275.      rules are processed, and the local bindings for 'foo' come
  2276.      into effect when their associated :: rule is processed.
  2277.  
  2278.      Conditionals for targets of .UPDATEALL are all activated
  2279.      before the target group is made.  Assignments are processed
  2280.      in order.  Note that the value of a conditional macro
  2281.      assignment is NOT AVAILABLE until the associated target is
  2282.      made, thus the construct
  2283.  
  2284.           mytarget ?= bar := hello
  2285.           mytarget ?= foo := $(bar)
  2286.  
  2287.      results in $(foo) expanding to "", if you want the result to
  2288.      be "hello" you must use:
  2289.  
  2290.           mytarget ?= bar := hello
  2291.           mytarget ?= foo  = $(bar)
  2292.  
  2293.      Once a target is made any associated conditional macros are
  2294.      deactivated and their values are no longer available.
  2295.      Activation occurrs after all inference, and .SETDIR direc-
  2296.      tives have been processed and after $@ is assigned, but
  2297.      before prerequisites are processed; thereby making the
  2298.      values of conditional macro definitions available during
  2299.      construction of prerequisites.
  2300.  
  2301.  
  2302.  
  2303.  
  2304. Version 3.9 PL0                 UW                             36
  2305.  
  2306.  
  2307.  
  2308.  
  2309. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2310.  
  2311.  
  2312.  
  2313.      If a %-meta rule target has associated conditional macro
  2314.      assignments, and the rule is chosen by the inference algo-
  2315.      rithm then the conditional macro assignments are inferred
  2316.      together with the associated recipe.
  2317.  
  2318. DDYYNNAAMMIICC PPRREERREEQQUUIISSIITTEESS
  2319.      ddmmaakkee looks for prerequisites whose names contain macro
  2320.      expansions during target processing.  Any such prerequisites
  2321.      are expanded and the result of the expansion is used as the
  2322.      prerequisite name.  As an example the line:
  2323.  
  2324.           fred : $$@.c
  2325.  
  2326.      causes the $$@ to be expanded when ddmmaakkee is making fred, and
  2327.      it resolves to the target _f_r_e_d.  This enables dynamic prere-
  2328.      quisites to be generated.  The value of @ may be modified by
  2329.      any of the valid macro modifiers.  So you can say for exam-
  2330.      ple:
  2331.  
  2332.           fred.out : $$(@:b).c
  2333.  
  2334.      where the $$(@:b) expands to _f_r_e_d.  Note the use of $$
  2335.      instead of $ to indicate the dynamic expansion, this is due
  2336.      to the fact that the rule line is expanded when it is ini-
  2337.      tially parsed, and $$ then returns $ which later triggers
  2338.      the dynamic prerequisite expansion.  If you really want a $
  2339.      to be part of a prerequisite name you must use $$$$.
  2340.      Dynamic macro expansion is performed in all user defined
  2341.      rules, and the special targets .SOURCE*, and .INCLUDEDIRS.
  2342.  
  2343.      If dynamic macro expansion results in multiple white space
  2344.      separated tokens then these are inserted into the prere-
  2345.      quisite list inplace of the dynamic prerequisite.  If the
  2346.      new list contains additional dynamic prerequisites they will
  2347.      be expanded when they are processed.  The level of recursion
  2348.      in this expansion is controlled by the value of the variable
  2349.      DDYYNNAAMMIICCNNEESSTTIINNGGLLEEVVEELL and is set to 100 by default.
  2350.  
  2351. BBIINNDDIINNGG TTAARRGGEETTSS
  2352.      This operation takes a target name and binds it to an exist-
  2353.      ing file, if possible.  ddmmaakkee makes a distinction between
  2354.      the internal target name of a target and its associated
  2355.      external file name.  Thus it is possible for a target's
  2356.      internal name and its external file name to differ.  To per-
  2357.      form the binding, the following set of rules is used.
  2358.      Assume that we are trying to bind a target whose name is of
  2359.      the form _X_._s_u_f_f, where _._s_u_f_f is the suffix and _X is the stem
  2360.      portion (ie. that part which contains the directory and the
  2361.      basename).  ddmmaakkee takes this target name and performs a
  2362.      series of search operations that try to find a suitably
  2363.      named file in the external file system.  The search opera-
  2364.      tion is user controlled via the settings of the various
  2365.  
  2366.  
  2367.  
  2368. Version 3.9 PL0                 UW                             37
  2369.  
  2370.  
  2371.  
  2372.  
  2373. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2374.  
  2375.  
  2376.  
  2377.      .SOURCE targets.
  2378.  
  2379.           1.   If target has the .SYMBOL attribute set then look
  2380.                for it in the library.  If found, replace the tar-
  2381.                get name with the library member name and continue
  2382.                with step 2.  If the name is not found then
  2383.                return.
  2384.  
  2385.           2.   Extract the suffix portion (that following the
  2386.                `.') of the target name.  If the suffix is not
  2387.                null, look up the special target .SOURCE.<suff>
  2388.                (<suff> is the suffix). If the special target
  2389.                exists then search each directory given in the
  2390.                .SOURCE.<suff> prerequisite list for the target.
  2391.                If the target's suffix was null (ie. _._s_u_f_f was
  2392.                empty) then perform the above search but use the
  2393.                special target .SOURCE.NULL instead.  If at any
  2394.                point a match is found then terminate the search.
  2395.                If a directory in the prerequisite list is the
  2396.                special name `.NULL ' perform a search for the
  2397.                full target name without prepending any directory
  2398.                portion (ie. prepend the NULL directory).
  2399.  
  2400.           3.   The search in step 2. failed.  Repeat the same
  2401.                search but this time use the special target
  2402.                .SOURCE.  (a default target of '.SOURCE : .NULL'
  2403.                is defined by ddmmaakkee at startup, and is user rede-
  2404.                finable)
  2405.  
  2406.           4.   The search in step 3. failed.  If the target has
  2407.                the library member attribute (.LIBMEMBER) set then
  2408.                try to find the target in the library which was
  2409.                passed along with the .LIBMEMBER attribute (see
  2410.                the MAKING LIBRARIES section).  The bound file
  2411.                name assigned to a target which is successfully
  2412.                located in a library is the same name that would
  2413.                be assigned had the search failed (see 5.).
  2414.  
  2415.           5.   The search failed.  Either the target was not
  2416.                found in any of the search directories or no
  2417.                applicable .SOURCE special targets exist.  If
  2418.                applicable .SOURCE special targets exist, but the
  2419.                target was not found, then ddmmaakkee assigns the first
  2420.                name searched as the bound file name.  If no
  2421.                applicable .SOURCE special targets exist, then the
  2422.                full original target name becomes the bound file
  2423.                name.
  2424.  
  2425.      There is potential here for a lot of search operations.  The
  2426.      trick is to define .SOURCE.x special targets with short
  2427.      search lists and leave .SOURCE as short as possible.  The
  2428.      search algorithm has the following useful side effect.  When
  2429.  
  2430.  
  2431.  
  2432. Version 3.9 PL0                 UW                             38
  2433.  
  2434.  
  2435.  
  2436.  
  2437. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2438.  
  2439.  
  2440.  
  2441.      a target having the .LIBMEMBER (library member) attribute is
  2442.      searched for, it is first searched for as an ordinary file.
  2443.      When a number of library members require updating it is
  2444.      desirable to compile all of them first and to update the
  2445.      library at the end in a single operation.  If one of the
  2446.      members does not compile and ddmmaakkee stops, then the user may
  2447.      fix the error and make again.  ddmmaakkee will not remake any of
  2448.      the targets whose object files have already been generated
  2449.      as long as none of their prerequisite files have been modi-
  2450.      fied as a result of the fix.
  2451.  
  2452.      When ddmmaakkee constructs target pathnames './' substrings are
  2453.      removed and substrings of the form 'foo/..' are eliminated.
  2454.      This may result in somewhat unexpected values of the macro
  2455.      expansion $$@@, but is infact the corect result.
  2456.  
  2457.      When defining .SOURCE and .SOURCE.x targets the construct
  2458.  
  2459.           .SOURCE :
  2460.           .SOURCE : fred gery
  2461.  
  2462.      is equivalent to
  2463.  
  2464.           .SOURCE :- fred gery
  2465.  
  2466.      ddmmaakkee correctly handles the UNIX Make variable VPATH.  By
  2467.      definition VPATH contains a list of ':' separated direc-
  2468.      tories to search when looking for a target.  ddmmaakkee maps
  2469.      VPATH to the following special rule:
  2470.  
  2471.           .SOURCE :^ $(VPATH:s/:/ /)
  2472.  
  2473.      Which takes the value of VPATH and sets .SOURCE to the same
  2474.      set of directories as specified in VPATH.
  2475.  
  2476. PPEERRCCEENNTT((%%)) RRUULLEESS AANNDD MMAAKKIINNGG IINNFFEERREENNCCEESS
  2477.      When ddmmaakkee makes a target, the target's set of prerequisites
  2478.      (if any) must exist and the target must have a recipe which
  2479.      ddmmaakkee can use to make it.  If the makefile does not specify
  2480.      an explicit recipe for the target then ddmmaakkee uses special
  2481.      rules to try to infer a recipe which it can use to make the
  2482.      target.  Previous versions of Make perform this task by
  2483.      using rules that are defined by targets of the form
  2484.      .<suffix>.<suffix> and by using the .SUFFIXES list of suf-
  2485.      fixes.  The exact workings of this mechanism were sometimes
  2486.      difficult to understand and often limiting in their useful-
  2487.      ness.  Instead, ddmmaakkee supports the concept of _%_-_m_e_t_a rules.
  2488.      The syntax and semantics of these rules differ from standard
  2489.      rule lines as follows:
  2490.  
  2491.           _<_%_-_t_a_r_g_e_t_> [_<_a_t_t_r_i_b_u_t_e_s_>] _<_r_u_l_e_o_p_> [_<_%_-_p_r_e_r_e_q_u_i_s_i_t_e_s_>] [;_<_r_e_c_i_p_e_>]
  2492.  
  2493.  
  2494.  
  2495.  
  2496. Version 3.9 PL0                 UW                             39
  2497.  
  2498.  
  2499.  
  2500.  
  2501. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2502.  
  2503.  
  2504.  
  2505.      where _%_-_t_a_r_g_e_t is a target containing exactly a single `%'
  2506.      sign, _a_t_t_r_i_b_u_t_e_s is a list (possibly empty) of attributes,
  2507.      _r_u_l_e_o_p is the standard set of rule operators, _%_-_p_r_e_r_e_-
  2508.      _q_u_i_s_i_t_e_s , if present, is a list of prerequisites containing
  2509.      zero or more `%' signs, and _r_e_c_i_p_e_, if present, is the first
  2510.      line of the recipe.
  2511.  
  2512.      The _%_-_t_a_r_g_e_t defines a pattern against which a target whose
  2513.      recipe is being inferred gets matched.  The pattern match
  2514.      goes as follows:  all chars are matched exactly from left to
  2515.      right up to but not including the % sign in the pattern, %
  2516.      then matches the longest string from the actual target name
  2517.      not ending in the suffix given after the % sign in the pat-
  2518.      tern.  Consider the following examples:
  2519.  
  2520.           %.c       matches fred.c but not joe.c.Z
  2521.           dir/%.c   matches dir/fred.c but not dd/fred.c
  2522.           fred/%    matches fred/joe.c but not f/joe.c
  2523.           %         matches anything
  2524.  
  2525.      In each case the part of the target name that matched the %
  2526.      sign is retained and is substituted for any % signs in the
  2527.      prerequisite list of the %-meta rule when the rule is
  2528.      selected during inference and ddmmaakkee constructs the new
  2529.      dependency.  As an example the following %-meta rules
  2530.      describe the following:
  2531.  
  2532.           %.c : %.y ; recipe...
  2533.  
  2534.      describes how to make any file ending in .c if a correspond-
  2535.      ing file ending in .y can be found.
  2536.  
  2537.           foo%.o : fee%.k ; recipe...
  2538.  
  2539.      is used to describe how to make fooxxxx.o from feexxxx.k.
  2540.  
  2541.           %.a :; recipe...
  2542.  
  2543.      describes how to make a file whose suffix is .a without
  2544.      inferring any prerequisites.
  2545.  
  2546.           %.c : %.y yaccsrc/%.y ; recipe...
  2547.  
  2548.      is a short form for the construct:
  2549.  
  2550.           %.c : %.y ; recipe...
  2551.           %.c : yaccsrc/%.y ; recipe...
  2552.  
  2553.      ie. It is possible to specify the same recipe for two
  2554.      %-rules by giving more than one prerequisite in the prere-
  2555.      quisite list.  A more interesting example is:
  2556.  
  2557.  
  2558.  
  2559.  
  2560. Version 3.9 PL0                 UW                             40
  2561.  
  2562.  
  2563.  
  2564.  
  2565. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2566.  
  2567.  
  2568.  
  2569.           % : RCS/%,v ; co $<
  2570.  
  2571.      which describes how to take any target and check it out of
  2572.      the RCS directory if the corresponding file exists in the
  2573.      RCS directory.  The equivalent SCCS rule would be:
  2574.  
  2575.           % : s.% ; get $<
  2576.  
  2577.  
  2578.      The previous RCS example defines an infinite rule, because
  2579.      it says how to make _a_n_y_t_h_i_n_g from RCS/%,v, and _a_n_y_t_h_i_n_g also
  2580.      includes RCS/fred.c,v.  To limit the size of the graph that
  2581.      results from such rules ddmmaakkee uses the macro variable PREP
  2582.      (stands for % repetition).  By default the value of this
  2583.      variable is 0, which says that no repetitions of a %-rule
  2584.      are to be generated.  If it is set to something greater than
  2585.      0, then that many repetitions of any infinite %-rule are
  2586.      allowed.  If in the above example PREP was set to 1, then
  2587.      ddmmaakkee would generate the dependency graph:
  2588.  
  2589.           % --> RCS/%,v --> RCS/RCS/%,v,v
  2590.  
  2591.      Where each link is assigned the same recipe as the first
  2592.      link.  PREP should be used only in special cases, since it
  2593.      may result in a large increase in the number of possible
  2594.      prerequisites tested.  ddmmaakkee further assumes that any target
  2595.      that has no suffix can be made from a prerequisite that has
  2596.      at least one suffix.
  2597.  
  2598.      ddmmaakkee supports dynamic prerequisite generation for prere-
  2599.      quisites of %-meta rules.  This is best illustrated by an
  2600.      example.  The RCS rule shown above can infer how to check
  2601.      out a file from a corresponding RCS file only if the target
  2602.      is a simple file name with no directory information.  That
  2603.      is, the above rule can infer how to find _R_C_S_/_f_r_e_d_._c_,_v from
  2604.      the target _f_r_e_d_._c, but cannot infer how to find
  2605.      _s_r_c_d_i_r_/_R_C_S_/_f_r_e_d_._c_,_v from _s_r_c_d_i_r_/_f_r_e_d_._c because the above
  2606.      rule will cause ddmmaakkee to look for RCS/srcdir/fred.c,v; which
  2607.      does not exist (assume that srcdir has its own RCS directory
  2608.      as is the common case).
  2609.  
  2610.      A more versatile formulation of the above RCS check out rule
  2611.      is the following:
  2612.  
  2613.           % :  $$(@:d)RCS/$$(@:f),v : co $@
  2614.  
  2615.      This rule uses the dynamic macro $@ to specify the prere-
  2616.      quisite to try to infer.  During inference of this rule the
  2617.      macro $@ is set to the value of the target of the %-meta
  2618.      rule and the appropriate prerequisite is generated by
  2619.      extracting the directory portion of the target name (if
  2620.      any), appending the string _R_C_S_/ to it, and appending the
  2621.  
  2622.  
  2623.  
  2624. Version 3.9 PL0                 UW                             41
  2625.  
  2626.  
  2627.  
  2628.  
  2629. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2630.  
  2631.  
  2632.  
  2633.      target file name with a trailing _,_v attached to the previous
  2634.      result.
  2635.  
  2636.      ddmmaakkee can also infer indirect prerequisites.  An inferred
  2637.      target can have a list of prerequisites added that will not
  2638.      show up in the value of $< but will show up in the value of
  2639.      $? and $&.  Indirect prerequisites are specified in an
  2640.      inference rule by quoting the prerequisite with single
  2641.      quotes.  For example, if you had the explicit dependency:
  2642.  
  2643.           fred.o : fred.c ; rule to make fred.o
  2644.           fred.o : local.h
  2645.  
  2646.      then this can be inferred for fred.o from the following
  2647.      inference rule:
  2648.  
  2649.           %.o : %.c 'local.h' ; rule to make a .o from a .c
  2650.  
  2651.      You may infer indirect prerequisites that are a function of
  2652.      the value of '%' in the current rule.  The meta-rule:
  2653.  
  2654.           %.o : %.c '$(INC)/%.h' ; rule to make a .o from a .c
  2655.  
  2656.      infers an indirect prerequisite found in the INC directory
  2657.      whose name is the same as the expansion of $(INC), and the
  2658.      prerequisite name depends on the base name of the current
  2659.      target.  The set of indirect prerequisites is attached to
  2660.      the meta rule in which they are specified and are inferred
  2661.      only if the rule is used to infer a recipe for a target.
  2662.      They do not play an active role in driving the inference
  2663.      algorithm.  The construct:
  2664.  
  2665.           %.o : %.c %.f 'local.h'; recipe
  2666.  
  2667.      is equivalent to:
  2668.  
  2669.           %.o : %.c 'local.h' : recipe
  2670.  
  2671.      while:
  2672.  
  2673.           %.o :| %.c %.f 'local.h'; recipe
  2674.  
  2675.      is equivalent to:
  2676.  
  2677.           %.o : %.c 'local.h' : recipe
  2678.           %.o : %.f 'local.h' : recipe
  2679.  
  2680.  
  2681.      If any of the attributes .SETDIR, .EPILOG, .PROLOG, .SILENT,
  2682.      .USESHELL, .SWAP, .PRECIOUS, .LIBRARY, .NOSTATE and .IGNORE
  2683.      are given for a %-rule then when that rule is bound to a
  2684.      target as the result of an inference, the target's set of
  2685.  
  2686.  
  2687.  
  2688. Version 3.9 PL0                 UW                             42
  2689.  
  2690.  
  2691.  
  2692.  
  2693. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2694.  
  2695.  
  2696.  
  2697.      attributes is augmented by the attributes from the above set
  2698.      that are specified in the bound %-rule.  Other attributes
  2699.      specified for %-meta rules are not inherited by the target.
  2700.      The .SETDIR attribute is treated in a special way.  If the
  2701.      target already had a .SETDIR attribute set then ddmmaakkee
  2702.      changes to that directory prior to performing the inference.
  2703.      During inference any .SETDIR attributes for the inferred
  2704.      prerequisite are honored.  The directories must exist for a
  2705.      %-meta rule to be selected as a possible inference path.  If
  2706.      the directories do not exist no error message is issued,
  2707.      instead the corresponding path in the inference graph is
  2708.      rejected.
  2709.  
  2710.      ddmmaakkee also supports the old format special target
  2711.      .<suffix>.<suffix> by identifying any rules of this form and
  2712.      mapping them to the appropriate %-rule.  So for example if
  2713.      an old makefile contains the construct:
  2714.  
  2715.           .c.o :; cc -c $< -o $@
  2716.  
  2717.      ddmmaakkee maps this into the following %-rule:
  2718.  
  2719.           %.o : %.c; cc -c $< -o $@
  2720.  
  2721.      Furthermore, ddmmaakkee understands several SYSV AUGMAKE special
  2722.      targets and maps them into corresponding %-meta rules.
  2723.      These transformation must be enabled by providing the -A
  2724.      flag on the command line or by setting the value of AUGMAKE
  2725.      to non-NULL.  The construct
  2726.  
  2727.           .suff :; recipe
  2728.  
  2729.      gets mapped into:
  2730.  
  2731.           % : %.suff; recipe
  2732.  
  2733.      and the construct
  2734.  
  2735.           .c~.o :; recipe
  2736.  
  2737.      gets mapped into:
  2738.  
  2739.           %.o : s.%.c ; recipe
  2740.  
  2741.      In general, a special target of the form .<str>~ is replaced
  2742.      by the %-rule construct s.%.<str>, thereby providing support
  2743.      for the syntax used by SYSV AUGMAKE for providing SCCS sup-
  2744.      port.  When enabled, these mappings allow processing of
  2745.      existing SYSV makefiles without modifications.
  2746.  
  2747.      ddmmaakkee bases all of its inferences on the inference graph
  2748.      constructed from the %-rules defined in the makefile.  It
  2749.  
  2750.  
  2751.  
  2752. Version 3.9 PL0                 UW                             43
  2753.  
  2754.  
  2755.  
  2756.  
  2757. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2758.  
  2759.  
  2760.  
  2761.      knows exactly which targets can be made from which prere-
  2762.      quisites by making queries on the inference graph.  For this
  2763.      reason .SUFFIXES is not needed and is completely ignored.
  2764.  
  2765.      For a %-meta rule to be inferred as the rule whose recipe
  2766.      will be used to make a target, the target's name must match
  2767.      the %-target pattern, and any inferred %-prerequisite must
  2768.      already exist or have an explicit recipe so that the prere-
  2769.      quisite can be made.  Without _t_r_a_n_s_i_t_i_v_e _c_l_o_s_u_r_e on the
  2770.      inference graph the above rule describes precisely when an
  2771.      inference match terminates the search.  If transitive clo-
  2772.      sure is enabled (the usual case), and a prerequisite does
  2773.      not exist or cannot be made, then ddmmaakkee invokes the infer-
  2774.      ence algorithm recursively on the prerequisite to see if
  2775.      there is some way the prerequisite can be manufactured.
  2776.      For, if the prerequisite can be made then the current target
  2777.      can also be made using the current %-meta rule.  This means
  2778.      that there is no longer a need to give a rule for making a
  2779.      .o from a .y if you have already given a rule for making a
  2780.      .o from a .c and a .c from a .y.  In such cases ddmmaakkee can
  2781.      infer how to make the .o from the .y via the intermediary .c
  2782.      and will remove the .c when the .o is made.  Transitive clo-
  2783.      sure can be disabled by giving the -T switch on the command
  2784.      line.
  2785.  
  2786.      A word of caution.  ddmmaakkee bases its transitive closure on
  2787.      the %-meta rule targets.  When it performs transitive clo-
  2788.      sure it infers how to make a target from a prerequisite by
  2789.      performing a pattern match as if the potential prerequisite
  2790.      were a new target.  The set of rules:
  2791.  
  2792.           %.o : %.c :; rule for making .o from .c
  2793.           %.c : %.y :; rule for making .c from .y
  2794.           % : RCS/%,v :; check out of RCS file
  2795.  
  2796.      will, by performing transitive closure, allow ddmmaakkee to infer
  2797.      how to make a .o from a .y using a .c as an intermediate
  2798.      temporary file.  Additionally it will be able to infer how
  2799.      to make a .y from an RCS file, as long as that RCS file is
  2800.      in the RCS directory and has a name which ends in .y,v.  The
  2801.      transitivity computation is performed dynamically for each
  2802.      target that does not have a recipe.  This has potential to
  2803.      be costly if the %-meta rules are not carefully specified.
  2804.      The .NOINFER attribute is used to mark a %-meta node as
  2805.      being a final target during inference.  Any node with this
  2806.      attribute set will not be used for subsequent inferences.
  2807.      As an example the node RCS/%,v is marked as a final node
  2808.      since we know that if the RCS file does not exist there
  2809.      likely is no other way to make it.  Thus the standard
  2810.      startup makefile contains an entry similar to:
  2811.           .NOINFER : RCS/%,v
  2812.      Thereby indicating that the RCS file is the end of the
  2813.  
  2814.  
  2815.  
  2816. Version 3.9 PL0                 UW                             44
  2817.  
  2818.  
  2819.  
  2820.  
  2821. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2822.  
  2823.  
  2824.  
  2825.      inference chain.  Whenever the inference algorithm deter-
  2826.      mines that a target can be made from more than one prere-
  2827.      quisite and the inference chains for the two methods are the
  2828.      same length the algorithm reports an ambiguity and prints
  2829.      the ambiguous inference chains.
  2830.  
  2831.      ddmmaakkee tries to remove intermediate files resulting from
  2832.      transitive closure if the file is not marked as being PRE-
  2833.      CIOUS, or the --uu flag was not given on the command line, and
  2834.      if the inferred intermediate did not previously exist.
  2835.      Intermediate targets that existed prior to being made are
  2836.      never removed.  This is in keeping with the philosophy that
  2837.      ddmmaakkee should never remove things from the file system that
  2838.      it did not add.  If the special target .REMOVE is defined
  2839.      and has a recipe then ddmmaakkee constructs a list of the inter-
  2840.      mediate files to be removed and makes them prerequisites of
  2841.      .REMOVE.  It then makes .REMOVE thereby removing the prere-
  2842.      quisites if the recipe of .REMOVE says to.  Typically
  2843.      .REMOVE is defined in the startup file as:
  2844.  
  2845.           .REMOVE :; $(RM) $<
  2846.  
  2847. MMAAKKIINNGG TTAARRGGEETTSS
  2848.      In order to update a target ddmmaakkee must execute a recipe.
  2849.      When a recipe needs to be executed it is first expanded so
  2850.      that any macros in the recipe text are expanded, and it is
  2851.      then either executed directly or passed to a shell.  ddmmaakkee
  2852.      supports two types of recipes.  The regular recipes and
  2853.      group recipes.
  2854.  
  2855.      When a regular recipe is invoked ddmmaakkee executes each line of
  2856.      the recipe separately using a new copy of a shell if a shell
  2857.      is required.  Thus effects of commands do not generally per-
  2858.      sist across recipe lines (e.g. cd requests in a recipe line
  2859.      do not carry over to the next recipe line).  This is true
  2860.      even in environments such as MMSSDDOOSS, where dmake internally
  2861.      sets the current working director to match the directory it
  2862.      was in before the command was executed.
  2863.  
  2864.      The decision on whether a shell is required to execute a
  2865.      command is based on the value of the macro SHELLMETAS or on
  2866.      the specification of '+' or .USESHELL for the current recipe
  2867.      or target respectively.  If any character in the value of
  2868.      SHELLMETAS is found in the expanded recipe text-line or the
  2869.      use of a shell is requested explicitly via '+' or .USESHELL
  2870.      then the command is executed using a shell, otherwise the
  2871.      command is executed directly.  The shell that is used for
  2872.      execution is given by the value of the macro SHELL.  The
  2873.      flags that are passed to the shell are given by the value of
  2874.      SHELLFLAGS.  Thus ddmmaakkee constructs the command line:
  2875.  
  2876.           $(SHELL) $(SHELLFLAGS) $(expanded_recipe_command)
  2877.  
  2878.  
  2879.  
  2880. Version 3.9 PL0                 UW                             45
  2881.  
  2882.  
  2883.  
  2884.  
  2885. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2886.  
  2887.  
  2888.  
  2889.      Normally ddmmaakkee writes the command line that it is about to
  2890.      invoke to standard output.  If the .SILENT attribute is set
  2891.      for the target or for the recipe line (via @), then the
  2892.      recipe line is not echoed.
  2893.  
  2894.      Group recipe processing is similar to that of regular
  2895.      recipes, except that a shell is always invoked.  The shell
  2896.      that is invoked is given by the value of the macro GROUP-
  2897.      SHELL, and its flags are taken from the value of the macro
  2898.      GROUPFLAGS.  If a target has the .PROLOG attribute set then
  2899.      ddmmaakkee prepends to the shell script the recipe associated
  2900.      with the special target .GROUPPROLOG, and if the attribute
  2901.      .EPILOG is set as well, then the recipe associated with the
  2902.      special target .GROUPEPILOG is appended to the script file.
  2903.      This facility can be used to always prepend a common header
  2904.      and common trailer to group recipes.  Group recipes are
  2905.      echoed to standard output just like standard recipes, but
  2906.      are enclosed by lines beginning with [ and ].
  2907.  
  2908.      The recipe flags [+,-,%,@] are recognized at the start of a
  2909.      recipe line even if they appear in a macro.  For example:
  2910.  
  2911.           SH = +
  2912.           all:
  2913.                $(SH)echo hi
  2914.  
  2915.      is completely equivalent to writing
  2916.  
  2917.           SH = +
  2918.           all:
  2919.                +echo hi
  2920.  
  2921.  
  2922.      The last step performed by ddmmaakkee prior to running a recipe
  2923.      is to set the macro CMNDNAME to the name of the command to
  2924.      execute (determined by finding the first white-space ending
  2925.      token in the command line).  It then sets the macro CMNDARGS
  2926.      to be the remainder of the line.  ddmmaakkee then expands the
  2927.      macro COMMAND which by default is set to
  2928.  
  2929.           COMMAND = $(CMNDNAME) $(CMNDARGS)
  2930.  
  2931.      The result of this final expansion is the command that will
  2932.      be executed.  The reason for this expansion is to allow for
  2933.      a different interface to the argument passing facilities
  2934.      (esp. under DOS) than that provided by ddmmaakkee. You can for
  2935.      example define COMMAND to be
  2936.  
  2937.           COMMAND = $(CMNDNAME) @$(mktmp $(CMNDARGS))
  2938.  
  2939.      which dumps the arguments into a temporary file and runs the
  2940.      command
  2941.  
  2942.  
  2943.  
  2944. Version 3.9 PL0                 UW                             46
  2945.  
  2946.  
  2947.  
  2948.  
  2949. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  2950.  
  2951.  
  2952.  
  2953.           $(CMNDNAME) @/tmp/ASAD23043
  2954.  
  2955.      which has a much shorter argument list.  It is now up to the
  2956.      command to use the supplied argument as the source for all
  2957.      other arguments.  As an optimization, if COMMAND is not
  2958.      defined ddmmaakkee does not perform the above expansion.  On sys-
  2959.      tems, such as UNIX, that handle long command lines this pro-
  2960.      vides a slight saving in processing the makefiles.
  2961.  
  2962. MMAAKKIINNGG LLIIBBRRAARRIIEESS
  2963.      Libraries are easy to maintain using ddmmaakkee.  A library is a
  2964.      file containing a collection of object files.  Thus to make
  2965.      a library you simply specify it as a target with the
  2966.      .LIBRARY attribute set and specify its list of prere-
  2967.      quisites.  The prerequisites should be the object members
  2968.      that are to go into the library.  When ddmmaakkee makes the
  2969.      library target it uses the .LIBRARY attribute to pass to the
  2970.      prerequisites the .LIBMEMBER attribute and the name of the
  2971.      library.  This enables the file binding mechanism to look
  2972.      for the member in the library if an appropriate object file
  2973.      cannot be found. A small example best illustrates this.
  2974.  
  2975.           mylib.a .LIBRARY : mem1.o mem2.o mem3.o
  2976.                rules for making library...
  2977.                # remember to remove .o's when lib is made
  2978.  
  2979.           # equivalent to:  '%.o : %.c ; ...'
  2980.           .c.o :; rules for making .o from .c say
  2981.  
  2982.      ddmmaakkee will use the .c.o rule for making the library members
  2983.      if appropriate .c files can be found using the search rules.
  2984.      NOTE:  this is not specific in any way to C programs, they
  2985.      are simply used as an example.
  2986.  
  2987.      ddmmaakkee tries to handle the old library construct format in a
  2988.      sensible way.  The construct _l_i_b_(_m_e_m_b_e_r_._o_) is separated and
  2989.      the _l_i_b portion is declared as a library target.  The new
  2990.      target is defined with the .LIBRARY attribute set and the
  2991.      _m_e_m_b_e_r_._o portion of the construct is declared as a prere-
  2992.      quisite of the lib target.  If the construct _l_i_b_(_m_e_m_b_e_r_._o_)
  2993.      appears as a prerequisite of a target in the makefile, that
  2994.      target has the new name of the lib assigned as its prere-
  2995.      quisite.  Thus the following example:
  2996.  
  2997.           a.out : ml.a(a.o) ml.a(b.o); $(CC) -o $@  $<
  2998.  
  2999.           .c.o :; $(CC) -c $(CFLAGS) -o $@  $<
  3000.           %.a:
  3001.                ar rv $@ $?
  3002.                ranlib $@
  3003.                rm -rf $?
  3004.  
  3005.  
  3006.  
  3007.  
  3008. Version 3.9 PL0                 UW                             47
  3009.  
  3010.  
  3011.  
  3012.  
  3013. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  3014.  
  3015.  
  3016.  
  3017.      constructs the following dependency graph.
  3018.  
  3019.           a.out : ml.a; $(CC) -o $@  $<
  3020.           ml.a .LIBRARY : a.o b.o
  3021.  
  3022.           %.o : %.c ; $(CC) -c $(CFLAGS) -o $@  $<
  3023.           %.a :
  3024.                ar rv $@ $?
  3025.                ranlib $@
  3026.                rm -rf $?
  3027.  
  3028.      and making a.out then works as expected.
  3029.  
  3030.      The same thing happens for any target of the form
  3031.      _l_i_b_(_(_e_n_t_r_y_)_).  These targets have an additional feature in
  3032.      that the _e_n_t_r_y target has the .SYMBOL attribute set automat-
  3033.      ically.
  3034.  
  3035.      NOTE:  If the notion of entry points is supported by the
  3036.      archive and by ddmmaakkee (currently not the case) then ddmmaakkee
  3037.      will search the archive for the entry point and return not
  3038.      only the modification time of the member which defines the
  3039.      entry but also the name of the member file.  This name will
  3040.      then replace _e_n_t_r_y and will be used for making the member
  3041.      file.  Once bound to an archive member the .SYMBOL attribute
  3042.      is removed from the target.  This feature is presently dis-
  3043.      abled as there is little standardization among archive for-
  3044.      mats, and we have yet to find a makefile utilizing this
  3045.      feature (possibly due to the fact that it is unimplemented
  3046.      in most versions of UNIX Make).
  3047.  
  3048.      Finally, when ddmmaakkee looks for a library member it must first
  3049.      locate the library file.  It does so by first looking for
  3050.      the library relative to the current directory and if it is
  3051.      not found it then looks relative to the current value of
  3052.      $(TMD).  This allows commonly used libraries to be kept near
  3053.      the root of a source tree and to be easily found by ddmmaakkee.
  3054.  
  3055. KKEEEEPP SSTTAATTEE
  3056.      ddmmaakkee supports the keeping of state information for targets
  3057.      that it makes whenever the macro .KEEP_STATE is assigned a
  3058.      value.  The value of the macro should be the name of a state
  3059.      file that will contain the state information.  If state
  3060.      keeping is enabled then each target that does not poses the
  3061.      .NOSTATE attribute will have a record written into the state
  3062.      file indicating the target's name, the current directory,
  3063.      the command used to update the target, and which, if any, ::
  3064.      rule is being used.  When you make this target again if any
  3065.      of this information does not match the previous settings and
  3066.      the target is not out dated it will still be re-made.  The
  3067.      assumption is that one of the conditions above has changed
  3068.      and that we wish to remake the target.  For example, state
  3069.  
  3070.  
  3071.  
  3072. Version 3.9 PL0                 UW                             48
  3073.  
  3074.  
  3075.  
  3076.  
  3077. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  3078.  
  3079.  
  3080.  
  3081.      keeping is used in the maintenance of ddmmaakkee to test compile
  3082.      different versions of the source using different compilers.
  3083.      Changing the compiler causes the compilation flags to be
  3084.      modified and hence all sources to be recompiled.
  3085.  
  3086.      The state file is an ascii file and is portable, however it
  3087.      is not in human readable form as the entries represent hash
  3088.      keys of the above information.
  3089.  
  3090.      The Sun Microsystem's Make construct
  3091.  
  3092.           .KEEP_STATE :
  3093.  
  3094.      is recognized and is mapped to ..KKEEEEPP__SSTTAATTEE::==__ssttaattee..mmkk.  The
  3095.      ddmmaakkee version of state keeping does not include scanning C
  3096.      source files for dependencies like Sun Make.  This is
  3097.      specific to C programs and it was felt that it does not
  3098.      belong in make.  ddmmaakkee instead provides the tool, ccddeeppeenndd,
  3099.      to scan C source files and to produce depedency information.
  3100.      Users are free to modify cdepend to produce other dependency
  3101.      files.  (NOTE: ccddeeppeenndd does not come with the distribution
  3102.      at this time, but will be available in a patch in the near
  3103.      future)
  3104.  
  3105. MMUULLTTII PPRROOCCEESSSSIINNGG
  3106.      If the architecture supports it then ddmmaakkee is capable of
  3107.      making a target's prerequisites in parallel.  ddmmaakkee will
  3108.      make as much in parallel as it can and use a number of child
  3109.      processes up to the maximum specified by MAXPROCESS or by
  3110.      the value supplied to the -P command line flag.  A parallel
  3111.      make is enabled by setting the value of MAXPROCESS (either
  3112.      directly or via -P option) to a value which is > 1.  ddmmaakkee
  3113.      guarantees that all dependencies as specified in the
  3114.      makefile are honored.  A target will not be made until all
  3115.      of its prerequisites have been made.  Note that when you
  3116.      specify --PP 44 then four child processes are run concurrently
  3117.      but ddmmaakkee actually displays the fifth command it will run
  3118.      immediately upon a child process becomming free.  This is an
  3119.      artifact of the method used to traverse the dependency graph
  3120.      and cannot be removed.  If a parallel make is being per-
  3121.      formed then the following restrictions on parallelism are
  3122.      enforced.
  3123.  
  3124.           1.   Individual recipe lines in a non-group recipe are
  3125.                performed sequentially in the order in which they
  3126.                are specified within the makefile and in parallel
  3127.                with the recipes of other targets.
  3128.  
  3129.           2.   If a target contains multiple recipe definitions
  3130.                (cf. :: rules) then these are performed sequen-
  3131.                tially in the order in which the :: rules are
  3132.                specified within the makefile and in parallel with
  3133.  
  3134.  
  3135.  
  3136. Version 3.9 PL0                 UW                             49
  3137.  
  3138.  
  3139.  
  3140.  
  3141. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  3142.  
  3143.  
  3144.  
  3145.                the recipes of other targets.
  3146.  
  3147.           3.   If a target rule contains the `!' modifier, then
  3148.                the recipe is performed sequentially for the list
  3149.                of outdated prerequisites and in parallel with the
  3150.                recipes of other targets.
  3151.  
  3152.           4.   If a target has the .SEQUENTIAL attribute set then
  3153.                all of its prerequisites are made sequentially
  3154.                relative to one another (as if MAXPROCESS=1), but
  3155.                in parallel with other targets in the makefile.
  3156.  
  3157.      Note:  If you specify a parallel make then the order of tar-
  3158.      get update and the order in which the associated recipes are
  3159.      invoked will not correspond to that displayed by the -n
  3160.      flag.
  3161.  
  3162. CCOONNDDIITTIIOONNAALLSS
  3163.      ddmmaakkee supports a makefile construct called a _c_o_n_d_i_t_i_o_n_a_l.
  3164.      It allows the user to conditionally select portions of
  3165.      makefile text for input processing and to discard other por-
  3166.      tions.  This becomes useful for writing makefiles that are
  3167.      intended to function for more than one target host and
  3168.      environment.  The conditional expression is specified as
  3169.      follows:
  3170.  
  3171.           .IF  _e_x_p_r_e_s_s_i_o_n
  3172.              ... if text ...
  3173.           .ELIF  _e_x_p_r_e_s_s_i_o_n
  3174.              ... if text ...
  3175.           .ELSE
  3176.              ... else text ...
  3177.           .END
  3178.  
  3179.      The .ELSE and .ELIF portions are optional, and the condi-
  3180.      tionals may be nested (ie.  the text may contain another
  3181.      conditional).  .IF, .ELSE, and .END may appear anywhere in
  3182.      the makefile, but a single conditional expression may not
  3183.      span multiple makefiles.
  3184.  
  3185.      _e_x_p_r_e_s_s_i_o_n can be one of the following three forms:
  3186.  
  3187.           <text> | <text> == <text> | <text> != <text>
  3188.  
  3189.      where _t_e_x_t is either text or a macro expression.  In any
  3190.      case, before the comparison is made, the expression is
  3191.      expanded.  The text portions are then selected and compared.
  3192.      White space at the start and end of the text portion is dis-
  3193.      carded before the comparison.  This means that a macro that
  3194.      evaluates to nothing but white space is considered a NULL
  3195.      value for the purpose of the comparison.  In the first case
  3196.      the expression evaluates TRUE if the text is not NULL
  3197.  
  3198.  
  3199.  
  3200. Version 3.9 PL0                 UW                             50
  3201.  
  3202.  
  3203.  
  3204.  
  3205. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  3206.  
  3207.  
  3208.  
  3209.      otherwise it evaluates FALSE.  The remaining two cases both
  3210.      evaluate the expression on the basis of a string comparison.
  3211.      If a macro expression needs to be equated to a NULL string
  3212.      then compare it to the value of the macro $(NULL).  You can
  3213.      use the $(shell ...) macro to construct more complex test
  3214.      expressions.
  3215.  
  3216. EEXXAAMMPPLLEESS
  3217.           # A simple example showing how to use make
  3218.           #
  3219.           prgm : a.o b.o
  3220.                cc a.o b.o -o prgm
  3221.           a.o : a.c g.h
  3222.                cc a.c -o $@
  3223.           b.o : b.c g.h
  3224.                cc b.c -o $@
  3225.  
  3226.      In the previous example prgm is remade only if a.o and/or
  3227.      b.o is out of date with respect to prgm.  These dependencies
  3228.      can be stated more concisely by using the inference rules
  3229.      defined in the standard startup file.  The default rule for
  3230.      making .o's from .c's looks something like this:
  3231.  
  3232.           %.o : %.c; cc -c $(CFLAGS) -o $@ $<
  3233.  
  3234.      Since there exists a rule (defined in the startup file) for
  3235.      making .o's from .c's ddmmaakkee will use that rule for manufac-
  3236.      turing a .o from a .c and we can specify our dependencies
  3237.      more concisely.
  3238.  
  3239.           prgm : a.o b.o
  3240.                cc -o prgm $<
  3241.           a.o b.o : g.h
  3242.  
  3243.      A more general way to say the above using the new macro
  3244.      expansions would be:
  3245.  
  3246.           SRC = a b
  3247.           OBJ = {$(SRC)}.o
  3248.  
  3249.           prgm : $(OBJ)
  3250.                cc -o $@ $<
  3251.  
  3252.           $(OBJ) : g.h
  3253.  
  3254.      If we want to keep the objects in a separate directory,
  3255.      called objdir, then we would write something like this.
  3256.  
  3257.           SRC = a b
  3258.           OBJ = {$(SRC)}.o
  3259.  
  3260.           prgm : $(OBJ)
  3261.  
  3262.  
  3263.  
  3264. Version 3.9 PL0                 UW                             51
  3265.  
  3266.  
  3267.  
  3268.  
  3269. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  3270.  
  3271.  
  3272.  
  3273.                cc $< -o $@
  3274.  
  3275.           $(OBJ) : g.h
  3276.           %.o : %.c
  3277.                $(CC) -c $(CFLAGS) -o $(@:f) $<
  3278.                mv $(@:f) objdir
  3279.  
  3280.           .SOURCE.o : objdir       # tell make to look here for .o's
  3281.  
  3282.      An example of building library members would go something
  3283.      like this: (NOTE:  The same rules as above will be used to
  3284.      produce .o's from .c's)
  3285.  
  3286.           SRC  = a b
  3287.           LIB  = lib
  3288.           LIBm = { $(SRC) }.o
  3289.  
  3290.           prgm: $(LIB)
  3291.                cc -o $@ $(LIB)
  3292.  
  3293.           $(LIB) .LIBRARY : $(LIBm)
  3294.                ar rv $@ $<
  3295.                rm $<
  3296.  
  3297.      Finally, suppose that each of the source files in the previ-
  3298.      ous example had the `:' character in their target name.
  3299.      Then we would write the above example as:
  3300.  
  3301.           SRC  = f:a f:b
  3302.           LIB  = lib
  3303.           LIBm = "{ $(SRC) }.o"         # put quotes around each token
  3304.  
  3305.           prgm: $(LIB)
  3306.                cc -o $@ $(LIB)
  3307.  
  3308.           $(LIB) .LIBRARY : $(LIBm)
  3309.                ar rv $@ $<
  3310.                rm $<
  3311.  
  3312. CCOOMMPPAATTIIBBIILLIITTYY
  3313.      There are two notable differences between ddmmaakkee and the
  3314.      standard version of BSD UNIX 4.2/4.3 Make.
  3315.  
  3316.           1. BSD UNIX 4.2/4.3 Make supports wild card filename
  3317.              expansion for prerequisite names.  Thus if a direc-
  3318.              tory contains a.h, b.h and c.h, then a line like
  3319.  
  3320.                   target: *.h
  3321.  
  3322.              will cause UNIX make to expand the *.h into "a.h b.h
  3323.              c.h".  ddmmaakkee does not support this type of filename
  3324.              expansion.
  3325.  
  3326.  
  3327.  
  3328. Version 3.9 PL0                 UW                             52
  3329.  
  3330.  
  3331.  
  3332.  
  3333. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  3334.  
  3335.  
  3336.  
  3337.           2. Unlike UNIX make, touching a library member causes
  3338.              ddmmaakkee to search the library for the member name and
  3339.              to update the library time stamp.  This is only
  3340.              implemented in the UNIX version.  MSDOS and other
  3341.              versions may not have librarians that keep file time
  3342.              stamps, as a result ddmmaakkee touches the library file
  3343.              itself, and prints a warning.
  3344.  
  3345.      ddmmaakkee is not compatible with GNU Make.  In particular it
  3346.      does not understand GNU Make's macro expansions that query
  3347.      the file system.
  3348.  
  3349.      ddmmaakkee is fully compatible with SYSV AUGMAKE, and supports
  3350.      the following AUGMAKE features:
  3351.  
  3352.           1. The word iinncclluuddee appearing at the start of a line
  3353.              can be used instead of the ".INCLUDE :" construct
  3354.              understood by ddmmaakkee.
  3355.  
  3356.           2. The macro modifier expression $(macro:str=sub) is
  3357.              understood and is equivalent to the expression
  3358.              $(macro:s/str/sub), with the restriction that str
  3359.              must match the following regular expression:
  3360.  
  3361.                   str[ |\t][ |\t]*
  3362.  
  3363.              (ie. str only matches at the end of a token where
  3364.              str is a suffix and is terminated by a space, a tab,
  3365.              or end of line) Normally _s_u_b is expanded before the
  3366.              substitution is made, if you specify -A on the com-
  3367.              mand line then sub is not expanded.
  3368.  
  3369.           3. The macro % is defined to be $@ (ie. $% expands to
  3370.              the same value as $@).
  3371.  
  3372.           4. The AUGMAKE notion of libraries is handled
  3373.              correctly.
  3374.  
  3375.           5. When defining special targets for the inference
  3376.              rules and the AUGMAKE special target handling is
  3377.              enabled then the special target .X is equivalent to
  3378.              the %-rule "% : %.X".
  3379.  
  3380.           6. Directories are always made if you specify --AA.  This
  3381.              is consistent with other UNIX versions of Make.
  3382.  
  3383.           7. Makefiles that utilize virtual targets to force mak-
  3384.              ing of other targets work as expected if AUGMAKE
  3385.              special target handling is enabled.  For example:
  3386.  
  3387.                   FRC:
  3388.                   myprog.o : myprog.c $(FRC) ; ...
  3389.  
  3390.  
  3391.  
  3392. Version 3.9 PL0                 UW                             53
  3393.  
  3394.  
  3395.  
  3396.  
  3397. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  3398.  
  3399.  
  3400.  
  3401.              Works as expected if you issue the command
  3402.  
  3403.                   'ddmmaakkee -A FRC=FRC'
  3404.  
  3405.              but fails with a 'don't know how to make FRC' error
  3406.              message if you do not specify AUGMAKE special target
  3407.              handling via the -A flag (or by setting AUGMAKE:=yes
  3408.              internally).
  3409.  
  3410. LLIIMMIITTSS
  3411.      In some environments the length of an argument string is
  3412.      restricted.  (e.g. MSDOS command line arguments cannot be
  3413.      longer than 128 bytes if you are using the standard
  3414.      command.com command interpreter as your shell, ddmmaakkee text
  3415.      diversions may help in these situations.)
  3416.  
  3417. PPOORRTTAABBIILLIITTYY
  3418.      To write makefiles that can be moved from one environment to
  3419.      another requires some forethought.  In particular you must
  3420.      define as macros all those things that may be different in
  3421.      the new environment.  ddmmaakkee has two facilities that help to
  3422.      support writing portable makefiles, recursive macros and
  3423.      conditional expressions.  The recursive macros, allow one to
  3424.      define environment configurations that allow different
  3425.      environments for similar types of operating systems.  For
  3426.      example the same make script can be used for SYSV and BSD
  3427.      but with different macro definitions.
  3428.  
  3429.      To write a makefile that is portable between UNIX and MSDOS
  3430.      requires both features since in almost all cases you will
  3431.      need to define new recipes for making targets.  The recipes
  3432.      will probably be quite different since the capabilities of
  3433.      the tools on each machine are different.  Different macros
  3434.      will be needed to help handle the smaller differences in the
  3435.      two environments.
  3436.  
  3437. FFIILLEESS
  3438.      Makefile, makefile, startup.mk (use dmake -V to tell you
  3439.      where the startup file is)
  3440.  
  3441. SSEEEE AALLSSOO
  3442.      sh(1), csh(1), touch(1), f77(1), pc(1), cc(1)
  3443.      S.I. Feldman  _M_a_k_e _- _A _P_r_o_g_r_a_m _f_o_r _M_a_i_n_t_a_i_n_i_n_g _C_o_m_p_u_t_e_r _P_r_o_-
  3444.      _g_r_a_m_s
  3445.  
  3446. AAUUTTHHOORR
  3447.      Dennis Vadura, CS Dept. University of Waterloo.
  3448.      dvadura@watdragon.uwaterloo.ca
  3449.      Many thanks to Carl Seger for his helpful suggestions, and
  3450.      to Trevor John Thompson for his many excellent ideas and
  3451.      informative bug reports.
  3452.  
  3453.  
  3454.  
  3455.  
  3456. Version 3.9 PL0                 UW                             54
  3457.  
  3458.  
  3459.  
  3460.  
  3461. DMAKE(p)             Unsupported Free Software            DMAKE(p)
  3462.  
  3463.  
  3464.  
  3465. BBUUGGSS
  3466.      Some system commands return non-zero status inappropriately.
  3467.      Use --ii (`-' within the makefile) to overcome the difficulty.
  3468.  
  3469.      Some systems do not have easily accessible time stamps for
  3470.      library members (MSDOS, AMIGA, etc) for these ddmmaakkee uses the
  3471.      time stamp of the library instead and prints a warning the
  3472.      first time it does so.  This is almost always ok, except
  3473.      when multiple makefiles update a single library file.  In
  3474.      these instances it is possible to miss an update if one is
  3475.      not careful.
  3476.  
  3477.      This man page is way too long.
  3478.  
  3479. WWAARRNNIINNGGSS
  3480.      Rules supported by make(1) may not work if transitive clo-
  3481.      sure is turned off (-T, .NOINFER).
  3482.  
  3483.      PWD from csh/ksh will cause problems if a cd operation is
  3484.      performed and -e or -E option is used.
  3485.  
  3486.      Using internal macros such as COMMAND, may wreak havoc if
  3487.      you don't understand their functionality.
  3488.  
  3489.  
  3490.  
  3491.  
  3492.  
  3493.  
  3494.  
  3495.  
  3496.  
  3497.  
  3498.  
  3499.  
  3500.  
  3501.  
  3502.  
  3503.  
  3504.  
  3505.  
  3506.  
  3507.  
  3508.  
  3509.  
  3510.  
  3511.  
  3512.  
  3513.  
  3514.  
  3515.  
  3516.  
  3517.  
  3518.  
  3519.  
  3520. Version 3.9 PL0                 UW                             55
  3521.