WEBSITE_SERVER_ROOT ?= /srv/http/root/

.PHONY: all build clean deploy deploy_production
all: deploy
build:
	python scripts/build.py build
clean:
	python scripts/build.py clean
deploy: build
	rsync -a --exclude=.gitkeep --delete build/ $(WEBSITE_SERVER_ROOT)
deploy_production: build
	rsync -a --exclude=.gitkeep --delete \
	build/ root@marianicolae.com:/srv/http/root/
