Chinaunix首页 | 论坛 | 博客
  • 博客访问: 22799
  • 博文数量: 11
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 57
  • 用 户 组: 普通用户
  • 注册时间: 2015-12-22 17:11
文章分类
文章存档

2016年(1)

2015年(10)

我的朋友

分类: Delphi

2015-12-22 17:13:37

Makefile  $@, $^, $<
$@  表示目标文件
$^  表示所有的依赖文件
$<  表示第一个依赖文件
$?  表示比目标还要新的依赖文件列表

如一个目录下有如下文件:
$ ls
hello.c  hi.c  main.c  Makefile

按照 Makefile 规则规规矩矩的写:
main: main.o hello.o hi.o
        gcc -o main main.o hello.o hi.o

main.o: main.c
        cc -c main.c

hello.o: hello.c
        cc -c hello.c

hi.o: hi.c
        cc -c hi.c

clean:
        rm *.o
        rm main

改为用上述符号进行替代:
main: main.o hello.o hi.o
        gcc -o $@ $^
main.o: main.c
        cc -c $<
hello.o: hello.c
        cc -c $<
hi.o: hi.c
        cc -c $<
clean:
        rm *.o
        rm main



beyes@debian:~/makefile_test/semicolon/real$ make
cc -c main.c
cc -c hello.c
cc -c hi.c
gcc -o main main.o hello.o hi.o
beyes@debian:~/makefile_test/semicolon/real$ ls
hello.c  hello.o  hi.c  hi.o  main  main.c  main.o  Makefile
阅读(206) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:Linux下g++编译与使用静态库和动态库

给主人留下些什么吧!~~