13 lines
No EOL
219 B
Makefile
13 lines
No EOL
219 B
Makefile
source=exampleSite
|
|
themeDir=../..
|
|
|
|
.PHONY: dev, build, clean
|
|
|
|
dev:
|
|
hugo server -D -s $(source) --themesDir $(themeDir)
|
|
|
|
build:
|
|
hugo -D --gc --minify -s $(source) --themesDir $(themeDir)
|
|
|
|
clean:
|
|
rm -r $(source)/public
|