Archived
1
0
Fork 0

docs: added Asciidoc support

This commit is contained in:
Henrik Hautakoski 2010-11-04 21:42:39 +01:00
parent ff89dd2ded
commit 44be15984f
5 changed files with 155 additions and 130 deletions

18
docs/Makefile Normal file
View file

@ -0,0 +1,18 @@
ASCIIDOC = asciidoc
HTML_DOCS = api-notify.html strbuf.html xalloc.html
ifndef VERBOSE
QUIET_ASCIIDOC = @echo ' ' GEN $@;
endif
.PHONY : clean
all : $(HTML_DOCS)
html : $(HTML_DOCS)
%.html : %.txt
$(QUIET_ASCIIDOC)$(ASCIIDOC) -b xhtml11 -o $@ $<
clean :
$(RM) $(HTML_DOCS)