You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
418 B
30 lines
418 B
7 years ago
|
THEME := themes/gitea
|
||
|
PUBLIC := public
|
||
|
ARCHIVE := https://dl.gitea.io/theme/master.tar.gz
|
||
|
|
||
|
.PHONY: all
|
||
|
all: build
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -rf $(PUBLIC) $(THEME)
|
||
|
|
||
|
.PHONY: trans-copy
|
||
|
trans-copy:
|
||
|
@bash scripts/trans-copy
|
||
|
|
||
|
.PHONY: server
|
||
|
server: $(THEME)
|
||
|
hugo server
|
||
|
|
||
|
.PHONY: build
|
||
|
build: $(THEME)
|
||
|
hugo --cleanDestinationDir
|
||
|
|
||
|
.PHONY: update
|
||
|
update: $(THEME)
|
||
|
|
||
|
$(THEME):
|
||
|
mkdir -p $@
|
||
|
curl -s $(ARCHIVE) | tar xz -C $@
|