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