博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】android makefile文件分析
阅读量:5317 次
发布时间:2019-06-14

本文共 408 字,大约阅读时间需要 1 分钟。

Makefile的规则如下:

target ... : prerequisites ...

command ... ...

target可以是一个目标文件,也可以是Object File(例如helloworld.obj),也可以是执行文件和标签。

prerequisites就是生成target所需要的文件或是目标。

command也就是要达到target这个目标所需要执行的命令。

 

下面就是编译helloworld的makefile。

helloworld : helloworld.o

    cc -o helloworld helloworld .o

helloworld.o : helloworld.c

    cc -c main.c

clean:

    rm helloworld helloworl.o

转自:

转载于:https://www.cnblogs.com/meizixiong/p/3276553.html

你可能感兴趣的文章
隧道6in4 和隧道6to4(GNS3)
查看>>
HDU 5141
查看>>
linux守护进程的编写
查看>>
Quartus prime16.0 与modelsim ae 联调
查看>>
你总说时间很少
查看>>
程序一启动检查网络,如果没有网络就退出程序
查看>>
《DOS命令全集(中英文对照)》CHM版.CHM
查看>>
Check if a string is NULL or EMPTY using PowerShell
查看>>
shell 用环境变量的值修改properties文件
查看>>
SQL SERVER 数据压缩
查看>>
Debian7 apt源设置
查看>>
同域和不同域长啥样
查看>>
css样式优先级计算规则
查看>>
从浏览器地址栏输入url到显示页面的步骤
查看>>
关于神经网络训练的一些建议笔记
查看>>
Win32 窗口篇(3)
查看>>
do { ....} while(0) 在宏里冗余的意义
查看>>
js(jQuery)获取时间的方法及常用时间类
查看>>
6款程序员不得不爱的bootstrap模板
查看>>
使用Visio进行UML建模
查看>>