2020-12-16

Makefile

------------------------------------------------------------
# 2020-12-15
# License: CC0-1.0

first: all

.PHONY: index
index:
        ( cd posts && ../bin/gem-index.sh         > index.gmi )
        ( cd posts && ../bin/gem-tags.sh          > tag-index.gmi )


.PHONY: publish
publish:
        rsync -vax --delete --exclude \*~  ./posts/. ./site


all: index
------------------------------------------------------------