diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-30 18:56:49 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-30 18:56:49 +0300 |
| commit | 1a2e1fff7ce4b8fd8db46549d81e71e76b842da3 (patch) | |
| tree | e33fa259bf9de49e589dd1e75a95dcd09ad3bc97 /Makefile | |
| parent | ec30538a81c0e900797f4d88c1ee059afa7d9617 (diff) | |
| download | kmi-1a2e1fff7ce4b8fd8db46549d81e71e76b842da3.tar.gz kmi-1a2e1fff7ce4b8fd8db46549d81e71e76b842da3.zip | |
add some basic benchmarks
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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) |
