aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c5a4b94ea16b72d2ad635299866a39a767d364fc (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


.PHONY: build clean deploy