RE: Reg Make build on LINUX

2008-06-16 Thread A, Sravanthi
Smith, One more question iam having make files in every subfolder. I cannot give specific name for .d file. How can I append dependencies when we have multiple levels of compiling? Thanks, Sravanthi -Original Message- From: A, Sravanthi [CCC-OT_IT] Sent: Monday, June 16, 2008 6:12 PM T

RE: Reg Make build on LINUX

2008-06-16 Thread A, Sravanthi
Smith, Thanks , now iam able to compile. Regards, Sravanthi -Original Message- From: Paul Smith [mailto:[EMAIL PROTECTED] Sent: Monday, June 16, 2008 6:07 PM To: A, Sravanthi [CCC-OT_IT] Cc: bug-make@gnu.org Subject: RE: Reg Make build on LINUX On Mon, 2008-06-16 at 18:00 +0530, A, S

RE: Reg Make build on LINUX

2008-06-16 Thread A, Sravanthi
Smith /Team, Can you help on one issue in compiling. Issue: When any changes to dependant files are changed, make is not rebuilding the binaries. Can you please help on this. I tried to use -MM, -MP options, but still it says binary is up to date after I made changes. For example my c file is dep

RE: Reg Make build on LINUX

2008-06-16 Thread Paul Smith
On Mon, 2008-06-16 at 18:00 +0530, A, Sravanthi wrote: > %.o: %.c > #generate the *.d file with the dependency targets. > $(CC) $(CFLAGS) -MM -MP $< > $(subst .o,.d,$@) > $(CC) $(CFLAGS) -c $*.c > -include a.d -include is a make command, not a shell command, so