问题
I can't figure out why I'm getting the error
library.mak:95: *** missing separator. Stop.
When I use make on cygwin. The code at that specific spot is
$(eval $(RULES))
$(EXAMPLES) $(TESTPROGS) $(TOOLS): $(THIS_LIB) $(DEP_LIBS)
$(TESTPROGS): $(SUBDIR)$(LIBNAME)
examples: $(EXAMPLES)
回答1:
Could you try to:
git config --global core.autocrlf false
And checkout again the repository?
I'm wondering if the \r\n isn't at fault here...
来源:https://stackoverflow.com/questions/11634318/makefile-missing-separator-on-cygwin