source: rtems/doc/relnotes/Makefile @ ca0b18a1

4.104.114.84.95
Last change on this file since ca0b18a1 was ca0b18a1, checked in by Joel Sherrill <joel.sherrill@…>, on 03/30/98 at 14:42:11

Corrected distribution levels for html

  • Property mode set to 100644
File size: 1010 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=relnotes
10DISTRIBUTION_LEVEL=internal
11
12include ../Make.config
13
14all: 
15
16COMMON_FILES=../common/cpright.texi
17
18FILES=install.texi intro.texi probrep.texi relnotes.texi status.texi
19
20all:
21
22info: relnotes
23        cp $(PROJECT) $(wildcard $(PROJECT)-*) $(INFO_INSTALL)
24
25relnotes: $(FILES)
26        $(MAKEINFO) $(PROJECT).texi
27
28vinfo: info
29        $(INFO) -f relnotes
30
31dvi: $(PROJECT).dvi
32ps: $(PROJECT).ps
33       
34$(PROJECT).ps: $(PROJECT).dvi
35        dvips -o $(PROJECT).ps $(PROJECT).dvi
36        cp $(PROJECT).ps $(PS_INSTALL)
37
38view: ps
39        $(GHOSTVIEW) $(PROJECT).ps
40
41dv: dvi
42        $(XDVI) $(PROJECT).dvi
43
44$(PROJECT).dvi: $(FILES)
45        $(TEXI2DVI) $(PROJECT).texi
46
47html:
48        -mkdir -p $(WWW_INSTALL)/relnotes
49        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
50            $(PROJECT).texi
51
52clean:
53        rm -f *.o $(PROG) *.txt core *.html
54        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
55        rm -f relnotes relnotes-* _*
56
Note: See TracBrowser for help on using the repository browser.