source: rtems/doc/porting/Makefile.am @ f5279d9

4.104.114.84.95
Last change on this file since f5279d9 was 9814e9e3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/11/03 at 16:20:40

2003-12-11 Ralf Corsepius <corsepiu@…>

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