summary refs log blame commit diff
path: root/Makefile
blob: b595def4241caa1e5924144ee632c4b6a3367439 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                                          

                              









                                   
# SPDX-FileCopyrightText: 2020 Alyssa Ross
# SPDX-License-Identifier: MIT

ASCIIDOCTOR = asciidoctor

%.html: %.adoc
	$(ASCIIDOCTOR) -o $@ $<

developer-manual.html:

clean:
	rm -f developer-manual.html
.PHONY: clean