0
0
mirror of https://github.com/thegeeklab/corenetworks.git synced 2024-09-21 06:32:44 +02:00
corenetworks/Makefile
2020-04-13 15:43:44 +02:00

27 lines
720 B
Makefile

export GEEKDOC_VERSION ?= latest
BASE_DIR := docs
THEME := hugo-geekdoc
THEME_DIR := $(BASE_DIR)/themes
.PHONY: all
all: doc
.PHONY: doc
doc: doc-assets doc-generate
.PHONY: doc-assets
doc-assets:
mkdir -p $(THEME_DIR)/$(THEME)/ ; \
curl -sSL "https://github.com/xoxys/$(THEME)/releases/$${GEEKDOC_VERSION}/download/$(THEME).tar.gz" | tar -xz -C $(THEME_DIR)/$(THEME)/ --strip-components=1
.PHONY: doc-generate
doc-generate:
cd $(BASE_DIR) ; \
cp templates/usage_index.md content/usage/_index.md ; \
pydocmd simple corenetworks.authenticators++ corenetworks.client++ corenetworks.exceptions++ >> content/usage/_index.md
.PHONY: clean
clean:
rm -rf $(THEME_DIR) && \
rm -f $(BASE_DIR)/content/usage/_index.md