1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
SUBDIRS = UserManual Dependencies ClassReference
EXTRA_DIST = taomanual.css \
AdditionalInstallNotes.txt
html:
cd UserManual && make html
cd Dependencies && make html
html-archives:
cd UserManual && make html-archive
cd Dependencies && make html-archive
ps:
cd UserManual && make ps
cd Dependencies && make ps
psgzips:
cd UserManual && make psgzip
cd Dependencies && make psgzip
download-docs: html-archives psgzips
docs: ps html
alldocs: docs download-docs
|