website/Makefile

10 lines
91 B
Makefile

all: website
website: */*.go *.go
go build -o $@
format:
gofmt -s -w .
.PHONY: format