Skip to content

Commit d998926

Browse files
committed
Add implementation notes
1 parent 9860859 commit d998926

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/make/lib/help/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ help:
2828
# List Makefile targets.
2929
#
3030
# This target lists all Makefile targets.
31+
#
32+
# Note: the list of targets is NOT exhaustive, as it does not include targets which have been explicitly declared PHONY targets and does not include targets declared via variables. These targets could be included by dumping the Makefile database `make -qp`, but not seen as necessary due to predominant use of PHONY.
3133

3234
list-targets:
3335
$(QUIET) find $(TOOLS_MAKE_DIR) $(FIND_MAKEFILES_FLAGS) \
@@ -41,6 +43,8 @@ list-targets:
4143
# List Makefile stats targets.
4244
#
4345
# This target lists all Makefile targets for computing statistics.
46+
#
47+
# Note: the list of targets is NOT exhaustive, as it does not include targets which have been explicitly declared PHONY targets and does not include targets declared via variables. These targets could be included by dumping the Makefile database `make -qp`, but not seen as necessary due to predominant use of PHONY.
4448

4549
list-stats-targets:
4650
$(QUIET) find $(TOOLS_MAKE_DIR) $(FIND_MAKEFILES_FLAGS) \

0 commit comments

Comments
 (0)