summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..19ad5a7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,30 @@
1all: build
2
3clean:
4 @rm -rf dist/*
5
6build_fonts: clean
7 @scripts/build_fonts.sh
8
9build_sass: clean
10 @scripts/build_sass.sh
11
12build_content: clean
13 @scripts/build_content.sh
14
15build: build_fonts build_sass build_content
16
17watch_sass: build
18 @scripts/watch_sass.sh
19
20watch_content: build
21 @scripts/watch_content.sh
22
23watch: watch_sass watch_content
24
25serve_only: build
26 @scripts/serve.sh
27
28serve: watch serve_only
29
30.PHONY: all build watch serve