From 43253b7676f26248beb9bc81bb7a19dba72bc2f4 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Wed, 12 Oct 1994 06:20:31 +0000 Subject: Add better dependencies to do two-pass latex runs automatically. Make "make clean" clean up the tex temp files. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4492 dc483132-0cff-0310-8789-dd5450dbe970 --- doc/api/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'doc/api/Makefile') diff --git a/doc/api/Makefile b/doc/api/Makefile index a826b6a7d5..e74e44050d 100644 --- a/doc/api/Makefile +++ b/doc/api/Makefile @@ -18,8 +18,21 @@ library.ps: 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 + +really-clean: clean + rm -f *.dvi *.ps + + library.dvi: $(LIBTEX) $(STYLES) + .tex.dvi: latex $* -- cgit