help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Makefile error


From: Gautam Shejwalkar
Subject: Re: Makefile error
Date: Tue, 4 Nov 2008 09:49:27 +0530

Hi Jeeva,

In your Makefile, tab's are missing in front of the commands you want to execute. remove space and '->' from the following lines and insert a tab. Hope that will work.
23c23
<    ->   $(CXX) $(CXXFLAGS) -c $<
---
>     $(CXX) $(CXXFLAGS) -c $<
26c26
<    ->   $(CXX) $(CXXFLAGS) $< -o $@ -lm $(TLIB) -lg++
---
>     $(CXX) $(CXXFLAGS) $< -o $@ -lm $(TLIB) -lg++
47c47
<    ->   $(CXX) $(CXXFLAGS) -o $@ $(OBJ) -lm $(TLIB) -lg++
---
>     $(CXX) $(CXXFLAGS) -o $@ $(OBJ) -lm $(TLIB) -lg++
51c51
<    ->   makedepend $(CXXFLAGS) -Y $(SRC)
---
>     makedepend $(CXXFLAGS) -Y $(SRC)
54c54
<    ->   rm -f $(OBJ)
---
>     rm -f $(OBJ)

Regards,
-sg


On Tue, Nov 4, 2008 at 8:30 AM, jeeva saravanan <address@hidden> wrote:
Hi,
   I am getting the following error , when try to compile the attached makefile.

Makefile:23: *** missing separator.  Stop.

Kindly hep me.

Thanks,
jeeva



_______________________________________________
Help-make mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/help-make



reply via email to

[Prev in Thread] Current Thread [Next in Thread]