On Mon, 15 Jul 2002, Charles Lockhart wrote: >It seems like most of the time when I save a change and then run make, I >get "make: Nothing to be done for 'default'".
GNU Make only builds changed files if there is a dependencies file. I.e. something that looks like: somefile.o: somefile.c Then, whenever somefile.c changes, somefile.o is re-generated. The GNU C compiler can produce these dependency lists with the -M switch. --jc -- Jimen Ching (WH6BRR) [EMAIL PROTECTED] [EMAIL PROTECTED]
