source: rtems/doc/relnotes/Makefile @ 0660b4f8

4.104.114.84.95
Last change on this file since 0660b4f8 was 0660b4f8, checked in by Joel Sherrill <joel.sherrill@…>, on 11/16/99 at 19:50:56

Changed copyright date to 1999.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  COPYRIGHT (c) 1988-1999.
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: dirs $(PROJECT).dvi
29ps: dirs $(PROJECT).ps
30pdf: dirs $(PROJECT).pdf
31       
32$(PROJECT).pdf: $(FILES)
33        $(TEXI2PDF) $(PROJECT).texi
34        cp $(PROJECT).pdf $(WWW_INSTALL)/$(PROJECT)
35       
36$(PROJECT).ps: $(PROJECT).dvi
37        dvips -o $(PROJECT).ps $(PROJECT).dvi
38        cp $(PROJECT).ps $(WWW_INSTALL)/$(PROJECT)
39
40$(PROJECT).dvi: $(FILES)
41        $(TEXI2DVI) $(PROJECT).texi
42        cp $(PROJECT).dvi $(WWW_INSTALL)/$(PROJECT)
43
44html: dirs
45        -mkdir -p $(WWW_INSTALL)/relnotes
46        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
47            $(PROJECT).texi
48
49clean:
50        rm -f *.o $(PROG) *.txt core *.html $(PROJECT).pdf
51        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
52        rm -f relnotes relnotes-* _*
53
Note: See TracBrowser for help on using the repository browser.