build: add Makefile

This commit is contained in:
Bruno BELANYI 2020-07-14 17:00:41 +02:00
parent 8d2e4eb52d
commit 5013cb7090

28
Makefile Normal file
View file

@ -0,0 +1,28 @@
.PHONY: all
all: build
.PHONY: build
build: build-dev
.PHONY: build-dev
build-dev:
hugo -D
.PHONY: build-prod
build-prod:
HUGO_ENV=production hugo
.PHONY: serve
serve: serve-dev
.PHONY: serve-dev
serve-dev:
hugo server -D
.PHONY: serve-prod
serve-prod:
hugo server
.PHONY: clean
clean:
$(RM) -r public