Skip to content

Commit

Permalink
Add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
denisbrodbeck committed Dec 18, 2017
1 parent db12571 commit 0cfcf44
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.PHONY: build clean default test

build: clean
@go build -o dist/sqip cmd/sqip/main.go

clean:
@rm -rf dist/sqip*

test:
go test ./...

default: build

0 comments on commit 0cfcf44

Please sign in to comment.