Makefile

来源:互联网 发布:mac远程桌面连接软件 编辑:程序博客网 时间:2024/05/29 12:11

一、基本规则

目标:依赖1 依赖2
【tab】命令

eg1:    hello:hello.o a.o    gcc -o hello hello.o a.ohello.o:hello.c    gcc -o hello.o -c hello.ca.o:a.c    gcc -o a.o -c a.c//改进如下eg2:    hello:hello.o a.o    gcc -o $@ $^%.o:%.c    gcc -o $@ -c $<clean:    rm *.o hello
0 0