Hi Padma,
I don't think, its only from there, we need to take care of the following lines in the makefile.vc too,
install: force install-ns install-man install-recursive
install-ns: force
$(INSTALL) -m 555 -o bin -g bin ns $(DESTDIR)$(BINDEST)
install-man: force
$(INSTALL) -m 444 -o bin -g bin ns.1 $(DESTDIR)$(MANDEST)/man1
install-recursive: force
for i in $(SUBDIRS); do ( cd $$i; $(MAKE) install; ) done
I think this(install-recursive) needs to taken care (removed or commented out) of also. correct me if Iam wrong.
Vijay