2015-02-11 15:22:56 +07:00
|
|
|
# Makefile for Sphinx documentation
|
|
|
|
|
2021-01-29 01:05:48 +07:00
|
|
|
SPHINX_BUILD = sphinx-build
|
|
|
|
CONFIG_DIR = .
|
|
|
|
SPHINXOPTS = -A google_analytics_key=$(GOOGLE_ANALYTICS_KEY)
|
|
|
|
SOURCE_DIR = content
|
|
|
|
BUILD_DIR = _build
|
|
|
|
|
|
|
|
# Rely on COMSPEC, which is a variable present in all Windows platforms, to determine the OS
|
|
|
|
ifdef COMSPEC
|
|
|
|
RM_CMD ?= del
|
|
|
|
else
|
|
|
|
RM_CMD ?= rm -rf
|
2015-02-11 15:22:56 +07:00
|
|
|
endif
|
|
|
|
|
2021-01-29 01:05:48 +07:00
|
|
|
# In first position to build the documentation from scratch by default
|
|
|
|
all: html
|
2015-02-11 15:22:56 +07:00
|
|
|
|
|
|
|
help:
|
2021-01-29 01:05:48 +07:00
|
|
|
@echo "Please use 'make <target>' where <target> is one of"
|
|
|
|
@echo " html to build the documentation to HTML"
|
|
|
|
@echo " clean to delete the build files"
|
2015-02-11 15:22:56 +07:00
|
|
|
|
|
|
|
clean:
|
2021-01-29 01:05:48 +07:00
|
|
|
@echo "Cleaning build files..."
|
|
|
|
$(RM_CMD) $(BUILD_DIR)/*
|
|
|
|
$(RM_CMD) extensions/odoo_theme/static/style.css
|
|
|
|
@echo "Cleaning finished."
|
2015-02-11 15:22:56 +07:00
|
|
|
|
2021-01-29 01:05:48 +07:00
|
|
|
edi: SPHINXOPTS += -A collapse_menu=True
|
|
|
|
edi: clean html
|
2015-02-11 15:22:56 +07:00
|
|
|
|
2021-01-29 01:05:48 +07:00
|
|
|
html: extensions/odoo_theme/static/style.css
|
|
|
|
@echo "Starting build..."
|
|
|
|
$(SPHINX_BUILD) -c $(CONFIG_DIR) -b html $(SPHINXOPTS) $(SOURCE_DIR) $(BUILD_DIR)/html
|
2015-02-11 15:22:56 +07:00
|
|
|
@echo "Build finished."
|
|
|
|
|
2021-01-29 01:05:48 +07:00
|
|
|
extensions/odoo_theme/static/style.css: extensions/odoo_theme/static/*.scss
|
|
|
|
@echo "Compiling stylesheets..."
|
|
|
|
pysassc $(subst .css,.scss,$@) $@
|
|
|
|
@echo "Compilation finished."
|