1
Fork 0
blog/Makefile

19 lines
257 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:
cobalt build
.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