当安装fcgiwrap遇到make问题

时间:2011-08-01 17:33:04

标签: ubuntu makefile

通过this article,我下载fcgiwrap并解压缩并输入。但是当我运行make时,报告错误

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

ll。

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

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

env:ubuntu 10.04

1 个答案:

答案 0 :(得分:1)

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

相关问题