我有一个简单的 makefile 项目,我只想make install
将文件复制到目标文件夹,即:
all:
@echo "Nothing to build"
install:
cp ./*.wav /usr/share/snd
my_custom_target:
@echo "For testing purposes"
但是,每当我尝试构建任何目标(即:clean、all、install、my_custom_target 等)时,每个目标都会回显“ Nothing to be done for 'clean'
”、“ Nothing to be done for 'all'
”等。我的猜测是,makefile 项目至少期望构建一些东西(即:C/C++ 文件等)。
有人对如何进行此操作有任何建议吗?
谢谢你。