使用 vpath 时 Makefile 找不到文件

发布于 2025-01-02 19:27:59 字数 648 浏览 1 评论 0 原文

当我使用 make 时,它​​说

gcc -I./header -c -g main.c
gcc: error: main.c: No such file or directory

我的 makefile 在这里:

vpath %.c ./src
vpath %.h ./header

CC = gcc
FLAG = -I./header -c -g
objects = main.o a.o b.o

app: ${objects}
    ${CC} -o app ${objects}

main.o: main.c command.h
    ${CC} ${FLAG} main.c

a.o: a.c command.h
    ${CC} ${FLAG} a.c

b.o: b.c command.h
    ${CC} ${FLAG} b.c

clean: 
    -rm *.o app

.PHONY: clean

并且文件存储如下:

.
|-- header
|   `-- command.h
|-- Makefile
`-- src
    |-- a.c
    |-- b.c
    `-- main.c

Makefile 有什么问题?

When I use make, it says

gcc -I./header -c -g main.c
gcc: error: main.c: No such file or directory

My makefile is here:

vpath %.c ./src
vpath %.h ./header

CC = gcc
FLAG = -I./header -c -g
objects = main.o a.o b.o

app: ${objects}
    ${CC} -o app ${objects}

main.o: main.c command.h
    ${CC} ${FLAG} main.c

a.o: a.c command.h
    ${CC} ${FLAG} a.c

b.o: b.c command.h
    ${CC} ${FLAG} b.c

clean: 
    -rm *.o app

.PHONY: clean

and files are stored like this:

.
|-- header
|   `-- command.h
|-- Makefile
`-- src
    |-- a.c
    |-- b.c
    `-- main.c

What's wrong with the Makefile?

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

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

发布评论

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

评论(1

梦开始←不甜 2025-01-09 19:27:59

您应该使用自动变量而不是硬编码值对于配方中的文件名:

main.o: main.c command.h
    ${CC} ${FLAG} 
lt;

...

这允许 Make 插入在 vpath 中找到的正确文件名:

当通过目录搜索在另一个目录中找到先决条件时,这不能更改规则的配方;他们将按照书面规定执行。因此,您必须小心编写配方,以便它将在 make 找到它的目录中查找先决条件。

这是通过自动变量完成的,例如 $^ (参见 自动变量)。例如,$^ 的值是规则的所有先决条件的列表,包括在其中找到它们的目录的名称,以及 $@ 的值> 是目标。

You should use automatic variables instead of hard coded values for file names in recipes:

main.o: main.c command.h
    ${CC} ${FLAG} 
lt;

...

This allows Make to insert the right file names found in vpath:

When a prerequisite is found in another directory through directory search, this cannot change the recipe of the rule; they will execute as written. Therefore, you must write the recipe with care so that it will look for the prerequisite in the directory where make finds it.

This is done with the automatic variables such as $^ (see Automatic Variables). For instance, the value of $^ is a list of all the prerequisites of the rule, including the names of the directories in which they were found, and the value of $@ is the target.

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