source: rtems/doc/user/Makefile.am @ 78287f41

4.104.114.84.95
Last change on this file since 78287f41 was 81653981, checked in by Joel Sherrill <joel.sherrill@…>, on 01/18/02 at 15:10:35

2002-01-18 Ralf Corsepius <corsepiu@…>

  • Makefile.am: include main.am, require automake-1.5.
  • Property mode set to 100644
File size: 4.9 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2002.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9AUTOMAKE_OPTIONS = foreign 1.5
10
11PROJECT = c_user
12EDITION = 1
13
14include $(top_srcdir)/project.am
15include $(top_srcdir)/main.am
16
17FILES = bsp.texi dirstat.texi example.texi glossary.texi preface.texi
18
19GENERATED_FILES = overview.texi concepts.texi datatypes.texi init.texi \
20    task.texi intr.texi clock.texi timer.texi sem.texi msg.texi event.texi \
21    signal.texi part.texi region.texi dpmem.texi io.texi fatal.texi \
22    schedule.texi rtmon.texi bsp.texi userext.texi conf.texi mp.texi
23
24COMMON_FILES = $(top_srcdir)/common/setup.texi \
25    $(top_srcdir)/common/cpright.texi
26
27info_TEXINFOS = c_user.texi
28c_user_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
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
42$(srcdir)/overview.texi: overview.t
43        $(BMENU2) -p "Preface" \
44            -u "Top" \
45            -n "Key Concepts" < $< > $@
46
47$(srcdir)/concepts.texi: concepts.t
48        $(BMENU2) -p "Overview Manual Organization" \
49            -u "Top" \
50            -n "RTEMS Data Types" < $< > $@
51
52$(srcdir)/datatypes.texi: datatypes.t
53        $(BMENU2) -p "Key Concepts Memory Management" \
54            -u "Top" \
55            -n "Initialization Manager" < $< > $@
56
57$(srcdir)/init.texi: init.t
58        $(BMENU2) -p "RTEMS Data Types List of Data Types" \
59            -u "Top" \
60            -n "Task Manager" < $< > $@
61
62$(srcdir)/task.texi: task.t
63        $(BMENU2) -p "Initialization Manager SHUTDOWN_EXECUTIVE - Shutdown RTEMS" \
64            -u "Top" \
65            -n "Interrupt Manager" < $< > $@
66
67$(srcdir)/intr.texi: intr.t
68        $(BMENU2) -p "Task Manager TASK_VARIABLE_DELETE - Remove per task variable" \
69            -u "Top" \
70            -n "Clock Manager" < $< > $@
71
72$(srcdir)/clock.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
78$(srcdir)/timer.texi: timer.t
79        $(BMENU2) -p "Clock Manager CLOCK_TICK - Announce a clock tick" \
80            -u "Top" \
81            -n "Semaphore Manager" < $< > $@
82
83$(srcdir)/sem.texi: sem.t
84        $(BMENU2) -p "Timer Manager TIMER_RESET - Reset an interval timer" \
85            -u "Top" \
86            -n "Message Manager" < $< > $@
87
88$(srcdir)/msg.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
93$(srcdir)/event.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
99$(srcdir)/signal.texi: signal.t
100        $(BMENU2) -p "Event Manager EVENT_RECEIVE - Receive event condition" \
101            -u "Top" \
102            -n "Partition Manager" < $< > $@
103
104$(srcdir)/part.texi: part.t
105        $(BMENU2) -p "Signal Manager SIGNAL_SEND - Send signal set to a task" \
106            -u "Top" \
107            -n "Region Manager" < $< > $@
108
109$(srcdir)/region.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
115$(srcdir)/dpmem.texi: dpmem.t
116        $(BMENU2) \
117          -p "Region Manager REGION_GET_SEGMENT_SIZE - Obtain size of a segment" \
118            -u "Top" \
119            -n "I/O Manager" < $< > $@
120
121$(srcdir)/io.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
126$(srcdir)/fatal.texi: fatal.t
127        $(BMENU2) -p "I/O Manager IO_CONTROL - Special device services" \
128            -u "Top" \
129            -n "Scheduling Concepts" < $< > $@
130
131$(srcdir)/schedule.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
137$(srcdir)/rtmon.texi: rtmon.t
138        $(BMENU2) -p "Scheduling Concepts Task State Transitions" \
139            -u "Top" \
140            -n "Board Support Packages" < $< > $@
141
142$(srcdir)/bsp.texi: bsp.t
143        $(BMENU2) -p "Rate Monotonic Manager RATE_MONOTONIC_GET_STATUS - Obtain status information on period" \
144            -u "Top" \
145            -n "User Extensions Manager" < $< > $@
146
147$(srcdir)/userext.texi: userext.t
148        $(BMENU2) -p "Board Support Packages Heterogeneous Systems" \
149            -u "Top" \
150            -n "Configuring a System" < $< > $@
151
152$(srcdir)/conf.texi: conf.t
153        $(BMENU2) -p "User Extensions Manager EXTENSION_DELETE - Delete a extension set" \
154            -u "Top" \
155            -n "Multiprocessing Manager" < $< > $@
156
157$(srcdir)/mp.texi: mp.t
158        $(BMENU2) -p "Configuring a System Sizing the RTEMS RAM Workspace" \
159            -u "Top" \
160            -n "Directive Status Codes" < $< > $@
161
162noinst_DATA = states.gif rtemspie.gif
163
164EXTRA_DIST = bsp.t concepts.t clock.t datatypes.t conf.t dpmem.t event.t \
165    fatal.t init.t intr.t io.t mp.t msg.t overview.t part.t region.t rtmon.t \
166    sem.t schedule.t signal.t task.t timer.t userext.t $(PNG_FILES) \
167    $(EPS_IMAGES) $(noinst_DATA)
Note: See TracBrowser for help on using the repository browser.