码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 之Makefile文件

时间:2016-06-01 06:59:10      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:linux


test:test.o
    gcc test.o -o test
test.o:test.s
    gcc -c test.s -o test.o
test.s:test.i
    gcc -S test.i -o test.s
test.i:test.c
    gcc -E test.c -o test.i
.PHONY:clean
clean:
    rm -f test.s test.i test.o test

技术分享

本文出自 “写的质量还是低” 博客,谢绝转载!

Linux 之Makefile文件

标签:linux

原文地址:http://10324228.blog.51cto.com/10314228/1784985

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!