source: rtems/doc/user/Makefile.am @ 967bc14

4.115
Last change on this file since 967bc14 was 967bc14, checked in by Joel Sherrill <joel.sherrill@…>, on 08/13/10 at 17:31:37

2010-08-13 Joel Sherrill <joel.sherrilL@…>

PR 1674/docs

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