source: rtems/doc/supplements/i386/Makefile.am @ 3bfda69

4.104.114.84.95
Last change on this file since 3bfda69 was 3bfda69, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/26/03 at 15:32:26

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

  • Makefile.am: Add *.info to CLEANFILES to accomodate automake-1.7f/1.8 breaking building infos.
  • Property mode set to 100644
File size: 3.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
9
10PROJECT = i386
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    timeFORCE386.texi
19
20COMMON_FILES += $(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
21
22FILES = preface.texi
23
24info_TEXINFOS = i386.texi
25i386_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 Floating Point Unit" \
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
49
50intr.texi: intr_NOTIMES.t FORCE386_TIMES
51        ${REPLACE2} -p $(srcdir)/FORCE386_TIMES $(srcdir)/intr_NOTIMES.t | \
52        $(BMENU2) -p "Memory Model Flat Memory Model" \
53            -u "Top" \
54            -n "Default Fatal Error Processing" > $@
55
56fatalerr.texi: fatalerr.t
57        $(BMENU2) -p "Interrupt Processing Interrupt Stack" \
58            -u "Top" \
59            -n "Board Support Packages" < $< > $@
60
61bsp.texi: bsp.t
62        $(BMENU2) -p "Default Fatal Error Processing Default Fatal Error Handler Operations" \
63            -u "Top" \
64            -n "Processor Dependent Information Table" < $< > $@
65
66cputable.texi: cputable.t
67        $(BMENU2) -p "Board Support Packages Processor Initialization" \
68            -u "Top" \
69            -n "Memory Requirements" < $< > $@
70
71# Worksheets Chapter:
72#  1.  Obtain the Shared File
73#  2.  Replace Times and Sizes
74#  3.  Build Node Structure
75
76wksheets.texi: $(top_srcdir)/common/wksheets.t FORCE386_TIMES
77        ${REPLACE2} -p $(srcdir)/FORCE386_TIMES \
78          $(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
86timing.texi: $(top_srcdir)/common/timing.t
87        $(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
88            -u "Top" \
89            -n "CPU386 Timing Data" < $< > $@
90
91# Timing Data for BSP Chapter:
92#  1.  Copy the Shared File
93#  2.  Replace Times and Sizes
94#  3.  Build Node Structure
95
96timeFORCE386.texi: $(top_srcdir)/common/timetbl.t timeFORCE386.t
97        cat $(srcdir)/timeFORCE386.t $(top_srcdir)/common/timetbl.t   >timeFORCE386_.t
98        @echo                                               >>timeFORCE386_.t
99        @echo "@tex"                                        >>timeFORCE386_.t
100        @echo "\\global\\advance \\smallskipamount by 4pt"  >>timeFORCE386_.t
101        @echo "@end tex"                                    >>timeFORCE386_.t
102        ${REPLACE2} -p $(srcdir)/FORCE386_TIMES timeFORCE386_.t | \
103        $(BMENU2) -p "Timing Specification Terminology" \
104            -u "Top" \
105            -n "Command and Variable Index" > $@
106CLEANFILES += timeFORCE386_.t
107
108EXTRA_DIST = FORCE386_TIMES bsp.t callconv.t cpumodel.t cputable.t \
109    fatalerr.t intr_NOTIMES.t memmodel.t timeFORCE386.t
110
111CLEANFILES += i386.info i386.info-?
Note: See TracBrowser for help on using the repository browser.