gpt4 book ai didi

我可以在makefile的子文件夹中执行命令吗

转载 作者:行者123 更新时间:2023-12-03 16:00:12 43 4
gpt4 key购买 nike

我的项目文件夹看起来像这样

Makefile
/src
/flash
build.xml
/blabla
...

我写了一个像这样的 Makefile
flash: src/flash/bin-debug/App.swf

src/flash/bin-debug/App.swf:
cd src/flash
ant

当我执行 make flash ,我收到以下消息:
cd src/flash/
ant
Buildfile: build.xml does not exist!
Build failed
make: *** [src/flash/bin-debug/App.swf] Error 1

我如何执行 antsrc/flash

最佳答案

make creates a new subshell for each line .尝试:

src/flash/bin-debug/App.swf:
cd src/flash; ant

否则,这两个命令将在两个单独的子 shell 中执行。 cd的效果当第一个子shell终止时丢失。

关于我可以在makefile的子文件夹中执行命令吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9464311/

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