diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d05395 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +binapi_generator/binapi_generator diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a0aa7a3 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +build: + @cd binapi_generator && go build -v + +test: + @go test -cover $(glide novendor) + +install: + @cd binapi_generator && go install -v + +clean: + @rm binapi_generator/binapi_generator + +.PHONY: build test install clean |