<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>5488b945d66450bdbc8e9a133dd776fc23452a8d - Merge &quot;build(poetry): install dependencies with `--no-root`&quot; into integration</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#5488b945d66450bdbc8e9a133dd776fc23452a8d</link>
        <description>Merge &quot;build(poetry): install dependencies with `--no-root`&quot; into integration

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Mon, 10 Mar 2025 10:54:25 +0000</pubDate>
        <dc:creator>Manish Pandey &lt;manish.pandey2@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>c25405d6134c44646b92fe8404de776199f855d3 - build(poetry): install dependencies with `--no-root`</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#c25405d6134c44646b92fe8404de776199f855d3</link>
        <description>build(poetry): install dependencies with `--no-root`More recent versions of Poetry introduced the `package-mode` key toconfigure whether the project should be used for dependency managementonly, but this is incompatible with the earlier versions of Poetry thatwe still support.Instead, we rely on installing with the `--no-root` flag, which behavessimilarly. Installing without passing the `--no-root` flag isdeprecated, and in recent versions of Poetry has become a hard error.This change ensures that the build system always installs dependencieswith the required flag.Change-Id: Ic1543511314dcd20c00b73fd9e8cfae3dd034a41Signed-off-by: Chris Kay &lt;chris.kay@arm.com&gt;

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Mon, 10 Mar 2025 09:24:34 +0000</pubDate>
        <dc:creator>Chris Kay &lt;chris.kay@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>9bc738d209a1d30850e72349908d064abfbec5cc - Merge changes I0448caa4,I8ee666ee into integration</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#9bc738d209a1d30850e72349908d064abfbec5cc</link>
        <description>Merge changes I0448caa4,I8ee666ee into integration* changes:  build: install dependencies before doc build  fix(docs): fix the example command for doc build

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Wed, 06 Nov 2024 16:01:51 +0000</pubDate>
        <dc:creator>Manish V Badarkhe &lt;manish.badarkhe@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>50d9383becde5570bbadb388112c25f0a2e7e5e6 - build: install dependencies before doc build</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#50d9383becde5570bbadb388112c25f0a2e7e5e6</link>
        <description>build: install dependencies before doc buildSigned-off-by: Tamas Ban &lt;tamas.ban@arm.com&gt;Change-Id: I0448caa4e22c13d4dd821261642833d49ff7a234

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Tue, 03 Sep 2024 09:38:30 +0000</pubDate>
        <dc:creator>Tamas Ban &lt;tamas.ban@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>cd8eb18d580e9c413ec9e2c33ebf32992ffd31ca - Merge changes from topic &quot;ck/tf-a/verbosity-cleanup&quot; into integration</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#cd8eb18d580e9c413ec9e2c33ebf32992ffd31ca</link>
        <description>Merge changes from topic &quot;ck/tf-a/verbosity-cleanup&quot; into integration* changes:  build: unify verbosity handling  build: add facilities for interpreting boolean values  build: add string casing facilities to utilities

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Mon, 17 Jun 2024 09:01:49 +0000</pubDate>
        <dc:creator>Manish Pandey &lt;manish.pandey2@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>7c4e1eea61a32291a6640070418e07ab98b42442 - build: unify verbosity handling</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#7c4e1eea61a32291a6640070418e07ab98b42442</link>
        <description>build: unify verbosity handlingThis change introduces a few helper variables for dealing with verboseand silent build modes: `silent`, `verbose`, `q` and `s`.The `silent` and `verbose` variables are boolean values determiningwhether the build system has been configured to run silently orverbosely respectively (i.e. with `--silent` or `V=1`).These two modes cannot be used together - if `silent` is truthy then`verbose` is always falsy. As such:    make --silent V=1... results in a silent build.In addition to these boolean variables, we also introduce two newvariables - `s` and `q` - for use in rule recipes to conditionallysuppress the output of commands.When building silently, `s` expands to a value which disables thecommand that follows, and `q` expands to a value which supppressesechoing of the command:    $(s)echo &apos;This command is neither echoed nor executed&apos;    $(q)echo &apos;This command is executed but not echoed&apos;When building verbosely, `s` expands to a value which disables thecommand that follows, and `q` expands to nothing:    $(s)echo &apos;This command is neither echoed nor executed&apos;    $(q)echo &apos;This command is executed and echoed&apos;In all other cases, both `s` and `q` expand to a value which suppressesechoing of the command that follows:    $(s)echo &apos;This command is executed but not echoed&apos;    $(q)echo &apos;This command is executed but not echoed&apos;The `s` variable is predominantly useful for `echo` commands, where youalways want to suppress echoing of the command itself, whilst `q` ismore useful for all other commands.Change-Id: I8d8ff6ed714d3cb401946c52955887ed7dca602bSigned-off-by: Chris Kay &lt;chris.kay@arm.com&gt;

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Thu, 02 May 2024 17:52:37 +0000</pubDate>
        <dc:creator>Chris Kay &lt;chris.kay@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>0223d15764ed78319c0eac00c641c6148898a395 - Merge &quot;feat(docs): allow verbose build&quot; into integration</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#0223d15764ed78319c0eac00c641c6148898a395</link>
        <description>Merge &quot;feat(docs): allow verbose build&quot; into integration

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Tue, 18 Apr 2023 15:10:04 +0000</pubDate>
        <dc:creator>Sandrine Bailleux &lt;sandrine.bailleux@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>f771a3446356d92c6c27df5c4f3bb07a2561b36b - feat(docs): allow verbose build</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#f771a3446356d92c6c27df5c4f3bb07a2561b36b</link>
        <description>feat(docs): allow verbose buildIf V=1 is set (or directly Q=&quot;&quot;) in the &apos;make doc&apos; command line, thesphinx command that builds the documentation is displayed.Signed-off-by: Yann Gautier &lt;yann.gautier@foss.st.com&gt;Change-Id: I4961c124cc52d0183371f1d4bbc0e440f5ae6e63

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Fri, 17 Mar 2023 12:49:05 +0000</pubDate>
        <dc:creator>Yann Gautier &lt;yann.gautier@foss.st.com&gt;</dc:creator>
    </item>
<item>
        <title>fe4fa94e1e32f959424257060d359faa90428a26 - Merge &quot;doc: Treat Sphinx warnings as errors&quot; into integration</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#fe4fa94e1e32f959424257060d359faa90428a26</link>
        <description>Merge &quot;doc: Treat Sphinx warnings as errors&quot; into integration

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Tue, 21 Apr 2020 09:38:01 +0000</pubDate>
        <dc:creator>Sandrine Bailleux &lt;sandrine.bailleux@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>8b815a4e03169e8b00c3345d31250513fb4cc953 - doc: Treat Sphinx warnings as errors</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#8b815a4e03169e8b00c3345d31250513fb4cc953</link>
        <description>doc: Treat Sphinx warnings as errors&apos;make doc&apos; will now fail if Sphinx outputs any warning messages duringdocumentation generation.Change-Id: I3e466af58ccf29b14a7e61037539b79ab6fc6037Signed-off-by: Sandrine Bailleux &lt;sandrine.bailleux@arm.com&gt;

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Fri, 17 Apr 2020 12:19:20 +0000</pubDate>
        <dc:creator>Sandrine Bailleux &lt;sandrine.bailleux@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>12b67439e93a78a4b756e987e1bd1b6e22cc4bf8 - Merge &quot;doc: Add minimal Sphinx support&quot; into integration</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#12b67439e93a78a4b756e987e1bd1b6e22cc4bf8</link>
        <description>Merge &quot;doc: Add minimal Sphinx support&quot; into integration

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Tue, 21 May 2019 13:42:17 +0000</pubDate>
        <dc:creator>Sandrine Bailleux &lt;sandrine.bailleux@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>653279b015080969eaf4ac85b1e3a31965666550 - doc: Add minimal Sphinx support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_ARM-atf/docs/Makefile#653279b015080969eaf4ac85b1e3a31965666550</link>
        <description>doc: Add minimal Sphinx supportAdd the essentials for supporting a Sphinx documentation build:- A makefile under docs/ to invoke Sphinx with the desired output  format- A Sphinx master configuration file (conf.py)- A single, top-level index page (index.rst)- The TF.org logo that is integrated in the the sidebar of the  rendered outputChange-Id: I85e67e939658638337ca7972936a354878083a25Signed-off-by: Paul Beesley &lt;paul.beesley@arm.com&gt;

            List of files:
            /rk3399_ARM-atf/docs/Makefile</description>
        <pubDate>Wed, 23 Jan 2019 15:39:39 +0000</pubDate>
        <dc:creator>Paul Beesley &lt;paul.beesley@arm.com&gt;</dc:creator>
    </item>
</channel>
</rss>
