分类: C/C++
2015-08-16 16:40:08
make[1]: *** No rule to make target `clean'. Stop.
这是因为third_party/protobuf缺少makefile所致
为third_party/protobuf生成makefile的方法:
step1:进入third_party/protobuf 执行 autogen.sh 如果碰到gtest拉取失败,注释掉autogen.sh中gtest相关的代码
step2:运行bash autogen.sh生成configure文件
step3:执行./configure就可以生成Makefile。
再进入主目录即可编译通过。