summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 19ad5a74b8278c8120fb526669ebc70f76acc0e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
all: build

clean:
	@rm -rf dist/*

build_fonts: clean
	@scripts/build_fonts.sh

build_sass: clean
	@scripts/build_sass.sh

build_content: clean
	@scripts/build_content.sh

build: build_fonts build_sass build_content

watch_sass: build
	@scripts/watch_sass.sh

watch_content: build
	@scripts/watch_content.sh

watch: watch_sass watch_content

serve_only: build
	@scripts/serve.sh

serve: watch serve_only

.PHONY: all build watch serve