aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 62b6e76521b671455df65d5dcc13a3473d161a78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: clean build deploy

build:
	./blarg	
clean:
	rm -rf build/*
	rm -f site.tar.gz
deploy:
	# tar --exclude='*.tsv' -C build -cvz . > site.tar.gz
	# hut pages publish -d justine.smithies.me.uk site.tar.gz
	rsync -rvaz -e ssh ~/Git/blarg/build/* --exclude='*.tsv' justine@nginx:/home/justine/www

.PHONY: build clean deploy