Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > updates > by-pkgid > cd38b09e3cb8d6c675b02d30393e68af > files > 3

kaya-doc-0.5.2-8.fc14.noarch.rpm

LATEX = latex
BIBTEX = bibtex
MAKEIDX = makeindex
DVIPS = dvips
DVIPDF = dvipdf

TARGET = kaya.ps

SRCS = kaya.tex macros.ltx builtins.tex	functions.tex structure.tex \
       expressions.tex future.tex lexical.tex types.tex \
       foreign.tex internals.tex modules.tex progtypes.tex

all: kaya.ps kaya.pdf

kaya.dvi: ${SRCS} references.bib

html:
	latex2html kaya.tex -local_icons -bottom_navigation -style kaya.css
	cp kaya.css kaya
	tidy -modify kaya/*.html

clean:
	rm -f *.aux *.bbl *.blg *.dvi *.log *.pdf *.ps 
	rm -rf kaya

distclean: clean
	rm -f *~

%.ps: %.dvi
	dvips -f $< > $@

%.pdf: %.dvi
	dvipdfm $<

%.dvi: %.tex ${SRCS}
	${LATEX} $<
	${BIBTEX} $*    
	${LATEX} $<
	${LATEX} $<