forked from Imagelibrary/rtems
Added build of tools to build procedure.
Automatically insert version information into headers and footers..
This commit is contained in:
26
doc/Makefile
26
doc/Makefile
@@ -6,28 +6,44 @@ include Make.config
|
||||
|
||||
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 d | xargs -e chmod 555
|
||||
|
||||
env: tools dirs headers
|
||||
|
||||
dirs:
|
||||
-mkdir $(DOC_INSTALL_BASE)
|
||||
-mkdir $(WWW_INSTALL)
|
||||
-mkdir $(INFO_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
|
||||
|
||||
html: dirs
|
||||
html: env
|
||||
cp common/*.gif common/*.jpg $(WWW_INSTALL)
|
||||
cp rtems.html HELP.html $(WWW_INSTALL)
|
||||
./do_docs $(BASEDIR) html
|
||||
|
||||
ps: dirs
|
||||
ps: env
|
||||
./do_docs $(BASEDIR) ps
|
||||
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user