我是makefile的新手,所以请多多包涵。我尝试在 Code Composer Studios 中编辑自动生成的 makefile,但出现错误。这是makefile的摘录
# All Target
all: makefile_project_test1.out
@echo ''
@echo '============================'
@echo 'APPLICATION BUILD SUCCESSFUL'
@echo '============================'
@echo ''
@myfaketarget
# Other Targets
.PHONY: myfaketarget
myfaketarget:
echo "TEST MY FAKE TARGET"
这是打印出来的错误消息。
process_begin: CreateProcess(NULL, myfaketarget, ...) failed.
make (e=2): The system cannot find the file specified.
gmake: *** [all] Error 2
任何人都可以对此有所了解,并帮助我将其编译干净吗?谢谢