aboutsummaryrefslogblamecommitdiff
path: root/Makefile
blob: aafaf6219eb7ca702feaa67a9de39a92d4ef33bc (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                       

                

                      
                         
       

                                                               

 
                          
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