Files
homepage/themes/hugo-coder/Makefile
Hendrik Hogertz 63ba272b75 first commit
2022-01-15 00:56:38 +01:00

13 lines
252 B
Makefile

HUGO_BIN=hugo
.PHONY: build demo release
build:
$(HUGO_BIN) --themesDir=../.. --source=exampleSite
demo:
$(HUGO_BIN) server -D --themesDir=../.. --source=exampleSite
release: build
rm -rf ./resources && cp -r ./exampleSite/resources ./resources