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