1
Fork 0
blog/Makefile

23 lines
348 B
Makefile
Raw Normal View History

2017-09-07 16:28:57 +00:00
SOURCE = /home/jer/git/fnordig.de/_site/
2017-07-09 12:18:22 +00:00
DEST = /var/www/sites/fnordig.de/
build:
2018-01-23 10:45:10 +00:00
cobalt build --drafts
.PHONY: build
2017-07-09 12:18:22 +00:00
serve:
cobalt watch
.PHONY: serve
2017-07-09 12:18:22 +00:00
deploy: clean build
rsync -va --delete $(SOURCE) $(DEST)
.PHONY: deploy
clean:
cobalt clean
.PHONY: clean
2018-02-11 11:25:15 +00:00
rerun:
rerun -p "**/*.{md,liquid,css,js}" -i "_site/*" -x -- make
.PHONY: rerun