为linux/freebsd做的替代方案?

问题描述:

对于Linux/freebsd, make 有哪些替代方案?

What are some alternatives to make for linux/freebsd?

我喜欢 SCons .它的构建方式使得每个构建脚本(SConstruct文件)也是语法上有效的Python程序.因此,您可以根据需要在构建脚本中构建任意Python逻辑.

I like SCons. It is constructed in such a way that every build script (a SConstruct file) is also a syntactically valid Python program. So, you can build arbitrary Python logic into your build script if you need to.

它也比make快得多,并且可以自动计算多种依赖关系.

It's also much faster than make and calculates many kinds of dependencies automatically.