我的制作文件:
all: ...(other rules) clean
clean:
rm $(find . -type f -executable)
当我从上面的 Makefile 中删除clean
规则时,一切都按预期工作。添加后,make
(也make clean
)命令导致:
rm
rm: missing operand
Try 'rm --help' for more information.
make: *** [Makefile:46: clean] Error 1
是什么导致这里出现问题,我该如何解决?