mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-26 17:02:24 +01:00
71 lines
2.2 KiB
Makefile
71 lines
2.2 KiB
Makefile
.PHONY: json-to-xml clean help api-deps regen-apis license update-json
|
|
.SUFFIXES:
|
|
|
|
include Makefile.helpers
|
|
|
|
VENV := virtualenv
|
|
VENV_DIR := .pyenv
|
|
PYTHON := $(VENV_DIR)/bin/python
|
|
PIP := $(VENV_DIR)/bin/pip
|
|
MAKO_RENDER := etc/bin/mako-render
|
|
API_VERSION_GEN := etc/bin/api_version_to_yaml.py
|
|
TPL := $(PYTHON) $(MAKO_RENDER)
|
|
|
|
MAKO_SRC = src/mako
|
|
RUST_SRC = src/rust
|
|
API_DEPS_TPL = $(MAKO_SRC)/deps.mako
|
|
API_DEPS = .api.deps
|
|
API_SHARED_INFO = etc/api/shared.yaml
|
|
API_LIST = etc/api/api-list.yaml
|
|
API_JSON_FILES = $(shell find etc -type f -name '*-api.json')
|
|
MAKO_LIB_DIR = $(MAKO_SRC)/lib
|
|
MAKO_LIB_FILES = $(shell find $(MAKO_LIB_DIR) -type f -name '*.*')
|
|
MAKO = PYTHONPATH=$(MAKO_LIB_DIR) $(TPL)
|
|
MAKO_STANDARD_DEPENDENCIES = $(API_SHARED_INFO) $(MAKO_LIB_FILES) $(MAKO_RENDER)
|
|
|
|
help:
|
|
$(info using template engine: '$(TPL)')
|
|
$(info )
|
|
$(info Targets)
|
|
$(info docs - cargo-doc on all APIs, assemble them together and generate index)
|
|
$(info github-pages - invoke ghp-import on all documentation)
|
|
$(info apis - make all APIs)
|
|
$(info cargo - run cargo on all APIs, use ARGS="args ..." to specify cargo arguments)
|
|
$(info regen-apis - clear out all generated apis, and regenerate them)
|
|
$(info clean-apis - delete all generated APIs)
|
|
$(info help-api - show all api targets to build individually)
|
|
$(info help - print this help)
|
|
$(info license - regenerate the main license file)
|
|
$(info update-json - copy API definitions from source GOOGLE_GO_APIS_REPO=<path>)
|
|
$(info api-deps - generate a file to tell make what API file dependencies will be)
|
|
|
|
$(PYTHON):
|
|
virtualenv $(VENV_DIR)
|
|
$(PIP) install mako pyyaml
|
|
|
|
$(MAKO_RENDER): $(PYTHON)
|
|
|
|
$(API_DEPS): $(API_DEPS_TPL) $(MAKO_STANDARD_DEPENDENCIES) $(API_LIST)
|
|
$(MAKO) --template-dir '.' -io $(API_DEPS_TPL)=$@ --data-files $(API_SHARED_INFO) $(API_LIST)
|
|
|
|
api-deps: $(API_DEPS)
|
|
|
|
$(API_LIST): $(API_VERSION_GEN)
|
|
$(API_VERSION_GEN) etc/api $@ $@
|
|
|
|
include $(API_DEPS)
|
|
|
|
LICENSE.md: $(MAKO_SRC)/LICENSE.md.mako $(API_SHARED_INFO) $(MAKO_RENDER)
|
|
$(MAKO) -io $<=$@ --data-files $(API_SHARED_INFO)
|
|
|
|
license: LICENSE.md
|
|
|
|
regen-apis: clean-apis apis license
|
|
|
|
clean: clean-apis
|
|
-rm -Rf $(VENV_DIR)
|
|
-rm $(API_DEPS)
|
|
|
|
update-json:
|
|
etc/bin/update-json.sh $(GOOGLE_GO_APIS_REPO) etc/api
|