source: rtems/doc/supplements/i960/Makefile.am @ eec8e59e

4.104.114.84.95
Last change on this file since eec8e59e 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 = i960
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    timeCVME961.texi
19COMMON_FILES += $(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
20
21FILES = preface.texi
22
23info_TEXINFOS = i960.texi
24i960_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
25
26#
27#  Chapters which get automatic processing
28#
29
30cpumodel.texi: cpumodel.t
31        $(BMENU2) -p "Preface" \
32            -u "Top" \
33            -n "Calling Conventions" < $< > $@
34
35callconv.texi: callconv.t
36        $(BMENU2) -p "CPU Model Dependent Features Floating Point Unit" \
37            -u "Top" \
38            -n "Memory Model" < $< > $@
39
40memmodel.texi: memmodel.t
41        $(BMENU2) -p "Calling Conventions Leaf Procedures" \
42            -u "Top" \
43            -n "Interrupt Processing" < $< > $@
44
45# Interrupt Chapter:
46#  1.  Replace Times and Sizes
47#  2.  Build Node Structure
48intr.texi: intr_NOTIMES.t CVME961_TIMES
49        ${REPLACE2} -p $(srcdir)/CVME961_TIMES $(srcdir)/intr_NOTIMES.t  | \
50        $(BMENU2) -p "Memory Model Flat Memory Model" \
51            -u "Top" \
52            -n "Default Fatal Error Processing" > $@
53
54fatalerr.texi: fatalerr.t
55        $(BMENU2) -p "Interrupt Processing Interrupt Stack" \
56            -u "Top" \
57            -n "Board Support Packages" < $< > $@
58
59bsp.texi: bsp.t
60        $(BMENU2) -p "Default Fatal Error Processing Default Fatal Error Handler Operations" \
61            -u "Top" \
62            -n "Processor Dependent Information Table" < $< > $@
63
64cputable.texi: cputable.t
65        $(BMENU2) -p "Board Support Packages Processor Initialization" \
66            -u "Top" \
67            -n "Memory Requirements" < $< > $@
68
69# Worksheets Chapter:
70#  1.  Obtain the Shared File
71#  2.  Replace Times and Sizes
72#  3.  Build Node Structure
73
74wksheets.texi: $(top_srcdir)/common/wksheets.t  CVME961_TIMES
75        ${REPLACE2} -p $(srcdir)/CVME961_TIMES \
76          $(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
84
85timing.texi: $(top_srcdir)/common/timing.t
86        $(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
87            -u "Top" \
88            -n "CVME961 Timing Data" < $< > $@
89
90# Timing Data for BSP Chapter:
91#  1.  Copy the Shared File
92#  2.  Replace Times and Sizes
93#  3.  Build Node Structure
94
95timeCVME961.texi: $(top_srcdir)/common/timetbl.t timeCVME961.t
96        cat $(srcdir)/timeCVME961.t $(top_srcdir)/common/timetbl.t   >timeCVME961_.t
97        @echo                                               >>timeCVME961_.t
98        @echo "@tex"                                        >>timeCVME961_.t
99        @echo "\\global\\advance \\smallskipamount by 4pt"  >>timeCVME961_.t
100        @echo "@end tex"                                    >>timeCVME961_.t
101        ${REPLACE2} -p $(srcdir)/CVME961_TIMES timeCVME961_.t | \
102        $(BMENU2) -p "Timing Specification Terminology" \
103            -u "Top" \
104            -n "Command and Variable Index" > $@
105CLEANFILES += timeCVME961_.t
106
107EXTRA_DIST = CVME961_TIMES bsp.t callconv.t cpumodel.t cputable.t fatalerr.t \
108    intr_NOTIMES.t memmodel.t timeCVME961.t
109
110CLEANFILES += i960.info i960.info-?
Note: See TracBrowser for help on using the repository browser.