source: rtems/doc/relnotes/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: 1.0 KB
Line 
1#
2#  COPYRIGHT (c) 1988-1998.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9PROJECT=relnotes
10
11include ../Make.config
12
13all: html info ps pdf
14
15dirs:
16        $(make-dirs)
17
18COMMON_FILES=../common/cpright.texi
19
20FILES=install.texi intro.texi probrep.texi relnotes.texi status.texi
21
22info: dirs relnotes
23        cp $(PROJECT) $(wildcard $(PROJECT)-*) $(INFO_INSTALL)
24
25relnotes: $(FILES)
26        $(MAKEINFO) $(PROJECT).texi
27
28dvi: $(PROJECT).dvi
29ps: dirs $(PROJECT).ps
30pdf: dirs $(PROJECT).pdf
31       
32$(PROJECT).pdf: $(FILES)
33        $(TEXI2PDF) $(PROJECT).texi
34        cp $(PROJECT).pdf $(PDF_INSTALL)
35       
36$(PROJECT).ps: $(PROJECT).dvi
37        dvips -o $(PROJECT).ps $(PROJECT).dvi
38        cp $(PROJECT).ps $(PS_INSTALL)
39
40$(PROJECT).dvi: $(FILES)
41        $(TEXI2DVI) $(PROJECT).texi
42
43html: dirs
44        -mkdir -p $(WWW_INSTALL)/relnotes
45        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
46            $(PROJECT).texi
47
48clean:
49        rm -f *.o $(PROG) *.txt core *.html *.pdf
50        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
51        rm -f relnotes relnotes-* _*
52
Note: See TracBrowser for help on using the repository browser.