source: CPL/oasis3-mct/branches/OASIS3-MCT_5.0_branch/lib/mct/doc/Makefile @ 6331

Last change on this file since 6331 was 6331, checked in by aclsce, 17 months ago

Moved oasis-mct_5.0 in oasis3-mct/branches directory.

File size: 476 bytes
Line 
1#!/bin/make
2#-----------------------------------------------------------------------
3# Documentation
4all:
5        cd texsrc; make
6        make apis
7
8html:
9        latex2html -white -toc_depth 5 -split 4 -show_section_numbers \
10        -address "<A HREF="mailto:jacob@mcs.anl.gov">jacob@mcs.anl.gov</A>" \
11        mct_APIs.tex
12apis:
13        cd texsrc; make
14        make apisdvi
15
16apisdvi: mct_APIs.dvi
17
18clean:
19        cd texsrc; make clean
20        rm -f *.dvi *.log *.bbl *.blg *.aux *.toc
21
22.SUFFIXES: .dvi .tex
23
24.tex.dvi:
25        latex $*.tex
26
27#.
Note: See TracBrowser for help on using the repository browser.