Ubuntu 安装fcgiwrap时遇到问题

Ubuntu 安装fcgiwrap时遇到问题,ubuntu,makefile,Ubuntu,Makefile,通过,我下载了fcgiwrap并将其解压缩到cd中。但当我运行make时,报告了错误 make: *** No targets specified and no makefile found. Stop. 嗯 当前目录中有一个Makefile.in。为什么make看不到它 env:ubuntu10.04make查找Makefile。没有一个:Makefile.in与Makefile不同。您需要运行aclocal,autoheader,并从configure.ac生成configure;或者,

通过,我下载了fcgiwrap并将其解压缩到cd中。但当我运行make时,报告了错误

make: *** No targets specified and no makefile found.  Stop.

当前目录中有一个Makefile.in。为什么
make
看不到它


env:ubuntu10.04

make
查找
Makefile
。没有一个:
Makefile.in
Makefile
不同。您需要运行
aclocal
autoheader
,并从
configure.ac
生成
configure
;或者,正如
README.rst
文件中的构建说明所述(您应该阅读这些文件,您知道),运行
autoreconf-i
。然后,您将能够运行
/configure
生成
Makefile
,然后运行
make
生成程序。

make
查找
Makefile
。没有一个:
Makefile.in
Makefile
不同。您需要运行
aclocal
autoheader
,并从
configure.ac
生成
configure
;或者,正如
README.rst
文件中的构建说明所述(您应该阅读这些文件,您知道),运行
autoreconf-i
。然后,您可以运行
/configure
生成
Makefile
,然后运行
make
生成程序

drwxrwxr-x 2 root root  4096 2011-08-01 17:15 ./
drwxr-xr-x 5 root root  4096 2011-08-01 16:51 ../
-rw-rw-r-- 1 root root  1251 2010-09-14 22:32 configure.ac
-rw-rw-r-- 1 root root  3220 2010-09-14 22:32 fcgiwrap.8
-rw-rw-r-- 1 root root 16757 2010-09-14 22:32 fcgiwrap.c
-rw-rw-r-- 1 root root    82 2010-09-14 22:32 .gitignore
-rw-rw-r-- 1 root root   577 2010-09-14 22:32 Makefile.in
-rw-rw-r-- 1 root root  1624 2010-09-14 22:32 README.rst