summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-08-26 02:03:35 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-08-26 02:07:41 -0400
commit52a2cae0b3583d4148cbc183f6ce551f94ae3676 (patch)
tree60389f6ef604945e337ee890ccf10c493ab9e2a0 /makefile
parentdaa0086eff780285f273cc4af527a091133eef72 (diff)
downloadwebsite-52a2cae0b3583d4148cbc183f6ce551f94ae3676.tar.gz
create blog post about access control methods
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefile b/makefile
index 5f87773..b484fa5 100644
--- a/makefile
+++ b/makefile
@@ -6,7 +6,7 @@ DESTDIR ?= /var/www
EMACS ?= emacs
ARGS = -batch -e "org-html-export-to-html"
-all: index.html blog/index.html blog/gentoo-on-gcloud.html
+all: index.html blog/index.html blog/gentoo-on-gcloud.html blog/access-control.html
index.html: index.org
$(EMACS) $< $(ARGS)
@@ -17,6 +17,9 @@ blog/index.html: blog/index.org
blog/gentoo-on-gcloud.html: blog/gentoo-on-gcloud.org
$(EMACS) $< $(ARGS)
+blog/access-control.html: blog/access-control.org
+ $(EMACS) $< $(ARGS)
+
install: all
install --mode 644 -D *.html --target-directory $(PREFIX)/$(DESTDIR)/$(SITE)/
install --mode 644 -D blog/*.html --target-directory $(PREFIX)/$(DESTDIR)/$(SITE)/blog/