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

4.104.114.95
Last change on this file since ef94f04f was d5671b1, checked in by Joel Sherrill <joel.sherrill@…>, on 01/29/08 at 21:37:00

2008-01-29 Joel Sherrill <joel.sherrill@…>

  • user/.cvsignore, user/Makefile.am, user/c_user.texi, user/concepts.t, user/conf.t, user/dirstat.texi, user/stackchk.t, user/task.t, user/userext.t: Add new Object Services collection. Tidy up some configuration documentation from earlier changes.
  • user/object.t: New file.
  • Property mode set to 100644
File size: 5.4 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
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
31
32EPS_IMAGES = rtemspie.eps states.eps
33$(PROJECT).dvi: $(EPS_IMAGES)
34
35PDF_IMAGES = rtemspie.pdf states.pdf
36CLEANFILES += $(PDF_IMAGES)
37
38if USE_HTML
39html_project_DATA += $(PNG_FILES)
40endif
41
42overview.texi: overview.t
43        $(BMENU2) -p "Preface" \
44            -u "Top" \
45            -n "Key Concepts" < $< > $@
46
47concepts.texi: concepts.t
48        $(BMENU2) -p "Overview Manual Organization" \
49            -u "Top" \
50            -n "RTEMS Data Types" < $< > $@
51
52datatypes.texi: datatypes.t
53        $(BMENU2) -p "Key Concepts Memory Management" \
54            -u "Top" \
55            -n "Initialization Manager" < $< > $@
56
57init.texi: init.t
58        $(BMENU2) -p "RTEMS Data Types List of Data Types" \
59            -u "Top" \
60            -n "Task Manager" < $< > $@
61
62task.texi: task.t
63        $(BMENU2) -p "Initialization Manager SHUTDOWN_EXECUTIVE - Shutdown RTEMS" \
64            -u "Top" \
65            -n "Interrupt Manager" < $< > $@
66
67intr.texi: intr.t
68        $(BMENU2) -p "Task Manager TASK_VARIABLE_DELETE - Remove per task variable" \
69            -u "Top" \
70            -n "Clock Manager" < $< > $@
71
72clock.texi: clock.t
73        $(BMENU2) \
74         -p "Interrupt Manager INTERRUPT_IS_IN_PROGRESS - Is an ISR in Progress" \
75            -u "Top" \
76            -n "Timer Manager" < $< > $@
77
78timer.texi: timer.t
79        $(BMENU2) -p "Clock Manager CLOCK_TICK - Announce a clock tick" \
80            -u "Top" \
81            -n "Semaphore Manager" < $< > $@
82
83sem.texi: sem.t
84        $(BMENU2) -p "Timer Manager TIMER_RESET - Reset an interval timer" \
85            -u "Top" \
86            -n "Message Manager" < $< > $@
87
88msg.texi: msg.t
89        $(BMENU2) -p "Semaphore Manager SEMAPHORE_FLUSH - Unblock all tasks waiting on a semaphore" \
90            -u "Top" \
91            -n "Event Manager" < $< > $@
92
93event.texi: event.t
94        $(BMENU2) \
95        -p "Message Manager MESSAGE_QUEUE_FLUSH - Flush all messages on a queue" \
96            -u "Top" \
97            -n "Signal Manager" < $< > $@
98
99signal.texi: signal.t
100        $(BMENU2) -p "Event Manager EVENT_RECEIVE - Receive event condition" \
101            -u "Top" \
102            -n "Partition Manager" < $< > $@
103
104part.texi: part.t
105        $(BMENU2) -p "Signal Manager SIGNAL_SEND - Send signal set to a task" \
106            -u "Top" \
107            -n "Region Manager" < $< > $@
108
109region.texi: region.t
110        $(BMENU2) \
111-p "Partition Manager PARTITION_RETURN_BUFFER - Return buffer to a partition" \
112            -u "Top" \
113            -n "Dual-Ported Memory Manager" < $< > $@
114
115dpmem.texi: dpmem.t
116        $(BMENU2) \
117          -p "Region Manager REGION_RESIZE_SEGMENT - Change size of a segment" \
118            -u "Top" \
119            -n "I/O Manager" < $< > $@
120
121io.texi: io.t
122        $(BMENU2) -p "Dual-Ported Memory Manager PORT_INTERNAL_TO_EXTERNAL - Convert internal to external address" \
123            -u "Top" \
124            -n "Fatal Error Manager" < $< > $@
125
126fatal.texi: fatal.t
127        $(BMENU2) -p "I/O Manager IO_CONTROL - Special device services" \
128            -u "Top" \
129            -n "Scheduling Concepts" < $< > $@
130
131schedule.texi: schedule.t
132        $(BMENU2) \
133-p "Fatal Error Manager FATAL_ERROR_OCCURRED - Invoke the fatal error handler" \
134            -u "Top" \
135            -n "Rate Monotonic Manager" < $< > $@
136
137rtmon.texi: rtmon.t
138        $(BMENU2) -p "Scheduling Concepts Task State Transitions" \
139            -u "Top" \
140            -n "Barrier Manager" < $< > $@
141
142barrier.texi: barrier.t
143        $(BMENU2) -p "Rate Monotonic Manager RATE_MONOTONIC_REPORT_STATISTICS - Print period statistics report" \
144            -u "Top" \
145            -n "Board Support Packages" < $< > $@
146
147bsp.texi: bsp.t
148        $(BMENU2) -p "Barrier Manager BARRIER_RELEASE - Release a barrier" \
149            -u "Top" \
150            -n "User Extensions Manager" < $< > $@
151
152userext.texi: userext.t
153        $(BMENU2) -p "Board Support Packages Heterogeneous Systems" \
154            -u "Top" \
155            -n "Configuring a System" < $< > $@
156
157conf.texi: conf.t
158        $(BMENU2) -p "User Extensions Manager EXTENSION_DELETE - Delete a extension set" \
159            -u "Top" \
160            -n "Multiprocessing Manager" < $< > $@
161
162mp.texi: mp.t
163        $(BMENU2) -p "Configuring a System Sizing the RTEMS RAM Workspace" \
164            -u "Top" \
165            -n "Stack Bounds Checker" < $< > $@
166
167stackchk.texi: stackchk.t
168        $(BMENU2) -p "Multiprocessing Manager MULTIPROCESSING_ANNOUNCE - Announce the arrival of a packet" \
169            -u "Top" \
170            -n "CPU Usage Statistics" < $< > $@
171
172cpuuse.texi: cpuuse.t
173        $(BMENU2) -p "Stack Bounds Checker STACK_CHECKER_REPORT_USAGE - Report Task Stack Usage" \
174            -u "Top" \
175            -n "Object Services" < $< > $@
176
177object.texi: object.t
178        $(BMENU2) -p "CPU Usage Statistics cpu_usage_reset - Reset CPU Usage Statistics" \
179            -u "Top" \
180            -n "Directive Status Codes" < $< > $@
181
182EXTRA_DIST = bsp.t clock.t concepts.t cpuuse.t datatypes.t conf.t dpmem.t \
183    event.t fatal.t init.t intr.t io.t mp.t msg.t overview.t part.t region.t \
184    rtmon.t sem.t schedule.t signal.t stackchk.t task.t timer.t userext.t \
185    $(TXT_FILES) $(PNG_FILES) $(EPS_IMAGES) $(noinst_DATA)
186
187CLEANFILES += c_user.info c_user.info-? c_user.info-??
Note: See TracBrowser for help on using the repository browser.