aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdam Stück <adam@adast.dk>2024-09-14 23:18:53 +0200
committerAdam Stück <adam@adast.dk>2024-09-14 23:30:11 +0200
commit8af8f7b665375f5b5c5a701aaf3631263a2e6515 (patch)
treea30a9783d6d444765654555075d5570ef0a79ab7 /Makefile
parentd46643435360f1b2fd38b098c33cf5a3bfd1af12 (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