source: rtems/doc/itron3.0/Makefile @ b671c6a

4.104.114.84.95
Last change on this file since b671c6a was 3869b53, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/99 at 02:04:33

Added Status chapter.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1#
2#  COPYRIGHT (c) 1988-1998.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9PROJECT=itron
10TEXI2DVI=../tools/texi2dvi
11MAKEINFO=makeinfo
12TEXI2WWW=../tools/texi2www
13BMENU=../tools/bmenu
14TEXI2WWW_ARGS=-dirfile ../../../index.html \
15          -header ../tools/rtems_header.html \
16          -footer ../tools/rtems_footer.html \
17          -icons  .
18
19
20all: html info ps
21
22COMMON_FILES=
23
24GENERATED_FILES= \
25    status.texi \
26    task.texi tasksync.texi semaphore.texi eventflags.texi mailbox.texi \
27    msgbuffer.texi rendezvous.texi interrupt.texi memorypool.texi \
28    fixedblock.texi time.texi config.texi network.texi \
29    psxmsg.texi psxsem.texi
30
31FILES= $(PROJECT).texi \
32  $(COMMON_FILES) $(GENERATED_FILES)
33
34INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
35
36info: $(FILES) $(PROJECT)
37
38$(PROJECT): $(FILES)
39        $(MAKEINFO) $(PROJECT).texi
40
41dvi: $(PROJECT).dvi
42ps: $(PROJECT).ps
43pdf: $(PROJECT).pdf
44       
45$(PROJECT).ps: $(PROJECT).dvi
46        dvips -o $(PROJECT).ps $(PROJECT).dvi
47
48$(PROJECT).dvi: $(FILES)
49        $(TEXI2DVI) $(PROJECT).texi
50
51$(PROJECT).pdf: $(FILES)
52        $(TEXI2DVI) $(PROJECT).texi
53
54html: $(FILES)
55        -mkdir -p html
56        cp $(wildcard ../tools/*.gif) html
57        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir html $(PROJECT).texi
58
59clean:
60        rm -f *.o $(PROG) *.txt core *.html
61        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
62        rm -f $(PROJECT) $(PROJECT)-* _* $(GENERATED_FILES)
63        rm -rf html
64
65status.texi: status.t Makefile
66        $(BMENU) -p "" \
67            -u "Top" \
68            -n "" ${*}.t
69
70task.texi: task.t Makefile
71        $(BMENU) -p "" \
72            -u "Top" \
73            -n "" ${*}.t
74
75tasksync.texi: tasksync.t Makefile
76        $(BMENU) -p "" \
77            -u "Top" \
78            -n "" ${*}.t
79
80semaphore.texi: semaphore.t Makefile
81        $(BMENU) -p "" \
82            -u "Top" \
83            -n "" ${*}.t
84
85eventflags.texi: eventflags.t Makefile
86        $(BMENU) -p "" \
87            -u "Top" \
88            -n "" ${*}.t
89
90mailbox.texi: mailbox.t Makefile
91        $(BMENU) -p "" \
92            -u "Top" \
93            -n "" ${*}.t
94
95msgbuffer.texi: msgbuffer.t Makefile
96        $(BMENU) -p "" \
97            -u "Top" \
98            -n "" ${*}.t
99
100rendezvous.texi: rendezvous.t Makefile
101        $(BMENU) -p "" \
102            -u "Top" \
103            -n "" ${*}.t
104
105interrupt.texi: interrupt.t Makefile
106        $(BMENU) -p "" \
107            -u "Top" \
108            -n "" ${*}.t
109
110memorypool.texi: memorypool.t Makefile
111        $(BMENU) -p "" \
112            -u "Top" \
113            -n "" ${*}.t
114
115fixedblock.texi: fixedblock.t Makefile
116        $(BMENU) -p "" \
117            -u "Top" \
118            -n "" ${*}.t
119
120time.texi: time.t Makefile
121        $(BMENU) -p "" \
122            -u "Top" \
123            -n "" ${*}.t
124
125config.texi: config.t Makefile
126        $(BMENU) -p "" \
127            -u "Top" \
128            -n "" ${*}.t
129
130network.texi: network.t Makefile
131        $(BMENU) -p "" \
132            -u "Top" \
133            -n "" ${*}.t
134
135psxmsg.texi: psxmsg.t Makefile
136        $(BMENU) -p "" \
137            -u "Top" \
138            -n "" ${*}.t
139
140psxsem.texi: psxsem.t Makefile
141        $(BMENU) -p "" \
142            -u "Top" \
143            -n "" ${*}.t
144
Note: See TracBrowser for help on using the repository browser.