1
Fork 0
blog/Makefile
2018-01-23 11:45:10 +01:00

19 lines
266 B
Makefile

SOURCE = /home/jer/git/fnordig.de/_site/
DEST = /var/www/sites/fnordig.de/
build:
cobalt build --drafts
.PHONY: build
serve:
cobalt watch
.PHONY: serve
deploy: clean build
rsync -va --delete $(SOURCE) $(DEST)
.PHONY: deploy
clean:
cobalt clean
.PHONY: clean