source: rtems/doc/tools/texi2www/Makefile @ ed11cadf

4.104.114.84.95
Last change on this file since ed11cadf was ed11cadf, checked in by Joel Sherrill <joel.sherrill@…>, on 10/01/99 at 17:44:06

Numerous minor changes required to transition to the latest version
of texinfo and TeX. This version of the tools can produce PDF with
figures included.

  • Property mode set to 100644
File size: 896 bytes
Line 
1#
2#  COPYRIGHT (c) 1988-1998.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9PROJECT=texi2www
10
11include ../../Make.config
12
13all: html info ps pdf
14
15dirs:
16        $(make-dirs)
17
18FILES= texi2www.texi
19
20info:
21
22dvi: $(PROJECT).dvi
23
24ps: dirs $(PROJECT).ps
25pdf: dirs $(PROJECT).pdf
26       
27$(PROJECT).pdf: $(FILES)
28        #$(TEXI2PDF) $(PROJECT).texi
29        #cp $(PROJECT).pdf $(PDF_INSTALL)
30       
31$(PROJECT).ps: $(PROJECT).dvi
32        #dvips -o $(PROJECT).ps $(PROJECT).dvi
33        #cp $(PROJECT).ps $(PS_INSTALL)
34
35$(PROJECT).dvi: $(FILES)
36        #$(TEXI2DVI) $(PROJECT).texi
37
38html: dirs $(FILES)
39        #-mkdir -p $(WWW_INSTALL)/$(PROJECT)
40        #$(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
41        #    $(PROJECT).texi
42
43clean:
44        rm -f *.o $(PROG) *.txt core *.pdf
45        rm -f *.dvi *.ps *.log *.aux *.cp *.cps
46        rm -f *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
47        rm -f $(PROJECT)-* $(GENERATED_FILES)
48        rm -f *.fixed _*
49
Note: See TracBrowser for help on using the repository browser.