无法使用makefile生成.exe

时间:2016-10-19 15:00:58

标签: c gcc makefile

我写了一个简单的C程序:

#include<stdio.h>

int main(){
    printf("Hello World!\n");
}

我还写了一个makefile:

test: main.o
    gcc -o test main.o

main.o:main.c
    gcc -c -o main.o main.c

他们在同一档案中: enter image description here 但是当我尝试使用make时出现错误: enter image description here 然后我尝试这种方式,它的工作原理: enter image description here

为什么我不能使用make生成test.exe?makefile有什么问题吗?我是新手,任何建议都会有帮助^ _ ^

0 个答案:

没有答案