source: rtems/doc/porting/Makefile.am @ 27272db3

4.115
Last change on this file since 27272db3 was 9847d61d, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 06:58:25

Remove CVS-Ids.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2002.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5
6PROJECT = porting
7
8include $(top_srcdir)/project.am
9include $(top_srcdir)/main.am
10
11FILES = preface.texi developtools.texi sourcecode.texi cpumodels.texi \
12    cpuinit.texi interrupts.texi taskcontext.texi idlethread.texi \
13    prioritybitmap.texi codetuning.texi miscellaneous.texi
14
15GENERATED_FILES = developtools.texi sourcecode.texi cpumodels.texi \
16    cpuinit.texi interrupts.texi taskcontext.texi idlethread.texi \
17    prioritybitmap.texi codetuning.texi miscellaneous.texi
18
19COMMON_FILES += $(top_srcdir)/common/cpright.texi
20
21info_TEXINFOS = porting.texi
22porting_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
23
24developtools.texi: developtools.t
25        $(BMENU2) -p "Preface" \
26            -u "Top" \
27            -n "Source Code Organization" < $< > $@
28
29sourcecode.texi: sourcecode.t
30        $(BMENU2) -p "Development Tools" \
31            -u "Top" \
32            -n "CPU Model Variations" < $< > $@
33
34cpumodels.texi: cpumodels.t
35        $(BMENU2) -p "Source Code Organization Introduction" \
36            -u "Top" \
37            -n "CPU Initialization" < $< > $@
38
39cpuinit.texi: cpuinit.t
40        $(BMENU2) -p "CPU Model Variations Coding Issues" \
41            -u "Top" \
42            -n "Interrupts" < $< > $@
43
44interrupts.texi: interrupts.t
45        $(BMENU2) -p "CPU Initialization Initializing the CPU" \
46            -u "Top" \
47            -n "Task Context Management" < $< > $@
48
49taskcontext.texi: taskcontext.t
50        $(BMENU2) -p "Interrupts Pointer to _Thread_Dispatch Routine" \
51            -u "Top" \
52            -n "IDLE Thread" < $< > $@
53
54idlethread.texi: idlethread.t
55        $(BMENU2) -p "Task Context Management Restoring a Floating Point Context" \
56            -u "Top" \
57            -n "Priority Bitmap Manipulation" < $< > $@
58
59prioritybitmap.texi: prioritybitmap.t
60        $(BMENU2) -p "IDLE Thread Idle Thread Body" \
61            -u "Top" \
62            -n "Code Tuning Parameters" < $< > $@
63
64codetuning.texi: codetuning.t
65        $(BMENU2) -p "Priority Bitmap Manipulation Bit Scan Support" \
66            -u "Top" \
67            -n "Miscellaneous" < $< > $@
68
69miscellaneous.texi: miscellaneous.t
70        $(BMENU2) -p "Code Tuning Parameters Partition Element Alignment" \
71            -u "Top" \
72            -n "Command and Variable Index" < $< > $@
73
74EXTRA_DIST = codetuning.t cpuinit.t cpumodels.t developtools.t idlethread.t \
75    interrupts.t miscellaneous.t prioritybitmap.t sourcecode.t \
76    taskcontext.t
77
78CLEANFILES += porting.info porting.info-?
Note: See TracBrowser for help on using the repository browser.