summaryrefslogtreecommitdiffstats
path: root/doc/api/Makefile
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>1995-04-11 18:25:12 +0000
committerEzra Peisach <epeisach@mit.edu>1995-04-11 18:25:12 +0000
commitdc6f3c3836d63a93ff5820aad902e7e76d5eedfb (patch)
treec605f9c627ddd6a09613bdda686b71ad0a7c6a7b /doc/api/Makefile
parent1e419f5ba93bb3a8067dd4b55c996d3b9d08bf68 (diff)
downloadkrb5-dc6f3c3836d63a93ff5820aad902e7e76d5eedfb.tar.gz
krb5-dc6f3c3836d63a93ff5820aad902e7e76d5eedfb.tar.xz
krb5-dc6f3c3836d63a93ff5820aad902e7e76d5eedfb.zip
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
Diffstat (limited to 'doc/api/Makefile')
-rw-r--r--doc/api/Makefile24
1 files changed, 11 insertions, 13 deletions
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 $*