[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 have

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

Re: [ns] Problem with .o files

2006-08-09 Thread Vindya Amaradasa
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 section on Makefile I have put this . tcp/file.o \ .. When I do ./configure