Add Makefile

We are going to use the Makefile to save useful commands
without creating too many shell scripts in the top dir.
This commit is contained in:
Jakob Unterwurzacher 2019-01-05 12:25:38 +01:00
parent 61a6b24d4e
commit 8c35235c34
1 changed files with 11 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
.phony: build
build:
./build.bash
.phony: test
test:
./test.bash
.phony: format
format:
go fmt ./...