libqbe/doc/Makefile

18 lines
339 B
Makefile
Raw Normal View History

2016-03-23 21:56:15 -04:00
DOCS = abi il llvm
2016-03-09 10:11:10 -05:00
2017-01-06 22:57:30 -05:00
all: $(DOCS:%=html/%.html)
2016-03-08 21:17:01 -05:00
clean:
rm -fr html
html/%.html: %.txt
mkdir html 2> /dev/null || true
2017-01-07 15:57:04 -05:00
( sed -ne '2{s,.*,<title>&</title>,;p;q}' $<; \
2016-03-08 21:17:01 -05:00
echo '<div class="container">'; \
sed -ne '2{s,.*,<h2>&</h2>,;p;q}' $<; \
2016-03-09 14:32:35 -05:00
sed -e '1,3d' $< | ocaml txt/txt.ml; \
2016-03-08 21:17:01 -05:00
echo '</div>'; \
) > $@
2016-03-17 13:01:46 -04:00
2017-01-06 22:57:30 -05:00
.PHONY: all clean