website/api/Makefile

15 lines
198 B
Makefile
Raw Permalink Normal View History

GOSRCS = $(wildcard *.go) $(wildcard */*.go)
all: api.elf
2023-11-12 17:43:23 +03:00
api.elf: $(GOSRCS)
go build -o $@
run:
WEBSITE_DEBUG=true WEBSITE_PASSWORD=test ./api.elf
2023-11-12 17:43:23 +03:00
format:
gofmt -s -w .
.PHONY: test format