website/Makefile

14 lines
131 B
Makefile
Raw Normal View History

2024-08-13 21:32:48 +00:00
all: website
website: */*.go *.go
go build -o $@
format:
gofmt -s -w .
2024-08-23 11:11:48 +00:00
update:
go get -u
go mod tidy
.PHONY: format update