diff options
author | franck cuny <franck@fcuny.net> | 2020-01-11 13:58:36 +0100 |
---|---|---|
committer | franck cuny <franck@fcuny.net> | 2020-01-11 14:17:39 +0100 |
commit | 77c36fc5244cb46fdbf76b3f96d423271da11209 (patch) | |
tree | 7ad12ed4549a117c02d9569fedebc45952f88fda /users/fcuny/exp/monkey/Makefile | |
parent | lexer: support more operator tokens. (diff) | |
download | world-77c36fc5244cb46fdbf76b3f96d423271da11209.tar.gz |
Makefile: add a Makefile
For now, automate running the tests.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/exp/monkey/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/users/fcuny/exp/monkey/Makefile b/users/fcuny/exp/monkey/Makefile new file mode 100644 index 0000000..61168f3 --- /dev/null +++ b/users/fcuny/exp/monkey/Makefile @@ -0,0 +1,4 @@ +test: + go test -v ./... + +.phony: test |