在Windows 7中使用Makefile.am和Makefil.in?

我正在搜索其他帖子,如果这是一个愚蠢的问题我道歉…但我有一些我想编译的源代码.一个文件夹有一个Makefile.am和Makefile.in,我假设我需要使用,但无法弄清楚如何.有什么建议?

谢谢

最佳答案 你需要一些版本的GNU Automake

在维基百科中可以找到对automake的介绍.

http://en.wikipedia.org/wiki/Automake

Automake可以安装在Windows中.

简单摘要:

Makefile.am,Makefile.in和config.h.in都通过Perl和M4宏预处理器的魔力结合在一起.

攻击过程:

得到一个perl安装
获取用于Windows安装的autotools

一旦它全部安装完毕,调用./configure和bob是你的叔叔,你得到一个makefile.

这是unix脚本活动的这一节的历史来源

{if no configure.in}
    #.autoscan
{if no ./configure}
    #.autoconf

#./configure
#make
#make install

一旦安装了所有工具,您也可以这样做.

点赞