website/Makefile

32 lines
509 B
Makefile
Raw Normal View History

2016-11-10 16:31:21 +05:30
THEME := themes/gitea
PUBLIC := public
ARCHIVE := https://dl.gitea.io/theme/master.tar.gz
2016-11-10 16:31:21 +05:30
HUGO_PACKAGE := github.com/gohugoio/hugo@v0.81.0
2016-11-10 16:31:21 +05:30
.PHONY: all
all: build
.PHONY: clean
clean:
rm -rf $(PUBLIC) $(THEME)
.PHONY: trans-copy
trans-copy:
bash scripts/trans-copy.sh
2016-11-10 16:31:21 +05:30
.PHONY: server
server: $(THEME)
go run $(HUGO_PACKAGE) server
2016-11-10 16:31:21 +05:30
.PHONY: build
build: $(THEME)
go run $(HUGO_PACKAGE) --cleanDestinationDir
2016-11-10 16:31:21 +05:30
.PHONY: update
update: $(THEME)
$(THEME):
mkdir -p $@
2021-08-05 19:40:56 +05:30
curl -L -s $(ARCHIVE) | tar xz -C $@