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

4.104.114.84.95
Last change on this file since 6449498 was 6449498, checked in by Joel Sherrill <joel.sherrill@…>, on 01/17/02 at 21:47:47

2001-01-17 Joel Sherrill <joel@…>

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