make-alpha
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] make branch, master, updated. 4.2.1-108-g8c888d9


From: Paul D. Smith
Subject: [SCM] make branch, master, updated. 4.2.1-108-g8c888d9
Date: Sun, 12 May 2019 16:34:00 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "make".

The branch, master has been updated
       via  8c888d95f61814dd698bf76126a9079234080d77 (commit)
       via  1710573272f0063bc5e0109203c467bf9c44d944 (commit)
       via  80ca781adfb6f2ea447fac8ad9b06a8da7a16076 (commit)
       via  4a31ca461ffa845ba85f5190b767c50285c00141 (commit)
      from  214865ed5c66d8e363b16ea74509f23d93456707 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8c888d95f61814dd698bf76126a9079234080d77
Author: Kaz Kylheku <address@hidden>
Date:   Sat May 11 18:35:03 2019 -0400

    [SV 8297] Implement "grouped targets" for explicit rules.
    
    This patch allows "grouped targets" using the &: syntax:
    
      tgt1 tgt2 ... tgtn &: pre1 pre2 ...
            recipe
    
    When the &: separator is used (in single or double colon forms), all
    the targets are understood to be built by a single invocation of the
    recipe.  This is accomplished by piggy-backing on the already-existing
    pattern rule feature, using the file's "also_make" list.
    
    * NEWS: Add information about grouped targets.
    * doc/make.texi (Multiple Targets): Add information on grouped targets.
    (Pattern Intro): Refer to the new section to discuss multiple patterns.
    * src/main.c (main): Add "grouped-targets" to .FEATURES
    * src/read.c (make_word_type): Add new types for &: and &::.
    (eval): Recognize the &: and &:: separator and remember when used.
    (record_files): Accept an indicator of whether the rule is grouped.
    If so, update also_make for each file to depend on the other files.
    (get_next_mword): Recognize the &: and &:: word types.
    * tests/scripts/features/grouped_targets: New test script.
    * AUTHORS: Add Kaz Kylheku

commit 1710573272f0063bc5e0109203c467bf9c44d944
Author: Paul Smith <address@hidden>
Date:   Sat May 11 10:43:53 2019 -0400

    * variable.c (define_variable_in_set): Clear new structs

commit 80ca781adfb6f2ea447fac8ad9b06a8da7a16076
Author: Paul Smith <address@hidden>
Date:   Sat May 11 10:41:28 2019 -0400

    * po/LINGUAS: Add Portuguese translation

commit 4a31ca461ffa845ba85f5190b767c50285c00141
Author: Paul Smith <address@hidden>
Date:   Sat May 11 10:30:26 2019 -0400

    Add developer customizations
    
    * .ccls: Configure the ccls LSP server
    * .dir-locals.el: Reset some parameters for ccls and lsp-mode
    * .gitignore: Update for GTAGS and ccls
    * maintMakefile: Don't search hidden directories for sources

-----------------------------------------------------------------------

Summary of changes:
 .ccls                                  |  28 +++++++
 .dir-locals.el                         |  17 ++++
 .gitignore                             |   8 +-
 AUTHORS                                |   1 +
 NEWS                                   |   8 ++
 doc/make.texi                          | 104 ++++++++++++++++++------
 maintMakefile                          |   6 +-
 po/LINGUAS                             |   1 +
 src/main.c                             |   1 +
 src/makeint.h                          |   1 +
 src/read.c                             | 144 +++++++++++++++++++++++++--------
 src/variable.c                         |  12 +--
 tests/scripts/features/grouped_targets | 133 ++++++++++++++++++++++++++++++
 13 files changed, 392 insertions(+), 72 deletions(-)
 create mode 100644 .ccls
 create mode 100644 .dir-locals.el
 create mode 100644 tests/scripts/features/grouped_targets


hooks/post-receive
-- 
make



reply via email to

[Prev in Thread] Current Thread [Next in Thread]