#!/usr/bin/env make -f
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: 2020 Collabora, Ltd. and the Proclamation contributors

all:
	sphinx-build . _build $(SPHINX_OPTS)

clean:
	-rm -rf _build

.PHONY: all clean
