Files
xmlada/docs/Makefile
Emmanuel Briot a0d07a2c2e Initial revision
git-svn-id: svn+ssh://svn.eu.adacore.com/Dev/importfromcvs/trunk@11480 936e1b1b-40f2-da11-902a-00137254ae57
2001-10-30 14:48:07 +00:00

39 lines
516 B
Makefile

FORMATS=${addprefix xml.,ps html info txt}
all: ${FORMATS}
%.dvi: %.texi
echo x | tex $<
texindex ${<:%.texi=%.cp}
echo x | tex $<
%.ps: %.dvi
dvips -o $@ $<
%.html: %.texi
texi2html -glossary -menu -split_chapter -number $<
%.info: %.texi
makeinfo $<
%.txt: %.texi
makeinfo -o $@ --number-sections $<
clean: force
@${RM} *.cp
@${RM} *.aux
@${RM} *.cps
@${RM} *.fn
@${RM} *.ky
@${RM} *.log
@${RM} *.pg
@${RM} *.toc
@${RM} *.tp
@${RM} *.vr
clean_all: clean
@${RM} ${FORMATS} *.html
force: