phony-target Questions
11
Solved
What does .PHONY mean in a Makefile? I have gone through this, but it is too complicated.
Can somebody explain it to me in simple terms?
Jutta asked 27/1, 2010 at 9:8
4
Consider a long makefile with numerous targets, all of which are PHONY (meaning that the target name does not represent an existing file).
I can do either:
.PHONY: a
a:
do someting a
.PHONY: b
...
Torrey asked 12/6, 2017 at 6:36
1
© 2022 - 2024 — McMap. All rights reserved.