C语言-Makefile

mac2022-06-30  32

1,新建 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

2 ,执行make

make

 

最新回复(0)