AdaptedList -> SameETypeList
*NO BW COMPAT*, benefit from cw 3.6 releasing of folder,file and blog
which use it to get update at the same time.
CMHN and PEGASE will need update (but won't go to 3.6 without update,
so seem fine).
MKHTMLOPTS=--doctype book --param toc.section.depth=1 --target html --stylesheet single-file
SRC=.
MKPDFOPTS=--doctype book --param toc.section.depth=2 --target pdf --stylesheet standard
TXTFILES:= $(wildcard *.txt)
TARGET := $(TXTFILES:.txt=.html)
all: index.html
index.html: *.txt
mkdoc ${MKHTMLOPTS} index.txt
index.pdf: *.txt
mkdoc ${MKPDFOPTS} index.txt
%.html: %.txt
mkdoc ${MKHTMLOPTS} $<
clean:
rm -f *.html