博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
makefile 符号含义_Makefile中“ @”的含义是什么?
阅读量:2516 次
发布时间:2019-05-11

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

makefile 符号含义

Harry asked:

哈利问:

What is the meaning of ‘@’ in ? An example is as follows.

中“ @”的含义是什么? 一个例子如下。

$ cat Makefileall:    @echo "For correctness test of basic get and put, run: make test;"

Without ‘@’, it works well.

如果不使用“ @”,则效果很好。

Without @:

没有@

$ makeecho "For correctness test of basic get and put, run: make test;"For correctness test of basic get and put, run: make test;

With @:

@

$ makeFor correctness test of basic get and put, run: make test;

The difference is clear: with @, make will not out the that it executes.

区别很明显:使用@ ,make不会出它执行的 。

Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。


Got it, thank you.

收到了。谢谢。

翻译自:

makefile 符号含义

转载地址:http://qmowd.baihongyu.com/

你可能感兴趣的文章
vim 简单理解三种模式 粗暴入门
查看>>
django模板层之静态文件引入优化
查看>>
转载使用命令wsimport构建WebService客户端
查看>>
java实现23种设计模式之模版方法模式
查看>>
小程序·云开发实战 - 校园约拍小程序
查看>>
闲话函数式变成与OOP
查看>>
Linux-正则表达式与三剑客
查看>>
php中,post与get获取参数的异同
查看>>
警惕!年轻人要拥抱自动化和人工智能作为通信的未来
查看>>
Python给数字前固定位数加零
查看>>
python 多进程和多线程对比
查看>>
【转载】 wpf无边框的方法以及拖拽的问题
查看>>
Web自动化测试 二 ----- HTML
查看>>
sql 入门经典(第五版) Ryan Stephens 学习笔记  第四部分:建立复杂的数据库查询/...
查看>>
[原创]Keys的基本操作总结,判断Keys中是否存在Keys.Control|Keys.Alt,移除Keys中的部分键值。...
查看>>
主题样式之背景图片不随鼠标滑动而移动
查看>>
Centos 中文乱码
查看>>
IDLE常用快捷键
查看>>
MyBatis课程4
查看>>
Git使用笔记
查看>>