source: rtems/doc/Makefile @ 85ecda8

4.104.114.84.95
Last change on this file since 85ecda8 was dfce9272, checked in by Joel Sherrill <joel.sherrill@…>, on 06/04/97 at 16:04:51

Added CVS Id string

  • Property mode set to 100644
File size: 524 bytes
Line 
1#
2#  $Id$
3#
4
5include Make.config
6
7BASEDIR=$(shell pwd)
8
9all: info html ps
10#       find $(WWW_INSTALL) -type f | xargs -e chmod 444
11#       find $(WWW_INSTALL) -type d | xargs -e chmod 555
12
13dirs:
14        -mkdir $(WWW_INSTALL)
15        -mkdir $(WWW_INSTALL)/info
16        -mkdir $(WWW_INSTALL)/html
17        -mkdir $(WWW_INSTALL)/ps
18
19info: dirs
20        ./do_docs $(BASEDIR) info
21
22html: dirs
23        cp common/*.gif common/*.jpg $(WWW_INSTALL)
24        cp rtems.html HELP.html $(WWW_INSTALL)
25        ./do_docs $(BASEDIR) html
26
27ps: dirs
28        ./do_docs $(BASEDIR) ps
29
30clean:
31        ./do_docs $(BASEDIR) clean
32
33
Note: See TracBrowser for help on using the repository browser.