1#!/usr/bin/env make 2# 3# Copyright (c) 2020, Arm Limited and contributors. All rights reserved. 4# 5# SPDX-License-Identifier: BSD-3-Clause 6# 7 8.SUFFIXES: 9 10.PHNOY: all 11 12RM:=cmake -E rm -rf 13 14all: 15 sphinx-build -b html . _build 16 17serve: 18 sphinx-autobuild . _build 19 20.PHONY:clean 21clean: 22 ${RM} _build 23