old_blog/themes/minima/Makefile
2021-07-31 10:19:02 -04:00

12 lines
190 B
Makefile

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