💾 Archived View for gemini.circumlunar.space › ~ew › file › 20201216-Makefile.gmi captured on 2021-12-05 at 23:47:19. Gemini links have been rewritten to link to archived content

View Raw

More Information

➡️ Next capture (2024-06-20)

-=-=-=-=-=-=-

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
------------------------------------------------------------