aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdam Stück <adam@adast.dk>2024-09-14 22:27:15 +0200
committerAdam Stück <adam@adast.dk>2024-09-14 22:33:43 +0200
commitd57b985c382d3a88f1a22f354e0ec989d18caeb2 (patch)
tree47f649c028c78b057fd2cc62ad8f214b6d35fd25 /Makefile
parent732607ac04c2a21a9aeeb0f5e1aeb0952d7e86b0 (diff)
switch to wruby site generator
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 3 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index b16a580..9d7e5a1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,8 @@
build:
- sh ./barf
- rsync -r public/ build/public
+ rm -rf build && mkdir build
+ ruby wruby.rb
clean:
rm -rf build/*
-watch:
- while true; do \
- ls -d .git/* * posts/* pages/* header.html | entr -cd make ;\
- done
-
-.PHONY: build clean watch
+.PHONY: build clean