博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GNU make manual 翻译(三十七)
阅读量:6353 次
发布时间:2019-06-22

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

继续翻译
复制代码
3.2 What Name to Give Your Makefile                        
===================================                        
                        
By default, when `make' looks for the makefile, it tries the following 
names, in order: `GNUmakefile', `makefile' and `Makefile'.                          
                        
   Normally you should call your makefile either `makefile' or 
`Makefile'.  (We recommend `Makefile' because it appears prominently 
near the beginning of a directory listing, right near other important 
files such as `README'.)  The first name checked, `GNUmakefile', is not 
recommended for most makefiles.  You should use this name if you have a
makefile that is specific to GNU `make', and will not be understood by 
other versions of `make'.  Other `make' programs look for `makefile' and
`Makefile', but not `GNUmakefile'.                        
复制代码
3.2 给你的Makefile起个什么名字
缺省地,当make 寻找makefile的时候,它会按如下顺序:
GNUmakefile, makefile,Makefile
通常,你应当称你的 makefile为 'makefile或'Makefile(我们建议使用 Makefile,因为它会在目录中显示在靠近起始的位置,比较显眼。也靠近其他重要文件如README)。
第一个名字'GNUmakefile' 不受推荐。你应当在此makefile有GNU特性且不被其他版本make理解的情况下来使用此名字。
其他的make会查找 makefile和 Makefile, 而不是 GNUmakefile。
后文待续
本文转自健哥的数据花园博客园博客,原文链接http://www.cnblogs.com/gaojian/archive/2012/09/14/2684354.html,如需转载请自行联系原作者
你可能感兴趣的文章
linux学习经验之谈
查看>>
mysqld_multi实现多主一从复制
查看>>
中介模式
查看>>
JS中将变量转为字符串
查看>>
servlet笔记
查看>>
JVM(五)垃圾回收器的前世今生
查看>>
Spring Boot 自动配置之@EnableAutoConfiguration
查看>>
web前端笔记
查看>>
import 路径
查看>>
finally知识讲解
查看>>
Matplotlib绘图与可视化
查看>>
openstack ocata版(脚本)控制节点安装
查看>>
【微信公众号开发】获取并保存access_token、jsapi_ticket票据(可用于微信分享、语音识别等等)...
查看>>
datatable 获取最大值
查看>>
sqlserver2012一直显示正在还原(Restoring)和从单用户转换成多用户模式(单用户连接中)...
查看>>
spark复习总结02
查看>>
李瑞红201771010111《第九周学习总结》
查看>>
[译]ZOOKEEPER RECIPES-Barriers
查看>>
NFC 鏈表操作
查看>>
pymongo模块
查看>>