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

                              









                                   
# SPDX-License-Identifier: MIT

ASCIIDOCTOR = asciidoctor

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

developer-manual.html:

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