source: trunk/doc/Makefile @ 967

Last change on this file since 967 was 967, checked in by Chris Phillips, 18 years ago

Created index

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 548 bytes
Line 
1TARGET := userguide
2WEBLOC := /tmp
3
4LATEXHTML := /usr/bin/latex2html
5LATEXHTMLOPTS := -local_icons
6DVIPDF := /usr/bin/dvipdf
7LATEX := /usr/bin/latex
8
9all: pdf html
10
11$(TARGET): pdf html
12
13latex:
14        $(LATEX) $(TARGET)
15        makeindex $(TARGET)
16        $(LATEX) $(TARGET)
17
18pdf: latex
19        $(DVIPDF) $(TARGET)
20
21html:
22        $(LATEXHTML) $(LATEXHTMLOPTS) $(TARGET)
23
24clean:
25        @rm -f $(TARGET).log $(TARGET).aux $(TARGET).dvi
26
27realclean: clean
28        @rm -f $(TARGET).pdf $(TARGET)
29
30install:
31        -cp -rf  $(TARGET) $(WEBLOC)
32        -cp -f $(TARGET).pdf $(WEBLOC)
33
34.PHONY: install clean realclean
Note: See TracBrowser for help on using the repository browser.