You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/make/lib/help/Makefile
+25-17Lines changed: 25 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -13,41 +13,49 @@ FIND_MAKEFILES_FLAGS ?= \
13
13
14
14
# TARGETS #
15
15
16
-
# Print Makefile help.
16
+
#/
17
+
# Prints a `Makefile` help message.
17
18
#
18
-
# This target prints a help message and lists available targets.
19
-
19
+
# @example
20
+
# make help
21
+
#/
20
22
help:
21
23
$(QUIET)$(CAT)$(MAKE_USAGE)
22
24
23
25
.PHONY: help
24
26
25
-
26
-
#List Makefile targets.
27
+
#/
28
+
#Prints a sorted list of `Makefile` rules.
27
29
#
28
-
#This target lists all Makefile targets.
30
+
### Notes
29
31
#
30
-
# Note: the list of targets is NOT exhaustive, as it does not include targets which have not 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.
31
-
32
-
list-targets:
32
+
# - The list of rules is **not** exhaustive, as the list does **not** include rules which have not been explicitly declared PHONY targets and does **not** include rules declared via variables. These rules could be included by dumping the Makefile database `make -qp`, but this is not seen as necessary due to predominant use of `.PHONY`.
#Prints a sorted list of `Makefile` rules for computing project statistics.
42
47
#
43
-
#This target lists all Makefile targets for computing statistics.
48
+
### Notes
44
49
#
45
-
# Note: the list of targets is NOT exhaustive, as it does not include targets which have not 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.
46
-
47
-
list-stats-targets:
50
+
# - The list of rules is **not** exhaustive, as the list does **not** include rules which have not been explicitly declared PHONY targets and does **not** include rules declared via variables. These rules could be included by dumping the Makefile database `make -qp`, but this is not seen as necessary due to predominant use of `.PHONY`.
0 commit comments