http: builds blogs from gemlogs

This commit is contained in:
2026-06-09 16:11:06 +01:00
parent 3ecf19cb8a
commit b4f9be57d3
11 changed files with 414 additions and 16 deletions
+12 -2
View File
@@ -1,8 +1,18 @@
all: clean out
out: $(shell find src -type f) $(shell find share -type f) $(shell find bin)
out: microlog blog $(shell find src -type f) $(shell find share -type f) $(shell find bin)
./bin/mkws https://joeac.net
microlog: src/microlog
src/microlog: $(shell find -L blogs/microlog -type f) bin/blog
./bin/blog -i microlog -l microlog -t
blog: src/blog
src/blog: $(shell find -L blogs/blog -type f) bin/blog
./bin/blog -i blog -l blog
.PHONY: clean
clean:
rm -rf out
rm -rf out src/microlog src/blog