2019-11-11 18:42:57 +00:00
|
|
|
# Minimal makefile for Sphinx documentation
|
|
|
|
#
|
|
|
|
|
|
|
|
# You can set these variables from the command line, and also
|
|
|
|
# from the environment for the first two.
|
|
|
|
SPHINXOPTS ?=
|
|
|
|
SPHINXBUILD ?= sphinx-build
|
2019-11-12 11:33:20 +00:00
|
|
|
SOURCEDIR = source/
|
|
|
|
BUILDDIR = build/
|
2020-01-15 10:32:23 +00:00
|
|
|
DESTINATION=root@staticweb.ungleich.ch:/home/services/www/ungleichstatic/staticcms.ungleich.ch/www/uncloud/
|
2019-11-15 16:11:45 +00:00
|
|
|
|
|
|
|
.PHONY: all build clean
|
2019-11-11 18:42:57 +00:00
|
|
|
|
2019-11-17 17:51:39 +00:00
|
|
|
publish: build permissions
|
2019-11-15 16:11:45 +00:00
|
|
|
rsync -av $(BUILDDIR) $(DESTINATION)
|
2019-11-11 18:42:57 +00:00
|
|
|
|
2019-11-17 17:51:39 +00:00
|
|
|
permissions: build
|
|
|
|
find $(BUILDDIR) -type f -exec chmod 0644 {} \;
|
|
|
|
find $(BUILDDIR) -type d -exec chmod 0755 {} \;
|
|
|
|
|
2019-11-12 11:33:20 +00:00
|
|
|
build:
|
|
|
|
$(SPHINXBUILD) "$(SOURCEDIR)" "$(BUILDDIR)"
|
2019-12-07 11:53:41 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf $(BUILDDIR)
|