Files
zeitkort-web-golang/Makefile
T
2026-06-19 13:04:42 +01:00

13 lines
198 B
Makefile

BINARY = poc-zeitkort-web
.PHONY: build run clean
build:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./bin/$(BINARY) .
run: build
./$(BINARY) -config config.json
clean:
rm -f $(BINARY)