summaryrefslogtreecommitdiff
path: root/Makefile
blob: 998bdd490654805f924832247c4c8023a8062861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
result:
	nix-build -A build

install: result
	nix-env -i "$$(readlink result)"

clean:
	rm result
	rm -rf _site

serve:
	nix-shell -A serve

update:
	nix-shell -p bundler --run 'bundler update; bundler lock; bundix; rm -rf .bundle vendor'