Added build of tools to build procedure.

Automatically insert version information into headers and footers..
This commit is contained in:
Joel Sherrill
1998-03-26 20:33:27 +00:00
parent c027242b55
commit bc0307e79d

View File

@@ -6,28 +6,44 @@ include Make.config
BASEDIR=$(shell pwd) BASEDIR=$(shell pwd)
all: info html ps all: env info html ps
# find $(WWW_INSTALL) -type f | xargs -e chmod 444 # find $(WWW_INSTALL) -type f | xargs -e chmod 444
# find $(WWW_INSTALL) -type d | xargs -e chmod 555 # find $(WWW_INSTALL) -type d | xargs -e chmod 555
env: tools dirs headers
dirs: dirs:
-mkdir $(DOC_INSTALL_BASE) -mkdir $(DOC_INSTALL_BASE)
-mkdir $(WWW_INSTALL) -mkdir $(WWW_INSTALL)
-mkdir $(INFO_INSTALL) -mkdir $(INFO_INSTALL)
-mkdir $(PS_INSTALL) -mkdir $(PS_INSTALL)
info: dirs headers:
sed -e 's/RTEMS_VERSION/$(RTEMS_VERSION)/' \
<index.html >$(WWW_INSTALL)/index.html
sed -e 's/RTEMS_VERSION/$(RTEMS_VERSION)/' \
<rtems_header.html >$(WWW_INSTALL)/rtems_header.html
sed -e 's/RTEMS_VERSION/$(RTEMS_VERSION)/' \
<rtems_footer.html >$(WWW_INSTALL)/rtems_footer.html
info: env
./do_docs $(BASEDIR) info ./do_docs $(BASEDIR) info
html: dirs html: env
cp common/*.gif common/*.jpg $(WWW_INSTALL) cp common/*.gif common/*.jpg $(WWW_INSTALL)
cp rtems.html HELP.html $(WWW_INSTALL)
./do_docs $(BASEDIR) html ./do_docs $(BASEDIR) html
ps: dirs ps: env
./do_docs $(BASEDIR) ps ./do_docs $(BASEDIR) ps
clean: clean:
./do_docs $(BASEDIR) clean ./do_docs $(BASEDIR) clean
cd tools/bmenu ; gmake clean
cd tools/pdl2texi ; gmake clean
.PHONY: tools
tools:
cd tools/bmenu ; gmake
cd tools/pdl2texi ; gmake