Makefile: Update deployment targets

This commit is untested, but included to try to get some changes that
somehow made it to the live site without getting checked into Git.
Oops!!!
This commit is contained in:
Andrea Rogers 2024-02-15 07:29:56 -06:00
commit a10cf07938

View file

@ -1,3 +1,6 @@
DEPLOY_HTTPROOT ?= httproot
DEPLOY_BLOBS = andrea0s-plain-noextfonts.svg blob/ebrimabd.ttf blob/window-capture
UNAME = $(shell uname)
ifeq ($(UNAME),Linux)
OPEN=xdg-open
@ -40,6 +43,14 @@ index.html: indexhead.html nav.head.html index.indicator.html nav.tail.html inde
test: index.html
$(OPEN) $<
$(DEPLOY_HTTPROOT)/blob:
mkdir -p $(@)
cp -rv $(DEPLOY_BLOBS) $(@)
deploy: all $(DEPLOY_HTTPROOT)/blob
cp -rv *.css *.html blog media \
$(DEPLOY_HTTPROOT)
all: blog-posts index.html blog.html resume.html
.PHONY: all blog-posts indicators
.PHONY: all blog-posts indicators deploy