From 8c35235c34448e7d03a36d6109d5de93c22c0054 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sat, 5 Jan 2019 12:25:38 +0100 Subject: Add Makefile We are going to use the Makefile to save useful commands without creating too many shell scripts in the top dir. --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..88e3199 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.phony: build +build: + ./build.bash + +.phony: test +test: + ./test.bash + +.phony: format +format: + go fmt ./... -- cgit v1.2.3