Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
archived/docs/Makefile
2010-11-04 21:42:39 +01:00

18 lines
284 B
Makefile

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)