website/Makefile

32 lines
509 B
Makefile
Raw Normal View History

2016-11-10 16:31:21 +05:30
THEME := themes/gitea
PUBLIC := public
2023-04-14 23:38:31 +05:30
ARCHIVE := https://dl.gitea.com/theme/main.tar.gz
2016-11-10 16:31:21 +05:30
2023-04-14 23:50:04 +05:30
HUGO_PACKAGE := github.com/gohugoio/hugo@v0.111.3
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 $@