17 lines
262 B
Makefile
17 lines
262 B
Makefile
build:
|
|
./barf
|
|
rsync -r public/ build/public
|
|
|
|
deploy: build
|
|
rsync -r build/ ${OUTPUT}
|
|
|
|
clean:
|
|
rm -rf build/*
|
|
|
|
watch:
|
|
while true; do \
|
|
ls -d .git/* * posts/* pages/* public/css/style.css header.html | entr -cd make ;\
|
|
done
|
|
|
|
.PHONY: build deploy clean watch
|