include .env export .phony: all clean build test clean-image build-image build-image-debug run-image run-image-debug run-local run-local:clean build mkdir db @bin/ddnser build: @go build -o ./bin/ddnser ./cmd test: @go -count=1 test ./... clean: @rm -rf ./bin ./db