diff options
| author | Ezra Peisach <epeisach@mit.edu> | 1995-10-17 23:26:43 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 1995-10-17 23:26:43 +0000 |
| commit | e4ef15a79f587cd78353bcc51026802b96c43a95 (patch) | |
| tree | 250615aa37af980ea4ca045af83f4a3e8df1fdba /doc | |
| parent | 61d9e376b0dc8858c32a3622ab60012f776f193c (diff) | |
Simple Makefile to build the dvi and info forms of the manual. Clean
rules work as well.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6973 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 000000000..6c7eb1f47 --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,15 @@ +.SUFFIXES: .texi .dvi .ps .info + +all:: install.info install.dvi + +.texi.dvi: + texi2dvi $*.texi + + +.texi.info: + makeinfo $*.texi + + +clean:: + rm -f *.log *.info *.dvi *.aux *.toc *.cp *.fn *.vr *.tp *.ky \ + *.pg *.ps |
