blog/Makefile

28 lines
447 B
Makefile
Raw Normal View History

2016-11-10 16:31:13 +05:30
THEME := themes/gitea
PUBLIC := public
2023-03-16 01:48:53 +05:30
ARCHIVE := https://dl.gitea.com/theme/main.tar.gz
2016-11-10 16:31:13 +05:30
HUGO_PACKAGE := github.com/gohugoio/hugo@v0.111.3
2016-11-10 16:31:13 +05:30
.PHONY: all
all: build
.PHONY: clean
clean:
rm -rf $(PUBLIC) $(THEME)
2016-11-10 16:31:13 +05:30
.PHONY: server
server: $(THEME)
go run $(HUGO_PACKAGE) server
2016-11-10 16:31:13 +05:30
.PHONY: build
build: $(THEME)
go run $(HUGO_PACKAGE) --cleanDestinationDir
2016-11-10 16:31:13 +05:30
.PHONY: update
update: $(THEME)
$(THEME):
mkdir -p $@
curl -sL $(ARCHIVE) | tar xz -C $@