source: rtems/doc/supplements/sparc/Makefile.am @ 8985057

4.104.114.84.95
Last change on this file since 8985057 was 8985057, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/22/03 at 09:36:28

2003-09-22 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Merger from rtems-4-6-branch.
  • Property mode set to 100644
File size: 3.2 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2002.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9
10PROJECT = sparc
11EDITION = 1
12
13include $(top_srcdir)/project.am
14include $(top_srcdir)/supplements/supplement.am
15
16GENERATED_FILES = cpumodel.texi callconv.texi memmodel.texi intr.texi \
17    fatalerr.texi bsp.texi cputable.texi timing.texi wksheets.texi \
18    timeERC32.texi
19
20COMMON_FILES += $(top_srcdir)/common/cpright.texi
21
22FILES = preface.texi
23
24info_TEXINFOS = sparc.texi
25sparc_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
26
27#
28#  Chapters which get automatic processing
29#
30
31cpumodel.texi: cpumodel.t
32        $(BMENU2) -p "Preface" \
33            -u "Top" \
34            -n "Calling Conventions" < $< > $@
35
36callconv.texi: callconv.t
37        $(BMENU2) -p "CPU Model Dependent Features CPU Model Implementation Notes" \
38            -u "Top" \
39            -n "Memory Model" < $< > $@
40
41memmodel.texi: memmodel.t
42        $(BMENU2) -p "Calling Conventions User-Provided Routines" \
43            -u "Top" \
44            -n "Interrupt Processing" < $< > $@
45
46# Interrupt Chapter:
47#  1.  Replace Times and Sizes
48#  2.  Build Node Structure
49intr.texi: intr_NOTIMES.t ERC32_TIMES
50        ${REPLACE2} -p $(srcdir)/ERC32_TIMES $(srcdir)/intr_NOTIMES.t  | \
51        $(BMENU2) -p "Memory Model Flat Memory Model" \
52            -u "Top" \
53            -n "Default Fatal Error Processing" > $@
54
55fatalerr.texi: fatalerr.t
56        $(BMENU2) -p "Interrupt Processing Interrupt Stack" \
57            -u "Top" \
58            -n "Board Support Packages" < $< > $@
59
60bsp.texi: bsp.t
61        $(BMENU2) -p "Default Fatal Error Processing Default Fatal Error Handler Operations" \
62            -u "Top" \
63            -n "Processor Dependent Information Table" < $< > $@
64
65cputable.texi: cputable.t
66        $(BMENU2) -p "Board Support Packages Processor Initialization" \
67            -u "Top" \
68            -n "Memory Requirements" < $< > $@
69
70# Worksheets Chapter:
71#  1.  Obtain the Shared File
72#  2.  Replace Times and Sizes
73#  3.  Build Node Structure
74
75wksheets.texi: $(top_srcdir)/common/wksheets.t ERC32_TIMES
76        ${REPLACE2} -p $(srcdir)/ERC32_TIMES $(top_srcdir)/common/wksheets.t | \
77        $(BMENU2) -p "Processor Dependent Information Table CPU Dependent Information Table" \
78            -u "Top" \
79            -n "Timing Specification" > $@
80
81# Timing Specification Chapter:
82#  1.  Copy the Shared File
83#  3.  Build Node Structure
84timing.texi: $(top_srcdir)/common/timing.t
85        $(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
86            -u "Top" \
87            -n "ERC32 Timing Data" < $< > $@
88
89# Timing Data for ERC32 BSP Chapter:
90#  1.  Copy the Shared File
91#  2.  Replace Times and Sizes
92#  3.  Build Node Structure
93
94timeERC32.texi: $(top_srcdir)/common/timetbl.t timeERC32.t
95        cat $(srcdir)/timeERC32.t $(top_srcdir)/common/timetbl.t   >timeERC32_.t
96        @echo                                               >>timeERC32_.t
97        @echo "@tex"                                        >>timeERC32_.t
98        @echo "\\global\\advance \\smallskipamount by 4pt"  >>timeERC32_.t
99        @echo "@end tex"                                    >>timeERC32_.t
100        ${REPLACE2} -p $(srcdir)/ERC32_TIMES timeERC32_.t | \
101        $(BMENU2) -p "Timing Specification Terminology" \
102            -u "Top" \
103            -n "Command and Variable Index" > $@
104CLEANFILES += timeERC32_.t
105
106EXTRA_DIST = ERC32_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
107    intr_NOTIMES.t memmodel.t timeERC32.t
Note: See TracBrowser for help on using the repository browser.