微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Fubsy 软件构建工具

程序名称:Fubsy

授权协议: BSD

操作系统: Windows

开发语言: Google Go

Fubsy 介绍

Fubsy 是一个高效的软件构建工具。使用 Go 语言编写,该工具目前还处于非常早期的阶段。

In concrete terms, it lets you conditionally (re)build targets from sources
based on which sources have changed since the last build. Typically, targets
and sources are all files in a directory tree. In theory, they can be any
resource on a computer. More abstractly, Fubsy is an engine for conditional
execution of actions based on the dependencies between related resources.

示例代码

main {
    CC = "/usr/bin/gcc"
    source = <src/*.c>
    headers = <src/*.h>

    "myapp": headers + source {
        "$CC -o $TARGET $source"
    }
}

Fubsy 官网

http://fubsy.gerg.ca/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐