File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -250,9 +250,10 @@ include $(TOOLS_MAKE_LIB_DIR)/ls/pkgs.mk
250250include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_addons.mk
251251include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_browser_compatible.mk
252252include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_clis.mk
253+ include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_installed.mk
253254include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_names.mk
254255include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_namespaces.mk
256+ include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_readmes.mk
255257include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_tree.mk
256- include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_installed.mk
257258include $(TOOLS_MAKE_LIB_DIR ) /ls/pkgs_wasm.mk
258259include $(TOOLS_MAKE_LIB_DIR ) /ls/svg_equations.mk
Original file line number Diff line number Diff line change 1+
2+ # VARIABLES #
3+
4+ # Define the path of the executable:
5+ LIST_PACKAGE_READMES ?= $(TOOLS_PKGS_DIR ) /pkgs/readmes/bin/cli
6+
7+ # Define the command flags:
8+ LIST_PACKAGE_READMES_FLAGS ?=
9+
10+
11+ # TARGETS #
12+
13+ # List all package READMEs.
14+ #
15+ # This target prints a list of all package READMEs.
16+
17+ list-pkgs-readmes : $(LIST_PACKAGE_READMES ) $(NODE_MODULES )
18+ $(QUIET ) $(NODE ) $(LIST_PACKAGE_READMES ) $(LIST_PACKAGE_READMES_FLAGS ) $(SRC_DIR )
19+
20+ .PHONY : list-pkgs-readmes
You can’t perform that action at this time.
0 commit comments