摘要: 最简单的makefile 的demo TARGET := app # 在这里添加.c 的路径,#include自己的.h时需要指定相对路径 SRCS := main.c d1/d1.c OBJS := $(SRCS:.c=.o) DEP_FILES := $(SRCS:.c=.d) # 依赖文件:每 阅读全文
posted @ 2025-11-14 14:03 年华似水゛ 阅读(4) 评论(0) 推荐(0)