Makefile error in UNIX

Hi,

I had created makefile to compile and create .exe file.
but while executing makefile i am receiving following error
I can create obj and lib files but not able to create executeable file due to following error.
0711-317 Error: undefined symbol: .fn_error(......)
0711-345 use the -bloadmap or -bnoquiet option to obtain more information.
make :...... Error 8
What is mean by Error 8 for make file?
Could you please help me to get out of it and create proper executable of my code.

Thanks in advance.

You are succesfull while compile and build..But it returns the error when you are run the execatuble file.. I m correct?

Hello,

Above issue is solved.
I am able to create object file and lib file with respective folders.

Now i written code for executable, but without any errors my executable is not gets created.
Here is the makefile code:
$(BIN)/EXT: $(OBJ)/EXT.o (respective dep. file paths)
$(CCC) -o $@ $(OBJ)/EXT.o .a (respective dep. file paths) $(CLDFLAGS) $(CLIBPATHS) $(CLIBS)
BIN is the folder path to store executable file "EXT".How can I create executable file through makefile?Thanks in advance.