source: rtems/doc/Make.config @ ce8cd34e

4.104.114.84.95
Last change on this file since ce8cd34e was ce8cd34e, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 15:52:26

New date.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1#
2#  Build information which may change
3#
4#  $Id$
5#
6
7RTEMS_VERSION=19991117
8#DOC_INSTALL_BASE=/usr1/rtems/tmp/rtemsdoc-$(RTEMS_VERSION)
9DOC_INSTALL_BASE=/home/httpd/html/rtems/rtemsdoc-$(RTEMS_VERSION)
10# DOC_INSTALL_BASE=/home/httpd/html/rtems/doc/rtems
11
12SRCDIR=/usr1/rtems/rtemsdoc-work
13
14BMENU=$(SRCDIR)/tools/bmenu/bmenu
15PDL2TEXI=$(SRCDIR)/tools/pdl2texi/pdl2texi
16
17SRC2HTML=$(SRCDIR)/tools/src2html/src2html
18#TEXI2DVI=$(SRCDIR)/tools/texi2www/texi2dvi
19TEXI2DVI=texi2dvi
20TEXI2PDF=texi2pdf
21TEXI2WWW=$(SRCDIR)/tools/texi2www/texi2www
22MAKEINFO=makeinfo
23INFO=info
24XDVI=xdvi -s 4
25GHOSTVIEW=ghostview -magstep -1
26
27# Account for tree organization which restricts visibility
28#ifeq ($(DISTRIBUTION_LEVEL),public)
29RLEVEL=
30WWW_INSTALL=$(DOC_INSTALL_BASE)/html
31INFO_INSTALL=$(DOC_INSTALL_BASE)/info
32INDEX_FILE=../$(RLEVEL)index.html
33#else
34#RLEVEL=../
35#WWW_INSTALL=$(DOC_INSTALL_BASE)/html/$(DISTRIBUTION_LEVEL)
36#INFO_INSTALL=$(DOC_INSTALL_BASE)/info/$(DISTRIBUTION_LEVEL)
37#INDEX_FILE=../$(RLEVEL)rtems_full.html
38#endif
39
40#TEXI2WWW_ARGS=-dirfile $(WWW_INSTALL)/index.html \
41#          -header $(WWW_INSTALL)/rtems_header.html \
42#          -footer $(WWW_INSTALL)/rtems_footer.html
43TEXI2WWW_ARGS=-dirfile $(INDEX_FILE) \
44          -header $(WWW_INSTALL)/$(RLEVEL)rtems_header.html \
45          -footer $(WWW_INSTALL)/$(RLEVEL)rtems_footer.html \
46          -icons  $(RLEVEL)..
47
48
49define make-dirs
50        @ if [ ! -d $(WWW_INSTALL) ] ; then \
51            mkdir -p $(WWW_INSTALL); \
52          fi
53        @ if [ ! -d $(INFO_INSTALL) ] ; then \
54            mkdir -p $(INFO_INSTALL); \
55          fi
56        @ - cp $(SRCDIR)/oaronly.jpg $(WWW_INSTALL)
57        @ - sed -e 's/RTEMS_VERSION/$(RTEMS_VERSION)/' \
58            <$(SRCDIR)/rtems_footer.html >$(DOC_INSTALL_BASE)/html/rtems_footer.html
59        @ - cp $(SRCDIR)/HELP.html $(DOC_INSTALL_BASE)/html
60        @ - cp $(SRCDIR)/common/*.gif $(DOC_INSTALL_BASE)/html
61        @ - cp $(SRCDIR)/tools/texi2www/*.gif $(DOC_INSTALL_BASE)/html
62        @ - cp $(SRCDIR)/common/*.jpg $(DOC_INSTALL_BASE)/html
63endef
64
Note: See TracBrowser for help on using the repository browser.