source: rtems/doc/tools/texi2www/Makefile @ 0be9926

4.104.114.84.95
Last change on this file since 0be9926 was 0be9926, checked in by Joel Sherrill <joel.sherrill@…>, on 04/03/98 at 16:29:23

Nowbiulds html and ps. Info not supported.

  • Property mode set to 100644
File size: 850 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
10DISTRIBUTION_LEVEL=internal
11
12include ../../Make.config
13
14all: html info ps
15
16dirs:
17        $(make-dirs)
18
19FILES= texi2www.texi
20
21info:
22
23dvi: $(PROJECT).dvi
24
25ps: dirs $(PROJECT).ps
26       
27$(PROJECT).ps: $(PROJECT).dvi
28        dvips -o $(PROJECT).ps $(PROJECT).dvi
29        cp $(PROJECT).ps $(PS_INSTALL)
30
31# run texi2dvi twice to generate the xref's properly.
32$(PROJECT).dvi: $(FILES)
33        $(TEXI2DVI) -v $(PROJECT).texi
34
35html: dirs $(FILES)
36        -mkdir -p $(WWW_INSTALL)/$(PROJECT)
37        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
38            $(PROJECT).texi
39
40clean:
41        rm -f *.o $(PROG) *.txt core
42        rm -f *.dvi *.ps *.log *.aux *.cp *.cps \
43        rm -f *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
44        rm -f $(PROJECT)-* $(GENERATED_FILES)
45        rm -f *.fixed _*
46
Note: See TracBrowser for help on using the repository browser.