From 91bda119f98ea50be26bf3d5cc0120bb8d2cf997 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Sat, 22 Jan 2022 17:59:41 -0800 Subject: [PATCH] Add a way to run tests in all languages --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c42fb73 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +default: all + +all: c ruby + +c: + cd c && make test + +ruby: + cd ruby && bundle exec rake + +clean: + cd c && make clean + cd ruby && bundle exec rake clean + +.PHONY: c ruby clean