diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-09 16:11:06 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-09 16:11:06 +0100 |
| commit | b4f9be57d3afbe19970bb268ecb6723cd80e703e (patch) | |
| tree | 9cc614a387e6811ac8bcd180e774f58f3878c194 /http/Makefile | |
| parent | 3ecf19cb8aa3661cffbb1ce3e4380807612c446c (diff) | |
http: builds blogs from gemlogs
Diffstat (limited to 'http/Makefile')
| -rw-r--r-- | http/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/http/Makefile b/http/Makefile index 9e468f7..eb8e440 100644 --- a/http/Makefile +++ b/http/Makefile @@ -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 |
