hugo-theme-minima/Makefile
2021-11-06 15:28:56 +08:00

14 lines
No EOL
269 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