corenetworks/Makefile

30 lines
776 B
Makefile
Raw Permalink Normal View History

# renovate: datasource=github-releases depName=thegeeklab/hugo-geekdoc
THEME_VERSION := v0.10.1
2020-04-13 15:37:11 +02:00
THEME := hugo-geekdoc
2020-04-14 21:35:47 +02:00
BASEDIR := docs
THEMEDIR := $(BASEDIR)/themes
APIDIR := $(BASEDIR)/content/api
PACKAGE := corenetworks
2020-04-13 15:37:11 +02:00
.PHONY: all
all: doc
.PHONY: doc
doc: doc-assets doc-generate
.PHONY: doc-assets
doc-assets:
2020-04-14 21:35:47 +02:00
mkdir -p $(THEMEDIR)/$(THEME)/ ; \
curl -sSL "https://github.com/thegeeklab/$(THEME)/releases/download/${THEME_VERSION}/$(THEME).tar.gz" | tar -xz -C $(THEMEDIR)/$(THEME)/ --strip-components=1
2020-04-13 15:37:11 +02:00
.PHONY: doc-generate
doc-generate:
2021-01-03 13:49:55 +01:00
poetry run pdoc --template-dir $(BASEDIR)/templates/ -o $(APIDIR) --force \
2020-04-14 21:35:47 +02:00
$(PACKAGE).authenticators \
$(PACKAGE).client \
$(PACKAGE).exceptions
2020-04-13 15:37:11 +02:00
.PHONY: clean
clean:
2020-04-14 21:35:47 +02:00
rm -rf $(THEMEDIR) && \
rm -rf $(APIDIR)/$(PACKAGE)