hugo-page-test/Makefile

12 lines
124 B
Makefile
Raw Normal View History

2023-01-21 20:30:30 +01:00
HUGO_PARAMS = -D
all:
build:
hugo ${HUGO_PARAMS}
tarball: build
tar czf page.tar.gz -C public .
.PHONY: tarball build