Add a Makefile

Signed-off-by: Guillaume Giamarchi <guillaume.giamarchi@gmail.com>
This commit is contained in:
Guillaume Giamarchi 2014-12-13 14:43:08 +01:00
parent 477fffb1ba
commit a94dde2b54
1 changed files with 17 additions and 0 deletions

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
.PHONY: all test validate-dco validate-gofmt validate build
all: validate test build
test:
script/test
validate-dco:
script/validate-dco
validate-gofmt:
script/validate-gofmt
validate: validate-dco validate-gofmt
build:
script/build