<p>On Feb 19, 2012 7:39 PM, &quot;Tom Stellard&quot; &lt;<a href="mailto:tstellar@gmail.com">tstellar@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; On Sun, Feb 19, 2012 at 10:13:48PM -0500, Matt Turner wrote:<br>
&gt; &gt; Hi Tom,<br>
&gt; &gt;<br>
&gt; &gt; Very happy to see this. It looks good, and I&#39;m glad that you replaced<br>
&gt; &gt; two Makefiles with only a single Makefile.am. A couple of comments<br>
&gt; &gt; below.<br>
&gt; &gt;<br>
&gt; &gt; On Sun, Feb 19, 2012 at 10:05 PM, Tom Stellard &lt;<a href="mailto:tstellar@gmail.com">tstellar@gmail.com</a>&gt; wrote:<br>
&gt; &gt; &gt; ---<br>
&gt; &gt; &gt;  <a href="http://configure.ac">configure.ac</a>                                       |    1 +<br>
&gt; &gt; &gt;  src/gallium/drivers/r300/.gitignore                |    5 ++<br>
&gt; &gt; &gt;  src/gallium/drivers/r300/Makefile                  |   25 ---------<br>
&gt; &gt; &gt;  src/gallium/drivers/r300/Makefile.am               |   38 ++++++++++++++<br>
&gt; &gt; &gt;  src/gallium/drivers/r300/compiler/tests/.gitignore |    1 -<br>
&gt; &gt; &gt;  src/gallium/drivers/r300/compiler/tests/Makefile   |   53 --------------------<br>
&gt; &gt; &gt;  6 files changed, 44 insertions(+), 79 deletions(-)<br>
&gt; &gt; &gt;  create mode 100644 src/gallium/drivers/r300/.gitignore<br>
&gt; &gt; &gt;  delete mode 100644 src/gallium/drivers/r300/Makefile<br>
&gt; &gt; &gt;  create mode 100644 src/gallium/drivers/r300/Makefile.am<br>
&gt; &gt; &gt;  delete mode 100644 src/gallium/drivers/r300/compiler/tests/.gitignore<br>
&gt; &gt; &gt;  delete mode 100644 src/gallium/drivers/r300/compiler/tests/Makefile<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; diff --git a/<a href="http://configure.ac">configure.ac</a> b/<a href="http://configure.ac">configure.ac</a><br>
&gt; &gt; &gt; index 846b623..85da4d3 100644<br>
&gt; &gt; &gt; --- a/<a href="http://configure.ac">configure.ac</a><br>
&gt; &gt; &gt; +++ b/<a href="http://configure.ac">configure.ac</a><br>
&gt; &gt; &gt; @@ -1871,6 +1871,7 @@ if test &quot;x$with_gallium_drivers&quot; != x; then<br>
&gt; &gt; &gt;             gallium_require_llvm &quot;Gallium R300&quot;<br>
&gt; &gt; &gt;             GALLIUM_DRIVERS_DIRS=&quot;$GALLIUM_DRIVERS_DIRS r300&quot;<br>
&gt; &gt; &gt;             gallium_check_st &quot;radeon/drm&quot; &quot;dri-r300&quot; &quot;xorg-r300&quot; &quot;&quot; &quot;xvmc-r300&quot; &quot;vdpau-r300&quot; &quot;va-r300&quot;<br>
&gt; &gt; &gt; +            AC_CONFIG_FILES([src/gallium/drivers/r300/Makefile])<br>
&gt; &gt;<br>
&gt; &gt; Just add this to the existing AC_CONFIG_FILES around line 1934.<br>
&gt; &gt;<br>
&gt;<br>
&gt; I put it here so the Makefile would only be generated if the r300 driver<br>
&gt; was actually being built.  Is there any advantage to generating all the<br>
&gt; Makefiles unconditionally?</p>
<p>I think autoconf will fill in anything it finds in AC_CONFIG_FILES regardless. There&#39;s no real harm.</p>
<p>--<br>
Dan </p>