| 1 | 
default: | 
| 2 | 
        @echo "Targets" | 
| 3 | 
        @echo " make all   - everything in order" | 
| 4 | 
        @echo " make html  - generate LaTeX and HTML manual" | 
| 5 | 
        @echo " make files - PS and PDF files of manual" | 
| 6 | 
        @echo " make links - create symbolic links into manual for front end" | 
| 7 | 
 | 
| 8 | 
all: | 
| 9 | 
        make html  | 
| 10 | 
        make files | 
| 11 | 
        make links | 
| 12 | 
 | 
| 13 | 
html: | 
| 14 | 
        cd latex; make tex | 
| 15 | 
        cd latex; make html | 
| 16 | 
 | 
| 17 | 
files: | 
| 18 | 
        cd latex; make pdf | 
| 19 | 
        ln -sf latex/manual.pdf manual.pdf | 
| 20 | 
        cd latex; make ps.gz | 
| 21 | 
        ln -sf latex/manual.ps.gz manual.ps.gz | 
| 22 | 
 | 
| 23 | 
links: | 
| 24 | 
        ln -sf latex/manual manual | 
| 25 | 
        ln -sf latex/on-line-figs on-line-figs | 
| 26 | 
        ./generate_links |