C makefile

Makefile编写

hello.out:max.o main.c
        gcc max.o main.c -o hello.out
max.o:max.c
        gcc -c max.c -o max.o
原文地址:https://www.cnblogs.com/agang-php/p/5619090.html