在 Linux 环境安装 Nginx 的问题,执行步骤:
1:wget http://nginx.org/download/nginx-1.8.0.tar.gz
2:tar -zxvf nginx-1.8.0.tar.gz
3:./configure --prefix=/usr/local/nginx-1.8.0 --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcre
4:make && make install
但在第 4 步报错:make: *** No rule to make target build', needed bydefault'. Stop.
请问这是什么错?怎么解决?