source: rtems/doc/user/Makefile.am @ bd861cc6

4.104.115
Last change on this file since bd861cc6 was bd861cc6, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/09 at 14:36:14

2009-11-09 Joel Sherrill <joel.sherrill@…>

  • ada_user/Makefile.am, ada_user/ada_user.texi, user/Makefile.am, user/c_user.texi, user/concepts.t, user/overview.t, user/preface.texi, user/schedule.t, user/sem.t: Add table of figures. Add text and graphic of tree illustrating valid combinations of semaphore attributes.
  • user/semaphore_attributes.eps, user/semaphore_attributes.png: New files.
  • Property mode set to 100644
File size: 5.8 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2007
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9PROJECT = c_user
10EDITION = 1
11
12include $(top_srcdir)/project.am
13include $(top_srcdir)/main.am
14
15FILES = bsp.texi dirstat.texi example.texi glossary.texi preface.texi
16
17GENERATED_FILES = overview.texi concepts.texi datatypes.texi init.texi \
18    task.texi intr.texi clock.texi timer.texi sem.texi msg.texi event.texi \
19    signal.texi part.texi region.texi dpmem.texi io.texi fatal.texi \
20    schedule.texi rtmon.texi barrier.texi bsp.texi userext.texi conf.texi \
21    mp.texi stackchk.texi cpuuse.texi object.texi chains.texi
22
23COMMON_FILES += $(top_srcdir)/common/cpright.texi
24
25info_TEXINFOS = c_user.texi
26c_user_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
27
28TXT_FILES = rtemsarc.txt rtemspie.txt states.txt
29
30PNG_FILES = rtemsarc.png rtemspie.png states.png ObjectId-32Bits.png \
31    ObjectId-16Bits.png semaphore_attributes.png
32
33EPS_IMAGES = rtemspie.eps states.eps ObjectId-32Bits.eps \
34    ObjectId-32Bits.eps semaphore_attributes.eps
35$(PROJECT).dvi: $(EPS_IMAGES)
36
37PDF_IMAGES = rtemspie.pdf states.pdf ObjectId-16Bits.pdf \
38    ObjectId-32Bits.pdf semaphore_attributes.pdf
39CLEANFILES += $(PDF_IMAGES)
40
41if USE_HTML
42html_project_DATA += $(PNG_FILES)
43endif
44
45overview.texi: overview.t
46        $(BMENU2) -p "Preface" \
47            -u "Top" \
48            -n "Key Concepts" < $< > $@
49
50concepts.texi: concepts.t
51        $(BMENU2) -p "Overview Manual Organization" \
52            -u "Top" \
53            -n "RTEMS Data Types" < $< > $@
54
55datatypes.texi: datatypes.t
56        $(BMENU2) -p "Key Concepts Memory Management" \
57            -u "Top" \
58            -n "Initialization Manager" < $< > $@
59
60init.texi: init.t
61        $(BMENU2) -p "RTEMS Data Types List of Data Types" \
62            -u "Top" \
63            -n "Task Manager" < $< > $@
64
65task.texi: task.t
66        $(BMENU2) -p "Initialization Manager SHUTDOWN_EXECUTIVE - Shutdown RTEMS" \
67            -u "Top" \
68            -n "Interrupt Manager" < $< > $@
69
70intr.texi: intr.t
71        $(BMENU2) -p "Task Manager TASK_VARIABLE_DELETE - Remove per task variable" \
72            -u "Top" \
73            -n "Clock Manager" < $< > $@
74
75clock.texi: clock.t
76        $(BMENU2) \
77         -p "Interrupt Manager INTERRUPT_IS_IN_PROGRESS - Is an ISR in Progress" \
78            -u "Top" \
79            -n "Timer Manager" < $< > $@
80
81timer.texi: timer.t
82        $(BMENU2) -p "Clock Manager CLOCK_TICK - Announce a clock tick" \
83            -u "Top" \
84            -n "Semaphore Manager" < $< > $@
85
86sem.texi: sem.t
87        $(BMENU2) -p "Timer Manager TIMER_RESET - Reset an interval timer" \
88            -u "Top" \
89            -n "Message Manager" < $< > $@
90
91msg.texi: msg.t
92        $(BMENU2) -p "Semaphore Manager SEMAPHORE_FLUSH - Unblock all tasks waiting on a semaphore" \
93            -u "Top" \
94            -n "Event Manager" < $< > $@
95
96event.texi: event.t
97        $(BMENU2) \
98        -p "Message Manager MESSAGE_QUEUE_FLUSH - Flush all messages on a queue" \
99            -u "Top" \
100            -n "Signal Manager" < $< > $@
101
102signal.texi: signal.t
103        $(BMENU2) -p "Event Manager EVENT_RECEIVE - Receive event condition" \
104            -u "Top" \
105            -n "Partition Manager" < $< > $@
106
107part.texi: part.t
108        $(BMENU2) -p "Signal Manager SIGNAL_SEND - Send signal set to a task" \
109            -u "Top" \
110            -n "Region Manager" < $< > $@
111
112region.texi: region.t
113        $(BMENU2) \
114-p "Partition Manager PARTITION_RETURN_BUFFER - Return buffer to a partition" \
115            -u "Top" \
116            -n "Dual-Ported Memory Manager" < $< > $@
117
118dpmem.texi: dpmem.t
119        $(BMENU2) \
120          -p "Region Manager REGION_RESIZE_SEGMENT - Change size of a segment" \
121            -u "Top" \
122            -n "I/O Manager" < $< > $@
123
124io.texi: io.t
125        $(BMENU2) -p "Dual-Ported Memory Manager PORT_INTERNAL_TO_EXTERNAL - Convert internal to external address" \
126            -u "Top" \
127            -n "Fatal Error Manager" < $< > $@
128
129fatal.texi: fatal.t
130        $(BMENU2) -p "I/O Manager IO_CONTROL - Special device services" \
131            -u "Top" \
132            -n "Scheduling Concepts" < $< > $@
133
134schedule.texi: schedule.t
135        $(BMENU2) \
136-p "Fatal Error Manager FATAL_ERROR_OCCURRED - Invoke the fatal error handler" \
137            -u "Top" \
138            -n "Rate Monotonic Manager" < $< > $@
139
140rtmon.texi: rtmon.t
141        $(BMENU2) -p "Scheduling Concepts Task State Transitions" \
142            -u "Top" \
143            -n "Barrier Manager" < $< > $@
144
145barrier.texi: barrier.t
146        $(BMENU2) -p "Rate Monotonic Manager RATE_MONOTONIC_REPORT_STATISTICS - Print period statistics report" \
147            -u "Top" \
148            -n "Board Support Packages" < $< > $@
149
150bsp.texi: bsp.t
151        $(BMENU2) -p "Barrier Manager BARRIER_RELEASE - Release a barrier" \
152            -u "Top" \
153            -n "User Extensions Manager" < $< > $@
154
155userext.texi: userext.t
156        $(BMENU2) -p "Board Support Packages Heterogeneous Systems" \
157            -u "Top" \
158            -n "Configuring a System" < $< > $@
159
160conf.texi: conf.t
161        $(BMENU2) -p "User Extensions Manager EXTENSION_DELETE - Delete a extension set" \
162            -u "Top" \
163            -n "Multiprocessing Manager" < $< > $@
164
165mp.texi: mp.t
166        $(BMENU2) -p "Configuring a System Sizing the RTEMS RAM Workspace" \
167            -u "Top" \
168            -n "Stack Bounds Checker" < $< > $@
169
170stackchk.texi: stackchk.t
171        $(BMENU2) -p "Multiprocessing Manager MULTIPROCESSING_ANNOUNCE - Announce the arrival of a packet" \
172            -u "Top" \
173            -n "CPU Usage Statistics" < $< > $@
174
175cpuuse.texi: cpuuse.t
176        $(BMENU2) -p "Stack Bounds Checker STACK_CHECKER_REPORT_USAGE - Report Task Stack Usage" \
177            -u "Top" \
178            -n "Object Services" < $< > $@
179
180object.texi: object.t
181        $(BMENU2) -p "CPU Usage Statistics cpu_usage_reset - Reset CPU Usage Statistics" \
182            -u "Top" \
183            -n "Chains" < $< > $@
184
185chains.texi: chains.t
186        $(BMENU2) -p "Object Services OBJECT_GET_CLASS_INFORMATION - Obtain Class Information" \
187            -u "Top" \
188            -n "Directive Status Codes" < $< > $@
189
190EXTRA_DIST = bsp.t clock.t chains.t concepts.t cpuuse.t datatypes.t conf.t dpmem.t \
191    event.t fatal.t init.t intr.t io.t mp.t msg.t overview.t part.t region.t \
192    rtmon.t sem.t schedule.t signal.t stackchk.t task.t timer.t userext.t \
193    $(TXT_FILES) $(PNG_FILES) $(EPS_IMAGES) $(noinst_DATA)
194
195CLEANFILES += c_user.info c_user.info-? c_user.info-??
Note: See TracBrowser for help on using the repository browser.