source: rtems/doc/Makefile @ 60593076

4.104.114.84.95
Last change on this file since 60593076 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
RevLine 
[dfce9272]1#
2#  $Id$
3#
[ae68ff0]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
[04e5f1c]13dirs:
[60593076]14        -mkdir $(DOC_INSTALL_BASE)
[04e5f1c]15        -mkdir $(WWW_INSTALL)
[60593076]16        -mkdir $(INFO_INSTALL)
17        -mkdir $(PS_INSTALL)
[04e5f1c]18
19info: dirs
[ae68ff0]20        ./do_docs $(BASEDIR) info
21
[04e5f1c]22html: dirs
[ae68ff0]23        cp common/*.gif common/*.jpg $(WWW_INSTALL)
24        cp rtems.html HELP.html $(WWW_INSTALL)
25        ./do_docs $(BASEDIR) html
26
[04e5f1c]27ps: dirs
[ae68ff0]28        ./do_docs $(BASEDIR) ps
29
30clean:
31        ./do_docs $(BASEDIR) clean
32
33
Note: See TracBrowser for help on using the repository browser.