Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找不到任何关于此的文档。在 Makefile 中找到这些带有“at”符号的变量到底是什么?例子:
temp = @temp@ srcdir = @srcdir@
它们是放置在 autoconf 或相关工具的 makefile 中的占位符。配置阶段的后处理将它们替换为在配置过程中确定的值。
通常,您会在 Makefile.in 或类似名称中看到它们;这些值不应出现在最终生成的 makefile 中。它表明配置过程未正确完成。