From 1a2e1fff7ce4b8fd8db46549d81e71e76b842da3 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 30 Aug 2024 18:56:49 +0300 Subject: add some basic benchmarks --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0eae957..d2f6325 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,10 @@ all: setup check: all $(MAKE) -C tests check +.PHONY: benchmark +benchmark: all + $(MAKE) -C benchmarks benchmark + # this kicks all unrecognised targets to the client script. # note that trying to compile individual files, e.g. # @@ -58,6 +62,14 @@ clean: $(MAKE) -C tests clean $(RM) -rf $(CLEANUP) +.PHONY: clean_tests +clean_tests: + $(MAKE) -C tests clean + +.PHONY: clean_benchmarks +clean_benchmarks: + $(MAKE) -C benchmarks clean + .PHONY: clean_run clean_run: $(CLEANUP_CMD) -- cgit v1.3