diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..332ba63 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +mailsrv diff --git a/Makefile b/Makefile index 7e2589f..b8626c2 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,11 @@ vet: fmt shadow ./... .PHONY:vet -build: vet +build: + go build -o mailsrv +.PHONY:build + +build-check: vet go build -o mailsrv .PHONY:build