%.o : %.c

%.o : %.c
    $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@

表示把所有的.c文件编译输出成.o文件

原文地址:https://www.cnblogs.com/swblog/p/3446699.html