blob: 2352519d5154f6779fe666e5eda7347a78e2fb0f [file] [log] [blame]
HERONPY_VERSION = $(shell python -c "import yaml; print yaml.load(open('config.yaml', 'r'))['params']['versions']['heronpy']")
setup:
scripts/setup.sh
clean:
rm -rf public/* static/*
serve:
@hugo serve
develop-static-assets:
@npm run develop
build-static-assets:
@npm run clean
@npm run build
pages:
@hugo
linkchecker:
@scripts/linkchecker.sh
javadocs:
@scripts/javadocs.sh
python-docs:
@scripts/python-doc-gen.sh $(HERONPY_VERSION)
site:
@make clean
@make build-static-assets
@make pages
@make javadocs
@make python-docs
travis-site:
@make clean
@make build-static-assets
@make pages
@scripts/javadocs.sh --travis
@make python-docs