hugo-theme-minima/Makefile
2022-11-07 16:57:21 +08:00

14 lines
No EOL
268 B
Makefile

source=exampleSite
themeDir=../..
.PHONY: dev, build, clean
dev:
hugo server -D -s $(source) --themesDir $(themeDir) --disableFastRender
build:
hugo -D --gc --minify -s $(source) --themesDir $(themeDir)
clean:
rm -r $(source)/public
rm -r exampleSite/resources