We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0bbb0 commit bee71a7Copy full SHA for bee71a7
tools/make/lib/benchmark/Makefile
@@ -4,6 +4,7 @@
4
include $(TOOLS_MAKE_LIB_DIR)/benchmark/javascript.mk
5
include $(TOOLS_MAKE_LIB_DIR)/benchmark/julia.mk
6
include $(TOOLS_MAKE_LIB_DIR)/benchmark/python.mk
7
+include $(TOOLS_MAKE_LIB_DIR)/benchmark/r.mk
8
9
10
# TARGETS #
tools/make/lib/benchmark/r.mk
@@ -0,0 +1,15 @@
1
+
2
+# TARGETS #
3
+# Run R benchmarks.
+#
+# This target runs a list of R benchmarks in sequential order. Note that we assume the benchmarks can be run using R.
+benchmark-r:
+ $(QUIET) for file in $(BENCHMARKS); do \
+ echo ""; \
11
+ echo "Running benchmark: $$file"; \
12
+ $$file || exit 1; \
13
+ done
14
15
+.PHONY: benchmark-r
0 commit comments