Makefile (267B)
1 HUGO_BIN=hugo 2 3 .PHONY: build demo release 4 5 build: 6 $(HUGO_BIN) --themesDir=../.. --source=exampleSite 7 8 demo: 9 $(HUGO_BIN) server -D --themesDir=../.. --source=exampleSite --bind 0.0.0.0 10 11 release: build 12 rm -rf ./resources && cp -r ./exampleSite/resources ./resources