We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 905ccf5 commit 06f096dCopy full SHA for 06f096d
tools/make/lib/stats/Makefile
@@ -2,4 +2,5 @@
2
# DEPENDENCIES #
3
4
include $(TOOLS_MAKE_LIB_DIR)/stats/git.mk
5
+include $(TOOLS_MAKE_LIB_DIR)/stats/repl.mk
6
tools/make/lib/stats/repl.mk
@@ -0,0 +1,18 @@
1
+
+# VARIABLES #
+# Define the path to the script for generating REPL language stats:
+REPL_LANG_STATS ?= $(TOOLS_DIR)/scripts/repl_lang_stats
7
8
+# TARGETS #
9
10
+# Compute REPL language stats.
11
+#
12
+# This target computes REPL language statistics.
13
14
+stats-repl-lang: $(REPL_LANG_STATS)
15
+ $(QUIET) $(MAKE_EXECUTABLE) $(REPL_LANG_STATS)
16
+ $(QUIET) $(REPL_LANG_STATS)
17
18
+.PHONY: stats-repl-lang
0 commit comments