summaryrefslogtreecommitdiffstats
path: root/doc/Makefile
blob: 56b79cd796ae607f52f849d48f32b3a582b3a680 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
#  $Id$
#

include Make.config

BASEDIR=$(shell pwd)

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)

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: env
	cp common/*.gif common/*.jpg $(WWW_INSTALL)
	./do_docs $(BASEDIR) html

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