报错解决——make: *** No targets specified and no makefile found. Stop

 1 wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.6.tar.gz
 2 
 3 tar zxvf ncurses-5.6.tar.gz
 4 
 5 #切换目录到ncurses下
 6 ./configure -prefix=/usr/local -with-shared-without-debug
 7 
 8 make
 9 
10 make install

    

原文地址:https://www.cnblogs.com/zhuminghui/p/9376573.html