From acf71f30239619e734af8a0a4eff0e795f4790df Mon Sep 17 00:00:00 2001 From: Andrea Rogers Date: Fri, 4 Oct 2024 14:28:31 -0500 Subject: [PATCH] Add convenient VCF conference page URLs at site root --- .gitignore | 1 + Makefile | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a01ea78..fd1193a 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ index.html git.html resume.html resume.inner.html +vcf*-20*.html Session.vim *.swp diff --git a/Makefile b/Makefile index 894046a..5baa9b9 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,9 @@ blog/%.indicator.html: indicators blog/%.html: %.head.html nav.head.html %.indicator.html nav.tail.html window.head.html %.inner.html window.tail.html cat $^ > $@ +vcf%.html: vcf%.head.html nav.head.html blog/vcf%.indicator.html nav.tail.html window.head.html blog/vcf%.inner.html window.tail.html + cat $^ > $@ + blog.inner.html: $(BLOG_SRC) scripts/blogposts.bash > $@ @@ -51,6 +54,6 @@ deploy: all $(DEPLOY_HTTPROOT)/blob cp -rv *.css *.html blog media \ $(DEPLOY_HTTPROOT) -all: blog-posts index.html blog.html resume.html +all: blog-posts index.html blog.html resume.html vcfmw-2024.html .PHONY: all blog-posts indicators deploy