From dd75b4a341925e4ba3408b018941241d4317dd9f Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Mon, 7 Jun 2021 21:47:07 -0400 Subject: updated with cgi scripts to create on-the-fly rss and index --- Makefile | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3f7c13c..f7acbd1 100644 --- a/Makefile +++ b/Makefile @@ -2,23 +2,8 @@ EDITOR = $$EDITOR POST_T = templates/template.html -INDEX_HEAD_T = templates/index_head.html -INDEX_FOOT_T = templates/index_foot.html -RSS_HEAD_T = templates/rss_head.xml -RSS_FOOT_T = templates/rss_foot.xml -all: index.html rss.xml cv.pdf - -index.html: posts/*.html - @grep h1 $> | sort -r | sed 's#^\(posts/\([0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]\)[^:]*\):[ \t]*

\(.*\)

#
  • \3 \2
  • #' | cat $(INDEX_HEAD_T) - $(INDEX_FOOT_T) > index.html - -rss.xml: posts/*.html - @grep h1 $> | sort -r | sed 's#^\(posts/[^:]*\):[ \t]*

    \(.*\)

    #\2https://www.53hor.net/posts/\1#' | cat $(RSS_HEAD_T) - $(RSS_FOOT_T) > rss.xml - -cv.pdf: cv.html - @mutool convert -o cv.pdf cv.html - -.PHONY: serve post clean +.PHONY: serve post serve: python3.7 -m http.server 3000 @@ -30,6 +15,3 @@ post: cp $(POST_T) $$FILENAME; \ sed -i '' "s/{{ title }}/$$TITLE/g" $$FILENAME; \ $$EDITOR $$FILENAME - -clean: - rm -f index.html rss.xml -- cgit v1.2.3