Makefile 收集新目录中的文件列表

发布于 2024-11-16 12:40:32 字数 303 浏览 2 评论 0原文

我有一个变量中的文件路径列表。我想将此列表中的每个文件复制到新位置。问题是我对 makefile 非常陌生,而且我正在努力让任何东西正常工作。我的尝试最终达到了以下目的,尽管不起作用(而且可能完全错误),但我希望它能说明我正在尝试做的事情。

FILES = a/b/file c/d/file e/.../file etc...
copyfiles:
       for file in $(FILES); do \
           cp $$file newDir/$(notdir $$file);  \
       done

I have a list of file paths in a variable. I'd like to copy each file in this list to a new location. The problem is that I'm very new to makefiles and I'm struggling to get anything working. My attempt has culminated at the following, although not working (and probably totally wrong) I hope it illustrates what I'm trying to do.

FILES = a/b/file c/d/file e/.../file etc...
copyfiles:
       for file in $(FILES); do \
           cp $file newDir/$(notdir $file);  \
       done

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

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

发布评论

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

评论(1

z祗昰~ 2024-11-23 12:40:32

你可以这样做

FILES = a/b/file c/d/file e/.../file etc...
copyfiles:
    cp $(FILES) newDir

,我试过了,而且有效。

请记住,通配符是由 shell 完成的,而不是由命令完成的。 cp 将文件列表作为参数,并将所有文件复制到最后一个参数指定的位置。当您输入 cp *.cpp 时,所有 cp 程序都会将其参数视为当前目录中以 .cpp 结尾的文件。

You could do

FILES = a/b/file c/d/file e/.../file etc...
copyfiles:
    cp $(FILES) newDir

I tried it, and it works.

Remember, globbing is done by the shell, not by the commands. cp takes a list of files as arguments, and copies all of them to the location specified by the last argument. When you type cp *.cpp all the cp program sees as its arguments are the files in the current directory that end in .cpp.

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