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

30 lines
764 B
Makefile
Raw Normal View History

# renovate: datasource=github-releases depName=thegeeklab/hugo-geekdoc
THEME_VERSION := v0.7.3
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:
2020-04-14 21:35:47 +02:00
pdoc --template-dir $(BASEDIR)/templates/ -o $(APIDIR) --force \
$(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)