Files
rtems/doc/Makefile

31 lines
512 B
Makefile
Raw Normal View History

1997-05-27 12:40:11 +00:00
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
1997-05-28 20:34:00 +00:00
dirs:
-mkdir $(WWW_INSTALL)
-mkdir $(WWW_INSTALL)/info
-mkdir $(WWW_INSTALL)/html
-mkdir $(WWW_INSTALL)/ps
info: dirs
1997-05-27 12:40:11 +00:00
./do_docs $(BASEDIR) info
1997-05-28 20:34:00 +00:00
html: dirs
1997-05-27 12:40:11 +00:00
cp common/*.gif common/*.jpg $(WWW_INSTALL)
cp rtems.html HELP.html $(WWW_INSTALL)
./do_docs $(BASEDIR) html
1997-05-28 20:34:00 +00:00
ps: dirs
1997-05-27 12:40:11 +00:00
./do_docs $(BASEDIR) ps
clean:
./do_docs $(BASEDIR) clean