diff options
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/Makefile b/doc/Makefile deleted file mode 100644 index e1b93eb..0000000 --- a/doc/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -DOCS = abi il llvm - -all: $(DOCS:%=html/%.html) - -clean: - rm -fr html - -html/%.html: %.txt - mkdir html 2> /dev/null || true - ( sed -ne '2{s,.*,<title>&</title>,;p;q}' $<; \ - echo '<div class="container">'; \ - sed -ne '2{s,.*,<h2>&</h2>,;p;q}' $<; \ - sed -e '1,3d' $< | ocaml txt/txt.ml; \ - echo '</div>'; \ - ) > $@ - -.PHONY: all clean |