elvish/website/Makefile
2018-06-05 21:38:39 +01:00

34 lines
711 B
Makefile

MDS := $(wildcard src/*.md src/*/*.md)
HTMLS := $(MDS:.md=.html)
PUBLISH_DIR := ../published/ # ul.elvish.io:elvish.io/published
default: gen
%.html: %.md tools/macros tools/highlighter tools/md-to-html
./tools/md-to-html $< $@
# For building tools/*.
%: %.go
go build -o $@ $<
# Generates the website into the dst directory.
gen: $(HTMLS)
genblog src dst
# Installs or updates genblog.
genblog:
cd $(GOPATH)/src/github.com/xiaq/genblog; \
git pull; \
go generate; \
go get
genblog -print-default-css > assets/genblog.css
# Copies the generated website into $(PUBLISH_DIR).
publish: gen
rsync -aLv --delete ./dst/ $(PUBLISH_DIR)
clean:
rm $(HTMLS)
.PHONY: default gen genblog publish clean