mirror of
https://github.com/mudler/luet.git
synced 2025-05-08 08:16:31 +00:00
19 lines
288 B
Makefile
19 lines
288 B
Makefile
export HUGO_VERSION?=0.91.2
|
|
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
|