RE: Non existing target not marked as new

2017-02-12 Thread Raz Manor
lp. Peace and love, Raz -Original Message- From: Paul Smith [mailto:psm...@gnu.org] Sent: Thursday, February 9, 2017 5:54 PM To: Raz Manor ; bug-make@gnu.org Subject: Re: Non existing target not marked as new On Thu, 2017-02-09 at 08:16 +, Raz Manor wrote: > Unfortunately I can&

Re: Non existing target not marked as new

2017-02-12 Thread Paul Smith
On Sun, 2017-02-12 at 12:11 +, Raz Manor wrote: > OK, I got it. I used .SECONDARY instead of .PRECIOUS to preserve the > .d and .o files. I did it because I still wanted files to be deleted > if they were stopped mid-build. Is there a way to get both of the > behaviors? The sample auto-dep mak

Re: Non existing target not marked as new

2017-02-09 Thread Paul Smith
On Thu, 2017-02-09 at 08:16 +, Raz Manor wrote: > Unfortunately I can't send you my makefile as it gives up company IP. I wasn't suggesting you send your makefile: we don't have the time or energy to understand and debug an entire make environment :). I was suggesting you create a small sampl

RE: Non existing target not marked as new

2017-02-09 Thread Raz Manor
d/common/tests/timer_test'. make: 'build/common/tests/timer_test' is up to date. I removed the other .d files includes but that’s the idea. Note the line Prerequisite 'build/common/tests/timer_test.d' of target 'build/common/tests/timer_test.o' does not exist

Re: Non existing target not marked as new

2017-02-08 Thread Philip Guenther
On Wed, Feb 8, 2017 at 5:48 AM, Raz Manor wrote: > I created a makefile using instructions for this post: > http://make.mad-scientist.net/papers/advanced-auto-dependency-generation/ > > To test it, I make all my files, then deleted one .d file and touched one of > the header files present in that

Re: Non existing target not marked as new

2017-02-08 Thread Paul Smith
On Wed, 2017-02-08 at 13:48 +, Raz Manor wrote: > I created a makefile using instructions for this post: http://make.mad > -scientist.net/papers/advanced-auto-dependency-generation/ > To test it, I make all my files, then deleted one .d file and touched > one of the header files present in that

Non existing target not marked as new

2017-02-08 Thread Raz Manor
Hello, I created a makefile using instructions for this post: http://make.mad-scientist.net/papers/advanced-auto-dependency-generation/ To test it, I make all my files, then deleted one .d file and touched one of the header files present in that .d file. The target, however, was not rebuilt. Run