我创建一个C项目,然后在src
目录中创建一个makefile。那么如何运行该makefile来构建我的项目?默认的构建器似乎是内部构建器
我将builder更改为GNU Make
,然后在C/C++ build
中,将build命令设置为mingw32-make -f path_to_my_makefile
。之后,ctrl+b
构建了我的项目。但是它给出了这样的错误:>
mingw32-make: *** No rule to make target 'test.c', needed by 'test.exe'. Stop
在我的src
文件夹中,有test.c
和Makefile
。 Makefile的内容是
test.exe: test.c
gcc -Wall test.c -o test.exe