bug#77897: "make clean" should do a "rm -rf .deps"

2025-04-18 Thread Peter Johansson
On 4/19/25 13:16, Sam Varshavchik wrote: After digging through make's documentation, a clue emerged: #    If an included makefile cannot be found in any of these directories # it is not an immediately fatal error; processing of the makefile # containing the 'include' continues.  Once it has f

bug#77897: "make clean" should do a "rm -rf .deps"

2025-04-18 Thread Sam Varshavchik
Peter Johansson writes: I see the following at the end of configuring: checking dependency style of g++... (cached) gcc3 checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands

bug#77897: "make clean" should do a "rm -rf .deps"

2025-04-18 Thread Peter Johansson
On 4/19/25 11:21, Sam Varshavchik wrote: Peter Johansson writes: Hi Sam, On 4/18/25 21:56, Sam Varshavchik wrote: Set up a minimal Makefile.am and configure.ac to build this. Building this will create .deps/ with a: main.o: main.h main.c When I do this with GCC, the .deps/ also contai

bug#77897: "make clean" should do a "rm -rf .deps"

2025-04-18 Thread Sam Varshavchik
Peter Johansson writes: Hi Sam, On 4/18/25 21:56, Sam Varshavchik wrote: Set up a minimal Makefile.am and configure.ac to build this. Building this will create .deps/ with a: main.o: main.h main.c When I do this with GCC, the .deps/ also contains a line main.h: and I have no problem r

bug#77897: "make clean" should do a "rm -rf .deps"

2025-04-18 Thread Peter Johansson
Hi Sam, On 4/18/25 21:56, Sam Varshavchik wrote: Set up a minimal Makefile.am and configure.ac to build this. Building this will create .deps/ with a: main.o: main.h main.c When I do this with GCC, the .deps/ also contains a line main.h: and I have no problem removing main.h and the #inc

bug#77891: Typo documentation fix

2025-04-18 Thread Karl Berry
-# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# developer-defined test setup AM_TESTS_ENVIRONMENT (if any), and Thanks Reuben. I applied it. -k

bug#59099: 3-rd party aux files.

2025-04-18 Thread Karl Berry
I renamed find_file to find_file_with_opt Thanks. I would prefer to rename the original function to find_file_m4 I agree in the abstract, but it's not worth creating an incompatibility. Look, the last argument *was* described: Yes, I saw that, but a few words in the description wo

bug#77897: "make clean" should do a "rm -rf .deps"

2025-04-18 Thread Nick Bowler
On Fri, Apr 18, 2025 at 07:56:49AM -0400, Sam Varshavchik wrote: > .deps/filename gets created during building with --enable-dependency-tracking > and should get removed by make clean. But it does not. For example: Use 'make distclean' to remove depfiles. Cheers, Nick

bug#77897: "make clean" should do a "rm -rf .deps"

2025-04-18 Thread Sam Varshavchik
.deps/filename gets created during building with --enable-dependency- tracking and should get removed by make clean. But it does not. For example: main.h: int helloworld(); main.c: #include int helloworld() { return 0; } int main() { helloworld(); } Set up a minimal Makefile.am and