autoconf,如何包含 AC_CONFIG_SRCDIR 文件中的文件
我希望能够在配置运行期间将两个文件合并为一个。我已经在某些文件上使用 AC_CONFIG_SRCDIR[file.hpp]
宏进行纹理替换。是否有一些指令包含来自 file.hpp.in
的文件,某种 @include (another.hpp) @
或类似的东西?
谢谢
I would like to be able to merge two files into one during configure run. I already do textural replacement using AC_CONFIG_SRCDIR[file.hpp]
macro on some files. is there some directive to include files from file.hpp.in
, some sort of @include (another.hpp) @
or something like that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AC_CONFIG_FILES([file.hpp:file.hpp.in:another.hpp.in])
将对file.hpp.in
和another 执行文本替换.hpp.in
,然后将两个结果连接到file.hpp
中。AC_CONFIG_FILES([file.hpp:file.hpp.in:another.hpp.in])
will perform text substitution on bothfile.hpp.in
andanother.hpp.in
and then concatenate both results intofile.hpp
.我自己找到了答案。文件插入可以使用 ac_subst_file 完成。
Found answer myself. file insertion can be done using ac_subst_file.