我正在搜索其他帖子,如果这是一个愚蠢的问题,我道歉...但我有一些我想编译的源代码。一个文件夹有一个Makefile.am和Makefile.in,我假设我需要使用,但无法弄清楚如何。有什么建议吗?
由于
答案 0 :(得分:2)
您需要某种版本的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
一旦安装了所有工具,您也可以这样做。