GNU bug report logs - #77897
"make clean" should do a "rm -rf .deps"

Previous Next

Package: automake;

Reported by: Sam Varshavchik <mrsam <at> courier-mta.com>

Date: Fri, 18 Apr 2025 11:58:05 UTC

Severity: normal

Done: Karl Berry <karl <at> freefriends.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Sam Varshavchik <mrsam <at> courier-mta.com>
To: 77897 <at> debbugs.gnu.org
Subject: bug#77897: "make clean" should do a "rm -rf .deps"
Date: Fri, 18 Apr 2025 07:56:49 -0400
[Message part 1 (text/plain, inline)]
.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 <main.h>

int helloworld()
{
   return 0;
}

int main()
{
   helloworld();
}

Set up a minimal Makefile.am and configure.ac to build this. Building this  
will create .deps/<filename> with a:

main.o: main.h main.c

Now: 1) 'rm -f main.h"  2) Remove the #include

Then try to build this:

make clean
make

Will fail because that dependency exists and make does not know how to build  
main.h. I have to rm -rf .deps myself.

automake 1.16.5

[Message part 2 (application/pgp-signature, inline)]

This bug report was last modified 28 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.