Skip to content

Commit 9d7f66c

Browse files
committed
Add recipes
1 parent f7d790a commit 9d7f66c

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

tools/make/lib/stats/git.mk

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,50 @@ stats-author-shortstats-per-month:
388388
.PHONY: stats-author-shortstats-per-month
389389

390390

391+
# Compute number of tools packages per day per author.
392+
#
393+
# This target computes the number of tools packages per day per author.
394+
395+
stats-author-tools-pkgs-per-day:
396+
$(QUIET) $(MAKE_EXECUTABLE) $(GIT_SCRIPTS_DIR)/author_tools_pkgs_per_day
397+
$(QUIET) $(GIT_SCRIPTS_DIR)/author_tools_pkgs_per_day
398+
399+
.PHONY: stats-author-tools-pkgs-per-day
400+
401+
402+
# Compute number of tools packages per month per author.
403+
#
404+
# This target computes the number of tools packages per month per author.
405+
406+
stats-author-tools-pkgs-per-month:
407+
$(QUIET) $(MAKE_EXECUTABLE) $(GIT_SCRIPTS_DIR)/author_tools_pkgs_per_month
408+
$(QUIET) $(GIT_SCRIPTS_DIR)/author_tools_pkgs_per_month
409+
410+
.PHONY: stats-author-tools-pkgs-per-month
411+
412+
413+
# Compute number of tools packages per weekday per author.
414+
#
415+
# This target computes the number of tools packages per weekday per author.
416+
417+
stats-author-tools-pkgs-per-weekday:
418+
$(QUIET) $(MAKE_EXECUTABLE) $(GIT_SCRIPTS_DIR)/author_tools_pkgs_per_weekday
419+
$(QUIET) $(GIT_SCRIPTS_DIR)/author_tools_pkgs_per_weekday
420+
421+
.PHONY: stats-author-tools-pkgs-per-weekday
422+
423+
424+
# Compute number of tools packages per year per author.
425+
#
426+
# This target computes the number of tools packages per year per author.
427+
428+
stats-author-tools-pkgs-per-year:
429+
$(QUIET) $(MAKE_EXECUTABLE) $(GIT_SCRIPTS_DIR)/author_tools_pkgs_per_year
430+
$(QUIET) $(GIT_SCRIPTS_DIR)/author_tools_pkgs_per_year
431+
432+
.PHONY: stats-author-tools-pkgs-per-year
433+
434+
391435
# Compute authors per day.
392436
#
393437
# This target computes number of authors per day.

0 commit comments

Comments
 (0)