source: rtems/doc/supplements/powerpc/Makefile.am @ 1615cf12

4.104.114.84.95
Last change on this file since 1615cf12 was 1615cf12, checked in by Joel Sherrill <joel.sherrill@…>, on 01/18/02 at 15:10:53

2002-01-18 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Require automake-1.5.
  • Property mode set to 100644
File size: 4.1 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 = powerpc
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    timePSIM.texi timeDMV177.texi
20COMMON_FILES = $(top_srcdir)/common/setup.texi \
21    $(top_srcdir)/common/cpright.texi $(top_srcdir)/common/timemac.texi
22
23FILES = preface.texi
24
25info_TEXINFOS = powerpc.texi
26powerpc_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
27
28#
29#  Chapters which get automatic processing
30#
31
32$(srcdir)/cpumodel.texi: cpumodel.t
33        $(BMENU2) -p "Preface" \
34            -u "Top" \
35            -n "Calling Conventions" < $< > $@
36
37$(srcdir)/callconv.texi: callconv.t
38        $(BMENU2) -p "CPU Model Dependent Features Low Power Model" \
39            -u "Top" \
40            -n "Memory Model" < $< > $@
41
42$(srcdir)/memmodel.texi: memmodel.t
43        $(BMENU2) -p "Calling Conventions User-Provided Routines" \
44            -u "Top" \
45            -n "Interrupt Processing" < $< > $@
46
47# Interrupt Chapter:
48#  1.  Replace Times and Sizes
49#  2.  Build Node Structure
50$(srcdir)/intr.texi: intr_NOTIMES.t PSIM_TIMES
51        ${REPLACE2} -p $(srcdir)/PSIM_TIMES $(srcdir)/intr_NOTIMES.t  | \
52        $(BMENU2) -p "Memory Model Flat Memory Model" \
53            -u "Top" \
54            -n "Default Fatal Error Processing" > $@
55
56$(srcdir)/fatalerr.texi: fatalerr.t
57        $(BMENU2) -p "Interrupt Processing Interrupt Stack" \
58            -u "Top" \
59            -n "Board Support Packages" < $< > $@
60
61$(srcdir)/bsp.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
66$(srcdir)/cputable.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
76$(srcdir)/wksheets.texi: $(top_srcdir)/common/wksheets.t PSIM_TIMES
77        ${REPLACE2} -p $(srcdir)/PSIM_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
86$(srcdir)/timing.texi: $(top_srcdir)/common/timing.t
87        $(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
88            -u "Top" \
89            -n "PSIM Timing Data" < $< > $@
90
91# Timing Data for PSIM BSP Chapter:
92#  1.  Copy the Shared File
93#  2.  Replace Times and Sizes
94#  3.  Build Node Structure
95
96$(srcdir)/timePSIM.texi: $(top_srcdir)/common/timetbl.t timePSIM.t
97        cat $(srcdir)/timePSIM.t $(top_srcdir)/common/timetbl.t   >timePSIM_.t
98        @echo                                               >>timePSIM_.t
99        @echo "@tex"                                        >>timePSIM_.t
100        @echo "\\global\\advance \\smallskipamount by 4pt"  >>timePSIM_.t
101        @echo "@end tex"                                    >>timePSIM_.t
102        ${REPLACE2} -p $(srcdir)/PSIM_TIMES timePSIM_.t | \
103        $(BMENU2) -p "Timing Specification Terminology" \
104            -u "Top" \
105            -n "DMV177 Timing Data" > $@
106CLEANFILES += timePSIM_.t timeDMV177_.t
107
108# Timing Data for DMV177 BSP Chapter:
109#  1.  Copy the Shared File
110#  2.  Replace Times and Sizes
111#  3.  Build Node Structure
112
113$(srcdir)/timeDMV177.texi: $(top_srcdir)/common/timetbl.t timeDMV177.t
114        cat $(srcdir)/timeDMV177.t $(top_srcdir)/common/timetbl.t   >timeDMV177_.t
115        @echo                                               >>timeDMV177_.t
116        @echo "@tex"                                        >>timeDMV177_.t
117        @echo "\\global\\advance \\smallskipamount by 4pt"  >>timeDMV177_.t
118        @echo "@end tex"                                    >>timeDMV177_.t
119        ${REPLACE2} -p $(srcdir)/DMV177_TIMES timeDMV177_.t | \
120        $(BMENU2) -p "PSIM Timing Data Rate Monotonic Manager" \
121            -u "Top" \
122            -n "Command and Variable Index" > $@
123
124EXTRA_DIST = DMV177_TIMES PSIM_TIMES bsp.t callconv.t cpumodel.t cputable.t \
125    fatalerr.t intr_NOTIMES.t memmodel.t timeDMV177.t timePSIM.t
Note: See TracBrowser for help on using the repository browser.