Skip to content

Commit 06f096d

Browse files
committed
Add recipe for computing REPL stats
1 parent 905ccf5 commit 06f096d

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

tools/make/lib/stats/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
# DEPENDENCIES #
33

44
include $(TOOLS_MAKE_LIB_DIR)/stats/git.mk
5+
include $(TOOLS_MAKE_LIB_DIR)/stats/repl.mk
56

tools/make/lib/stats/repl.mk

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
# VARIABLES #
3+
4+
# Define the path to the script for generating REPL language stats:
5+
REPL_LANG_STATS ?= $(TOOLS_DIR)/scripts/repl_lang_stats
6+
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

Comments
 (0)