Files
zeitkort-web-golang/Makefile
T
2026-06-18 21:41:47 +01:00

13 lines
194 B
Makefile

BINARY = 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)