source: rtems/doc/Makefile @ 7d5566e

4.104.114.84.95
Last change on this file since 7d5566e was 60593076, checked in by Joel Sherrill <joel.sherrill@…>, on 07/31/97 at 18:59:59

Corrected problem where directories where not being properly created.

Change path to indicate expected snapshot date.

  • Property mode set to 100644
File size: 516 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 $(DOC_INSTALL_BASE)
15        -mkdir $(WWW_INSTALL)
16        -mkdir $(INFO_INSTALL)
17        -mkdir $(PS_INSTALL)
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.