.PHONY: all build deploy_local clean

all: build

build:
	python scripts/build.py build
clean:
	python scripts/build.py clean
deploy_local: build
	rsync -a --exclude=.gitkeep build/ /var/www/localhost/html/
deploy_production: build
	rsync -a --exclude=.gitkeep --delete \
	build/ root@marianicolae.com:/srv/http/root/
