Makefile 289 B

123456789101112131415161718
  1. export HUGO_VERSION?=0.127.0
  2. export HUGO_PLATFORM?=Linux-64bit
  3. export ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
  4. .DEFAULT_GOAL := build
  5. .PHONY: build
  6. build:
  7. scripts/build.sh
  8. .PHONY: serve
  9. serve:
  10. scripts/serve.sh
  11. .PHONY: publish
  12. publish:
  13. scripts/publish.sh