diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -5,3 +5,15 @@ all: docker: GOOS=linux go build -a -tags netgo -installsuffix netgo docker build -t $$USER/coredns . + +.PHONY: deps +deps: + go get + +.PHONY: test +test: + go test + +.PHONY: clean +clean: + go clean |