Files
rtems/doc/Makefile
Joel Sherrill 60593076c8 Corrected problem where directories where not being properly created.
Change path to indicate expected snapshot date.
1997-07-31 18:59:59 +00:00

34 lines
516 B
Makefile

#
# $Id$
#
include Make.config
BASEDIR=$(shell pwd)
all: info html ps
# find $(WWW_INSTALL) -type f | xargs -e chmod 444
# find $(WWW_INSTALL) -type d | xargs -e chmod 555
dirs:
-mkdir $(DOC_INSTALL_BASE)
-mkdir $(WWW_INSTALL)
-mkdir $(INFO_INSTALL)
-mkdir $(PS_INSTALL)
info: dirs
./do_docs $(BASEDIR) info
html: dirs
cp common/*.gif common/*.jpg $(WWW_INSTALL)
cp rtems.html HELP.html $(WWW_INSTALL)
./do_docs $(BASEDIR) html
ps: dirs
./do_docs $(BASEDIR) ps
clean:
./do_docs $(BASEDIR) clean