Re: makefile question: always recompile a file

2009-08-27 Thread Jim
On Aug 26, 5:02 pm, Jim wrote: > Hi, > > I'm using a make program similar to gnu make.  I'd like to always > recompile a file whenever ANY file is compiled (or assembled). > Preferably (but not absolutely necessary), I'd like the file to > recompile if the linker runs as well, but this sounds real

Re: makefile question: always recompile a file

2009-08-27 Thread Rainer Weikusat
Jim writes: > I'm using a make program similar to gnu make. I'd like to always > recompile a file whenever ANY file is compiled (or assembled). > Preferably (but not absolutely necessary), I'd like the file to > recompile if the linker runs as well, but this sounds really tough. This is actually

Re: makefile question: always recompile a file

2009-08-27 Thread Scott Lurndal
Jim writes: >Hi, > >I'm using a make program similar to gnu make. I'd like to always >recompile a file whenever ANY file is compiled (or assembled). >Preferably (but not absolutely necessary), I'd like the file to >recompile if the linker runs as well, but this sounds really tough. >In case you'r