source: rtems/doc/porting/Makefile.am @ 5f76c90

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