gpt4 book ai didi

自动工具包括路径

转载 作者:行者123 更新时间:2023-12-02 20:14:55 25 4
gpt4 key购买 nike

我有一个像

这样的目录结构
Makefile.am
Configure.ac
src/
hello.c
Makefile.am

include/
hello.h

如何在 src 的 Makefile.am 中指定包含路径,使其包含来自 include/dir 的头文件以及 c 文件取决于头文件。因此,如果我修改任何 .h 文件,它会强制重新编译 .cc 文件。

定义 AM_CPPFLAGS' 发出警告

configure.ac:5: warning: macro `AM_CPPFLAGS' not found in library

最佳答案

src/Makefile.am中写入:

AM_CPPFLAGS = -I$(top_srcdir)/include
bin_PROGRAMS = hello
hello_SOURCES = hello.c

hello.chello.h之间无需标记依赖关系,it will be recorded automatically the first time you build your project .

关于自动工具包括路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7589676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com