aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: bab75f857054cdc8af6d0ddc39ea23dc99669f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
MAKEFLAGS += -j2

dev: server watch

watch:
	find content/* templates/* static/* | entr make generate

server:
	browser-sync start --server ./public --watch --no-open --no-notify

clean:
	rm -rf public/*

generate:
	staticgen --generate

deploy: clean generate
	firebase deploy