- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑从 GNU make 手册中摘录的 PHONY 目标:
Once this is done,
make clean' will run the commands regardless of whether there is a file named
clean'.
为什么我没有看到我的食谱被执行,尽管在调试输出中 make 说它必须重新制作这些目标?下面是一个示例 makefile 来演示该问题:
all:
@echo Rule to build 'all'
.PHONY: clean a.clean b.clean
clean: a.clean b.clean
@echo Cleaning toplevel
%.clean:
@echo Cleaning $*
这是输出 - 注意没有提到 Cleaning $*
make: Entering directory `/tmp'
Cleaning toplevel
make: Leaving directory `/tmp'
这是 -d
的输出:
Considering target file `clean'.
File `clean' does not exist.
Considering target file `a.clean'.
File `a.clean' does not exist.
Finished prerequisites of target file `a.clean'.
Must remake target `a.clean'.
Successfully remade target file `a.clean'.
Considering target file `b.clean'.
File `b.clean' does not exist.
Finished prerequisites of target file `b.clean'.
Must remake target `b.clean'.
Successfully remade target file `b.clean'.
Finished prerequisites of target file `clean'.
Must remake target `clean'.
最佳答案
来自 the same section of the manual :
因为它知道假目标不会命名可以从其他文件重新制作的实际文件,make 会跳过隐式规则搜索假目标(请参阅隐式规则)。
是的,Make 知道它必须“重新制作”a.clean
和 b.clean
,但是在寻找这样做的规则时,它不会考虑您的模式规则。它找不到这些目标的配方,所以它耸了耸肩,认为工作完成并继续前进。
您可以通过将模式规则设为静态 模式规则来解决此问题:
a.clean b.clean : %.clean :
@echo Cleaning $*
关于makefile - 不执行虚假目标的配方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19659273/
我试图弄清楚接受 OpenID 登录的网站如何无法通过简单的主机文件更新来指向伪造的 OpenID 提供商。 假设我想侵入 Joe Smith 的帐户,在这个例子中,假设他的 OpenID 提供商是
#include #include #include #include #include #include #include #include #include #include #define P
根据此讨论 - "RESTful API - Correct behavior when spurious/not requested parameters are passed in the req
如果编译为 Cand C++ 源代码,这个简单的代码片段会使用 g++ 4.7.0 生成“函数调用中缺少标记”警告。我相信这是编译器的错误,因为最终的 NULL值(value)就在那里。 #inclu
我读到,有时 && 运算符用于“短路”JavaScript,使其相信返回值 0 是 0 而不是 NaN,因为 0 在 JavaScript 中是一个虚假数字。我一直在四处寻找,想弄清楚这一切意味着什么
我正在使用 Borland(又名“Embarcodegearland”)C++Builder 2007 编译器,它有一个小错误,系统头文件中的某些 static const 项可能导致虚假的 "xyz
我是一名优秀的程序员,十分优秀!