Makefile 收集新目录中的文件列表
我有一个变量中的文件路径列表。我想将此列表中的每个文件复制到新位置。问题是我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以这样做
,我试过了,而且有效。
请记住,通配符是由 shell 完成的,而不是由命令完成的。
cp
将文件列表作为参数,并将所有文件复制到最后一个参数指定的位置。当您输入 cp *.cpp 时,所有 cp 程序都会将其参数视为当前目录中以 .cpp 结尾的文件。You could do
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 typecp *.cpp
all thecp
program sees as its arguments are the files in the current directory that end in.cpp
.