website/Makefile

10 lines
91 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 .
.PHONY: format