当前位置: 技术问答>linux和unix
how to write makefile?
来源: 互联网 发布时间:2015-04-03
本文导语: rt, any reference book? | 注意上面的 gcc前面不是空格而是tab. 我收集的两片珍藏文章: http://www.chinaunix.net/bbsjh/12/1033.html 非常棒 http://thunder.prohosting.com/~xiaocao/linux/linux_prog/prog-automake.html 虽然入...
rt, any reference book?
|
注意上面的 gcc前面不是空格而是tab.
我收集的两片珍藏文章:
http://www.chinaunix.net/bbsjh/12/1033.html 非常棒
http://thunder.prohosting.com/~xiaocao/linux/linux_prog/prog-automake.html 虽然入门简单,但是却容易导致概念不清...
我收集的两片珍藏文章:
http://www.chinaunix.net/bbsjh/12/1033.html 非常棒
http://thunder.prohosting.com/~xiaocao/linux/linux_prog/prog-automake.html 虽然入门简单,但是却容易导致概念不清...
|
如写个简单的话,只要写明“目标体”,“依赖体”和“命令”即可。
如:
test:test.o
gcc -o test test.o
test.o: test.c test.h
gcc -c test.c
若对一个项目而言,最用autoconf和automake生成。
如:
test:test.o
gcc -o test test.o
test.o: test.c test.h
gcc -c test.c
若对一个项目而言,最用autoconf和automake生成。