diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e5590c5 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +.POSIX: +.SUFFIXES: + +HUGO ?= hugo + +all: build + +clean: + @[ ! -d public ] || rm -rf public + +build: clean + @$(HUGO) build --minify + +serve: clean + @$(HUGO) serve --disableFastRender + +.PHONY: all clean build serve |