source: rtems/doc/relnotes/Makefile @ eff6983d

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

Making the stanza right and improving the way the isntall directories are built

  • Property mode set to 100644
File size: 946 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: html info ps
15
16dirs:
17        $(make-dirs)
18
19COMMON_FILES=../common/cpright.texi
20
21FILES=install.texi intro.texi probrep.texi relnotes.texi status.texi
22
23info: dirs relnotes
24        cp $(PROJECT) $(wildcard $(PROJECT)-*) $(INFO_INSTALL)
25
26relnotes: $(FILES)
27        $(MAKEINFO) $(PROJECT).texi
28
29dvi: $(PROJECT).dvi
30ps: dirs $(PROJECT).ps
31       
32$(PROJECT).ps: $(PROJECT).dvi
33        dvips -o $(PROJECT).ps $(PROJECT).dvi
34        cp $(PROJECT).ps $(PS_INSTALL)
35
36$(PROJECT).dvi: $(FILES)
37        $(TEXI2DVI) $(PROJECT).texi
38
39html: dirs
40        -mkdir -p $(WWW_INSTALL)/relnotes
41        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
42            $(PROJECT).texi
43
44clean:
45        rm -f *.o $(PROG) *.txt core *.html
46        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
47        rm -f relnotes relnotes-* _*
48
Note: See TracBrowser for help on using the repository browser.