disable openring, clean up makefile

This commit is contained in:
Andrea Rogers 2025-10-09 14:46:26 -05:00
commit f035ed0c9d
2 changed files with 91 additions and 53 deletions

View file

@ -3,12 +3,12 @@ DEPLOY_BLOBS = andrea0s-plain-noextfonts.svg \
blob/ebrimabd.ttf \
blob/window-capture \
blob/vcf-2024-pile.jpg
AWESOME_BLOGS := -s https://lwn.net/headlines/rss \
-s https://lobste.rs/rss \
-s https://blog.haskell.org/atom.xml \
-s https://www.phoronix.com/rss.php \
-s https://static.fsf.org/fsforg/rss/news.xml \
-s https://emersion.fr/blog/rss.xml
# AWESOME_BLOGS := -s https://lwn.net/headlines/rss \
# -s https://lobste.rs/rss \
# -s https://blog.haskell.org/atom.xml \
# -s https://www.phoronix.com/rss.php \
# -s https://static.fsf.org/fsforg/rss/news.xml \
# -s https://emersion.fr/blog/rss.xml
UNAME = $(shell uname)
ifeq ($(UNAME),Linux)
@ -29,13 +29,11 @@ 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 \
| modules/openring/openring -n 12 -p 3 \
$(AWESOME_BLOGS) > $@
blog/feed.xml blog.inner.html: $(BLOG_SRC) scripts/blogposts.bash #modules/openring/openring
scripts/blogposts.bash > $@
# scripts/blogposts.bash \
# | modules/openring/openring -n 12 -p 3 \
# $(AWESOME_BLOGS) > $@
modules/openring/openring.go: .gitmodules
git submodule update --init --recursive -- modules/openring
@ -66,8 +64,11 @@ index.html: indexhead.html nav.head.html index.indicator.html nav.tail.html inde
%.html: %.head.html nav.head.html %.indicator.html nav.tail.html window.head.html %.inner.html window.tail.html
cat $^ > $@
test: index.html
$(OPEN) $<
test: deploy
$(OPEN) $@.html
cd $(DEPLOY_HTTPROOT) \
&& ln -s . '~targetdisk' \
&& python -m http.server
$(DEPLOY_HTTPROOT)/blob:
mkdir -p $(@)
@ -77,6 +78,6 @@ deploy: all $(DEPLOY_HTTPROOT)/blob
cp -rv *.css *.html blog media \
$(DEPLOY_HTTPROOT)
all: blog-posts index.html blog.html resume.html vcfmw-2024.html
all: blog-posts index.html blog.html resume.html
.PHONY: all blog-posts indicators deploy