123456789101112131415161718 |
- export HUGO_VERSION?=0.127.0
- export HUGO_PLATFORM?=Linux-64bit
- export ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
- .DEFAULT_GOAL := build
- .PHONY: build
- build:
- scripts/build.sh
- .PHONY: serve
- serve:
- scripts/serve.sh
- .PHONY: publish
- publish:
- scripts/publish.sh
|