error in MakeFile.Solaris

Hi,
I am getting the follwing error while i was running the shell script to make the build.

make: Fatal error in reader: Makefile.Solaris_2.6, line 157: Unexpected end of
line seen .

May i knwo what does this mean.The line 157 has the last file that is supposed to be copied from the current directory :confused:

Will some one help me out please.I am stuck for 2 days over here.

Can you post here some chunk of your makefile? This can help to solve the problem

Try this. There should be a tab in your first target, insted of space.
Example Code:
program : main.o a.o b.o
<tab>cc -o program main.o a.o b.o
main.o : main.c
<tab>cc -c main.c
a.o : a.c
<tab>cc -c a.c
b.o : b.c
<tab>cc -c b.c