Tidier bot replies (WIP).
[supybook.git] / Makefile
blob0fdbf17645c70ac7e71825fe353e5320a8c10211
1 PARAMS=-a toc -a toclevels=3 -a date=$(shell date +%Y-%m-%d) -a numbered -d book
3 all: index.html
5 pdf: index.pdf
7 %.html: %.txt
8 asciidoc $(PARAMS) $<
10 %.pdf: %.txt
11 a2x $(PARAMS) -f pdf $<
13 clean:
14 @$(RM) index.html
16 .PHONY: all pdf