Re: [ns] Problem with .o files

2006-08-09 Thread Lee Begg
Try adding your "tcp/file.o" to OBJ_CC in Makefile.in, then run ./configure and make. The Makefile.in file is used to create the Makefile which is used by "make". Regards Lee Begg On Wed, 09 Aug 2006 20:40, Aleksandar Smolovic wrote: > Hi all, > > I have file.cc and file.h and I put that in for

Re: [ns] Problem with .o files

2006-08-09 Thread Vindya Amaradasa
t; To: Sent: Wednesday, August 09, 2006 9:40 AM Subject: [ns] Problem with .o files > > Hi all, > > I have file.cc and file.h and I put that in for example ~/tcp/file.cc and > ~/tcp/file.h. > > Now I make neccesary modifications and among other things in OBJ_CC >

Re: [ns] Problem with .o files

2006-08-09 Thread Prashant Batra
Hi, Your observations are expected!! The only thing that's going wrong in your case is that you do './configure' over and over again !! When you run './configure', it regenerates a new Makefile, which overwrites the Makefile that you modified. Thus, your changes vanish. So, after you modify t

[ns] Problem with .o files

2006-08-09 Thread Aleksandar Smolovic
Hi all, I have file.cc and file.h and I put that in for example ~/tcp/file.cc and ~/tcp/file.h. Now I make neccesary modifications and among other things in OBJ_CC section on "Makefile" I have put this . tcp/file.o \ .. When I do "./configure" and "make" and "make install" I do not ha