website/Makefile
2024-08-23 14:11:48 +03:00

14 lines
131 B
Makefile

all: website
website: */*.go *.go
go build -o $@
format:
gofmt -s -w .
update:
go get -u
go mod tidy
.PHONY: format update