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 <[EMAIL PROTECTED]> 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 > [email protected] > http://lists.gnu.org/mailman/listinfo/help-make > >
_______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
