summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0ea2c0d..c174da7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,8 @@
1GO_FILES := $(shell find . -name '*.go') 1GO_FILES := $(shell find . -name '*.go')
2 2
3dns-service: main.go $(GO_FILES) 3dns-service: main.go $(GO_FILES)
4 go build -o $@ $< 4 CGO_ENABLED=0 go build -o $@ $<
5
6.PHONY: clean
7clean:
8 rm -f dns-service