17 lines
429 B
Makefile
17 lines
429 B
Makefile
# 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
|
|
SOURCEDIR = source/
|
|
BUILDDIR = build/
|
|
DESTINATION=root@[2a0a:e5c0:2:12:0:f0ff:fea9:c3d9]:/home/app/static/ucloud
|
|
|
|
publish: build
|
|
rsync -av $(BUILDDIR)/ $(DESTINATION)
|
|
|
|
build:
|
|
$(SPHINXBUILD) "$(SOURCEDIR)" "$(BUILDDIR)"
|
|
|