source: rtems/doc/user/Makefile @ 28807e7

4.104.114.84.95
Last change on this file since 28807e7 was 28807e7, checked in by Joel Sherrill <joel.sherrill@…>, on 07/03/99 at 17:13:27

Removed concept of distribution level.

  • Property mode set to 100644
File size: 4.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=c_user
10
11include ../Make.config
12
13all: html info ps
14
15dirs:
16        $(make-dirs)
17
18COMMON_FILES=../common/cpright.texi
19FILES= bsp.texi c_user.texi clock.texi concepts.texi conf.texi \
20    dirstat.texi dpmem.texi event.texi example.texi fatal.texi \
21    glossary.texi init.texi intr.texi io.texi mp.texi msg.texi overview.texi \
22    part.texi preface.texi region.texi rtmon.texi schedule.texi sem.texi \
23    signal.texi task.texi timer.texi userext.texi $(COMMON_FILES)
24
25GENERATED_FILES=overview.texi concepts.texi init.texi task.texi \
26    intr.texi clock.texi timer.texi sem.texi msg.texi \
27    event.texi signal.texi part.texi region.texi \
28    dpmem.texi io.texi fatal.texi schedule.texi rtmon.texi \
29    bsp.texi userext.texi conf.texi mp.texi
30
31INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
32
33info: dirs c_user
34        cp $(PROJECT) $(PROJECT)-* $(INFO_INSTALL)
35
36c_user: $(FILES)
37        $(MAKEINFO) $(PROJECT).texi
38
39dvi: $(PROJECT).dvi
40ps: dirs $(PROJECT).ps
41       
42$(PROJECT).ps: $(PROJECT).dvi
43        dvips -o $(PROJECT).ps $(PROJECT).dvi
44        cp $(PROJECT).ps $(PS_INSTALL)
45
46$(PROJECT).dvi: $(FILES)
47        $(TEXI2DVI) $(PROJECT).texi
48
49html: dirs $(FILES)
50        -mkdir -p $(WWW_INSTALL)/c_user
51        cp rtemsarc.gif rtemspie.gif states.gif $(WWW_INSTALL)/c_user
52        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
53            $(PROJECT).texi
54
55clean:
56        rm -f *.o $(PROG) *.txt core *.html
57        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
58        rm -f c_user c_user-* _* $(GENERATED_FILES)
59
60#preface.texi: preface.t
61#       $(BMENU) -p "Top" \
62#           -u "Top" \
63#           -n "Overview" ${*}.t
64
65overview.texi: overview.t
66        $(BMENU) -p "Preface" \
67            -u "Top" \
68            -n "Key Concepts" ${*}.t
69
70concepts.texi: concepts.t
71        $(BMENU) -p "Overview Manual Organization" \
72            -u "Top" \
73            -n "Initialization Manager" ${*}.t
74
75init.texi: init.t
76        $(BMENU) -p "Key Concepts Memory Management" \
77            -u "Top" \
78            -n "Task Manager" ${*}.t
79
80task.texi: task.t
81        $(BMENU) -p "Initialization Manager SHUTDOWN_EXECUTIVE - Shutdown RTEMS" \
82            -u "Top" \
83            -n "Interrupt Manager" ${*}.t
84
85intr.texi: intr.t
86        $(BMENU) -p "Task Manager TASK_WAKE_WHEN - Wake up when specified" \
87            -u "Top" \
88            -n "Clock Manager" ${*}.t
89
90clock.texi: clock.t
91        $(BMENU) \
92         -p "Interrupt Manager INTERRUPT_IS_IN_PROGRESS - Is an ISR in Progress" \
93            -u "Top" \
94            -n "Timer Manager" ${*}.t
95
96timer.texi: timer.t
97        $(BMENU) -p "Clock Manager CLOCK_TICK - Announce a clock tick" \
98            -u "Top" \
99            -n "Semaphore Manager" ${*}.t
100
101sem.texi: sem.t
102        $(BMENU) -p "Timer Manager TIMER_RESET - Reset an interval timer" \
103            -u "Top" \
104            -n "Message Manager" ${*}.t
105
106msg.texi: msg.t
107        $(BMENU) -p "Semaphore Manager SEMAPHORE_RELEASE - Release a semaphore" \
108            -u "Top" \
109            -n "Event Manager" ${*}.t
110
111event.texi: event.t
112        $(BMENU) \
113        -p "Message Manager MESSAGE_QUEUE_FLUSH - Flush all messages on a queue" \
114            -u "Top" \
115            -n "Signal Manager" ${*}.t
116
117signal.texi: signal.t
118        $(BMENU) -p "Event Manager EVENT_RECEIVE - Receive event condition" \
119            -u "Top" \
120            -n "Partition Manager" ${*}.t
121
122part.texi: part.t
123        $(BMENU) -p "Signal Manager SIGNAL_SEND - Send signal set to a task" \
124            -u "Top" \
125            -n "Region Manager" ${*}.t
126
127region.texi: region.t
128        $(BMENU) \
129-p "Partition Manager PARTITION_RETURN_BUFFER - Return buffer to a partition" \
130            -u "Top" \
131            -n "Dual-Ported Memory Manager" ${*}.t
132
133dpmem.texi: dpmem.t
134        $(BMENU) \
135          -p "Region Manager REGION_GET_SEGMENT_SIZE - Obtain size of a segment" \
136            -u "Top" \
137            -n "I/O Manager" ${*}.t
138
139io.texi: io.t
140        $(BMENU) -p "Dual-Ported Memory Manager PORT_INTERNAL_TO_EXTERNAL - Convert internal to external address" \
141            -u "Top" \
142            -n "Fatal Error Manager" ${*}.t
143
144fatal.texi: fatal.t
145        $(BMENU) -p "I/O Manager IO_CONTROL - Special device services" \
146            -u "Top" \
147            -n "Scheduling Concepts" ${*}.t
148
149schedule.texi: schedule.t
150        $(BMENU) \
151-p "Fatal Error Manager FATAL_ERROR_OCCURRED - Invoke the fatal error handler" \
152            -u "Top" \
153            -n "Rate Monotonic Manager" ${*}.t
154
155rtmon.texi: rtmon.t
156        $(BMENU) -p "Scheduling Concepts Task State Transitions" \
157            -u "Top" \
158            -n "Board Support Packages" ${*}.t
159
160bsp.texi: bsp.t
161        $(BMENU) -p "Rate Monotonic Manager RATE_MONOTONIC_GET_STATUS - Obtain status information on period" \
162            -u "Top" \
163            -n "User Extensions Manager" ${*}.t
164
165userext.texi: userext.t
166        $(BMENU) -p "Board Support Packages Heterogeneous Systems" \
167            -u "Top" \
168            -n "Configuring a System" ${*}.t
169
170conf.texi: conf.t
171        $(BMENU) -p "User Extensions Manager EXTENSION_DELETE - Delete a extension set" \
172            -u "Top" \
173            -n "Multiprocessing Manager" ${*}.t
174
175mp.texi: mp.t
176        $(BMENU) -p "Configuring a System Sizing the RTEMS RAM Workspace" \
177            -u "Top" \
178            -n "Directive Status Codes" ${*}.t
179
Note: See TracBrowser for help on using the repository browser.