Hi all,
I got the solution of above problem.
$(wildcard pathto/newmat/*.o) add this line to
/bin/Makefile on line number
19.
i.e.
EXTRA_OBJS = $(wildcard pathto/newmat/*.o)
AND
-Xlinker and
-zmuldefs add this into a file named
/config/omnetpp.config on line number
21.
i.e.
LDFLAGS = -Xlinker -zmuldefs
Then
don't do ./makemake otherwise it will reset /bin/Makefile
do make, and now you can use newmat functionality in your program i.e. .cc file.
Thank you.