ddns/Makefile
2024-11-13 16:44:46 -04:00

15 lines
272 B
Makefile

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