website/api/Makefile
ngn fa2f3acb35
cleanup for the docker setup
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-18 03:31:37 +03:00

15 lines
198 B
Makefile

GOSRCS = $(wildcard *.go) $(wildcard */*.go)
all: api.elf
api.elf: $(GOSRCS)
go build -o $@
run:
WEBSITE_DEBUG=true WEBSITE_PASSWORD=test ./api.elf
format:
gofmt -s -w .
.PHONY: test format