mirror of
https://github.com/AdaCore/xmlada.git
synced 2026-02-12 12:30:28 -08:00
git-svn-id: svn+ssh://svn.eu.adacore.com/Dev/importfromcvs/trunk@11480 936e1b1b-40f2-da11-902a-00137254ae57
39 lines
516 B
Makefile
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:
|