这个makefile错在哪里?
makefile 这么写的1 : 1.o
cc -o 1.o
1.o : 1.c
cc -c 1.c
1.c 么,就是简单的 hello world.
#include<stdio.h>
int main(void)
{
printf("hello world");
return 0;
}
在 cmd 里面输入 mingw32-make 之后
蹦出一堆东西:
cc -o 1.o
process_begin: CreateProcess(NULL, cc -o 1.o, ...) failed.
make (e=2):
makefile:2: recipe for target '1' failed
mingw32-make: *** [1] Error 2
求教啊!