diff --git a/Makefile b/Makefile index 9309ae6..6d93279 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,15 @@ all: server agent +.phony: view + +view: README.html + open $< + +html: README.html + +%.html: %.md + pandoc --toc=true --standalone $< --out $@ + server: cd cmd/server && GOOS=linux GOARCH=arm64 go build