14 lines
No EOL
268 B
Makefile
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
|