blob: 7eb44e15059803f85252600be43980efb8529b85 [file] [log] [blame]
Gyorgy Szing4021c292020-11-24 00:33:00 +01001#!/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