06 2023 档案

摘要:简单编写单个C文件的Makefile文件,文件名为demo.c demo.c文件如下: #include <stdio.h> int main() { printf("hello,world!\n"); return 0; } 编写Makefile文件如下: demo:demo.o gcc demo 阅读全文
posted @ 2023-06-03 10:41 UNkey 阅读(50) 评论(0) 推荐(0)