C Makefile初学基础

# this is make file

hello.out: max.o min.o hello.c
        gcc max.o min.o hello.c -o hello.out
max.o:max.c
        gcc -c max.c
min.o:min.c
        gcc -c min.c
原文地址:https://www.cnblogs.com/jasonLiu2018/p/11484024.html