hugo-theme-minima/Makefile
2021-08-19 12:42:47 +08:00

14 lines
No EOL
268 B
Makefile

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