From fe48bee6e9d409704bc09b1ae5527e2de1115fc8 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Mon, 21 Dec 2020 21:16:43 +0100 Subject: Added makefile --- Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..19ad5a7 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 -- cgit v1.2.3-54-g00ecf