From 8d61bd5e5c6131b027050ce2b9832aa7d6108bdd Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Fri, 8 Oct 2021 15:20:07 -0400 Subject: README --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..575f235 --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +HTTP_HOST := $(shell hostname -f) +HTTP_PORT := 8000 + +all: + pelican --output website --settings pelicanconf.py --fatal errors content + +clean: + git clean -dfx + +server: + @echo http://${HTTP_HOST}:${HTTP_PORT}/ + python3 -m http.server --directory website --bind ${HTTP_HOST} ${HTTP_PORT} + +check: + linkchecker website + +tags: TAGS + +TAGS: Makefile pelicanconf.py $(shell git ls-tree -r --name-only HEAD | egrep '[.]md$$') + etags $^ + +.PHONY: all clean server check tags -- cgit v1.2.3