summaryrefslogtreecommitdiff
path: root/http/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'http/Makefile')
-rw-r--r--http/Makefile14
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