save all temp files

This commit is contained in:
2023-07-22 19:23:38 -04:00
parent b3ef50860b
commit ba49325c23
36 changed files with 2428 additions and 2 deletions

13
wtmp/barf/Makefile Normal file
View File

@ -0,0 +1,13 @@
build:
./barf
rsync -r public/ build/public
clean:
rm -rf build/*
watch:
while true; do \
ls -d .git/* * posts/* pages/* header.html | entr -cd make ;\
done
.PHONY: build clean watch