Vitaliy Potyarkin
047b0643a5
Some checks failed
build static site / build (pull_request) Failing after 20s
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
30 lines
618 B
Makefile
30 lines
618 B
Makefile
#!/usr/bin/make -f
|
|
SHELL = bash
|
|
|
|
PUBDIR = public
|
|
HUGO_VERSION = 0.91.0
|
|
HUGO_BIN ?= bin/hugo-$(HUGO_VERSION)
|
|
|
|
.PHONY: all clean
|
|
all: public
|
|
|
|
bin/hugo-$(HUGO_VERSION):
|
|
@wget -q https://github.com/gohugoio/hugo/releases/download/v$(HUGO_VERSION)/hugo_extended_$(HUGO_VERSION)_Linux-64bit.tar.gz -O - |\
|
|
tar -xz -C bin/ hugo;
|
|
@mv bin/hugo $@
|
|
|
|
clean:
|
|
@rm -rf $(PUBDIR)
|
|
@rm -rf tmp
|
|
@rm -rf bin/hugo*
|
|
|
|
public: submodules $(HUGO_BIN)
|
|
@$(HUGO_BIN)
|
|
|
|
server: submodules $(HUGO_BIN)
|
|
@$(HUGO_BIN) server --disableFastRender
|
|
|
|
submodules:
|
|
@git submodule sync
|
|
@git submodule init
|
|
@git submodule update --recursive --remote
|