website/Makefile

10 lines
91 B
Makefile
Raw Normal View History

2024-08-14 00:32:48 +03:00
all: website
website: */*.go *.go
go build -o $@
format:
gofmt -s -w .
.PHONY: format