summaryrefslogtreecommitdiff
path: root/Makefile
blob: c174da7d6e65455d48eb154a4e113e69b53a6d79 (plain)
1
2
3
4
5
6
7
8
GO_FILES := $(shell find . -name '*.go')

dns-service: main.go $(GO_FILES)
	CGO_ENABLED=0 go build -o $@ $<

.PHONY: clean
clean:
	rm -f dns-service