为什么 freebsd ports makefile 中的 include 前面有一个点?他们用什么牌子的?

发布于 2024-09-11 07:47:06 字数 332 浏览 4 评论 0原文

我正在查看 FreeBSD 的 ports tarball 中的主 makefile。

我看到以下 include 指令:

PORTSTOP=   yes

.include <bsd.port.subdir.mk>

index:
    @rm -f ${INDEXDIR}/${INDEXFILE}
    @cd ${.CURDIR} && make ${INDEXDIR}/${INDEXFILE}

并且想知道为什么 include 前面有一个句点。

另外,他们在 FreeBSD 中使用 GNU Make 吗?

I was looking through the main makefile in the ports tarball of FreeBSD.

I saw the following include directive:

PORTSTOP=   yes

.include <bsd.port.subdir.mk>

index:
    @rm -f ${INDEXDIR}/${INDEXFILE}
    @cd ${.CURDIR} && make ${INDEXDIR}/${INDEXFILE}

and was wondering why a period was in front of include.

Also, are they using GNU Make in FreeBSD?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪意 2024-09-18 07:47:06

FreeBSD 有自己的 make 工具,它不是 GNU make。它符合 posix 标准,但有多个扩展,通常简称为 BSD make。
最初的 .但这只是 make 命令的某些构造的方式。

让人想起 C 编程的指令、条件和 for 循环
语言是在 make 中提供的。所有此类结构均由
以单点 (`.') 字符开头的行。

因此,它只是将某些结构与 make 语言的其余部分区分开来的一种方法,与 C/C++ 中用于预处理器指令的“#”不同。

FreeBSD have their own make tool, it's not GNU make. It's posix compliant but have several extensions, and is often just called BSD make.
The initial . though is just the way certain constructs of the make commands are made.

Directives, conditionals, and for loops reminiscent of the C programming
language are provided in make. All such structures are identified by a
line beginning with a single dot (`.') character.

So, it's just a way of distinguising certain constructs from the rest of the make language, not unlike the `#`` in C/C++ used for preprocessor directives.

当爱已成负担 2024-09-18 07:47:06

FreeBSD 使用 BSD 版本的 make,其他 BSD 也使用该版本(有时稍作修改)。例如,OpenBSD 和 NetBSD 包含在 BSD make 中。

make 程序符合 POSIX 标准,但当然不会努力模拟 GNU 功能或除了 POSIX 标准之外的任何相似之处

FreeBSD uses the BSD version of make which other BSDs use also(sometimes with slight modifications). For instance, OpenBSD and NetBSD are included with BSD make.

The make program is POSIX compliant but of course does not strive to emulate GNU features or be anything alike other than POSIX compliancy

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文