From dc6f3c3836d63a93ff5820aad902e7e76d5eedfb Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Tue, 11 Apr 1995 18:25:12 +0000 Subject: that everything is really up to date errors.tex: Removes isode (yay!!) Updated tables to reflect current reality Added asn.1 tables and magic number table Makefile: Two pass latex processing of library file will now realize git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5351 dc483132-0cff-0310-8789-dd5450dbe970 --- doc/api/Makefile | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'doc/api/Makefile') diff --git a/doc/api/Makefile b/doc/api/Makefile index e74e44050..1438229bf 100644 --- a/doc/api/Makefile +++ b/doc/api/Makefile @@ -1,8 +1,10 @@ .SUFFIXES: .tex .dvi .ps +SHELL=/bin/sh + STYLES=changebar.sty fixunder.sty functions.sty LIBTEX= library.tex intro.tex tables.tex errors.tex krb5.tex ccache.tex \ - rcache.tex keytab.tex libos.tex library.ind + rcache.tex keytab.tex libos.tex DESTEX= libdes.tex @@ -13,25 +15,21 @@ libdes.dvi: $(DESTEX) $(STYLES) library.ps: library.dvi -# hard to capture two-pass semantics in Makefiles... -# library.ind: library.dvi -library.ind: library.idx - index library.idx - -library.idx: - touch library.ind - latex library.tex - rm library.ind - clean: - rm -f *.toc *.log *.idx *.ind *.aux + rm -f *.toc *.log *.idx *.ind *.aux lib1.stamp really-clean: clean rm -f *.dvi *.ps -library.dvi: $(LIBTEX) $(STYLES) +library.dvi: lib1.stamp $(LIBTEX) $(STYLES) + latex library +lib1.stamp: $(LIBTEX) $(STYLES) + touch library.ind + latex library + index library.idx + date > lib1.stamp .tex.dvi: latex $* -- cgit