aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: aafaf6219eb7ca702feaa67a9de39a92d4ef33bc (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 -C build -cvz . > site.tar.gz
	hut pages publish -d justine.smithies.me.uk site.tar.gz


.PHONY: build clean deploy