source: rtems/doc/relnotes/Makefile @ 28807e7

4.104.114.84.95
Last change on this file since 28807e7 was 28807e7, checked in by Joel Sherrill <joel.sherrill@…>, on 07/03/99 at 17:13:27

Removed concept of distribution level.

  • Property mode set to 100644
File size: 918 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
10
11include ../Make.config
12
13all: html info ps
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
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
39        -mkdir -p $(WWW_INSTALL)/relnotes
40        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
41            $(PROJECT).texi
42
43clean:
44        rm -f *.o $(PROG) *.txt core *.html
45        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
46        rm -f relnotes relnotes-* _*
47
Note: See TracBrowser for help on using the repository browser.