aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7e5710fa9..145639dde 100644
--- a/Makefile
+++ b/Makefile
@@ -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