source: rtems/doc/bsp_howto/Makefile.am @ 51eacee9

4.104.114.84.95
Last change on this file since 51eacee9 was 51eacee9, checked in by Joel Sherrill <joel.sherrill@…>, on 10/28/02 at 13:44:39

2002-10-24 Eugeny S. Mints <Eugeny.Mints@…>

  • ata.t, ide-ctrl.t: New file.
  • .cvsignore: Added new .texi files.
  • Makefile.am:: Added new files to generate.
  • bsp_howto.texi: Added new chapters.
  • stamp-vti, version.texi: Regenerated.
  • Property mode set to 100644
File size: 2.8 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 = bsp_howto
11EDITION = 1
12
13include $(top_srcdir)/project.am
14include $(top_srcdir)/main.am
15
16GENERATED_FILES = intro.texi target.texi makefiles.texi linkcmds.texi \
17    support.texi adaintr.texi init.texi console.texi clock.texi timer.texi \
18    rtc.texi ata.texi ide-ctrl.texi nvmem.texi network.texi shmsupp.texi \
19    analog.texi discrete.texi
20
21COMMON_FILES = $(top_srcdir)/common/setup.texi \
22    $(top_srcdir)/common/cpright.texi
23
24FILES =
25
26info_TEXINFOS = bsp_howto.texi
27bsp_howto_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
28
29#
30#  Process Automatically Generated Files
31#
32
33$(srcdir)/intro.texi: intro.t
34        $(BMENU2) -p "Top" \
35            -u "Top" \
36            -n "Target Dependent Files" < $< > $@
37
38$(srcdir)/target.texi: target.t
39        $(BMENU2) -p "Introduction" \
40            -u "Top" \
41            -n "Makefiles" < $< > $@
42
43$(srcdir)/makefiles.texi: makefiles.t
44        $(BMENU2) -p "Target Dependent Files Board Support Package Structure" \
45            -u "Top" \
46            -n "Linker Script" < $< > $@
47
48$(srcdir)/linkcmds.texi: linkcmds.t
49        $(BMENU2) -p "Makefiles Creating a New BSP Make Customization File" \
50            -u "Top" \
51            -n "Ada95 Interrupt Support" < $< > $@
52
53$(srcdir)/adaintr.texi: adaintr.t
54        $(BMENU2) -p "Linker Script Initialized Data" \
55            -u "Top" \
56            -n "Miscellaneous Support Files" < $< > $@
57
58$(srcdir)/support.texi: support.t
59        $(BMENU2) -p "Ada95 Interrupt Support Version Requirements" \
60            -u "Top" \
61            -n "" < $< > $@
62
63$(srcdir)/init.texi: init.t
64        $(BMENU2) -p "" \
65            -u "Top" \
66            -n "" < $< > $@
67
68$(srcdir)/console.texi: console.t
69        $(BMENU2) -p "" \
70            -u "Top" \
71            -n "" < $< > $@
72
73$(srcdir)/clock.texi: clock.t
74        $(BMENU2) -p "" \
75            -u "Top" \
76            -n "" < $< > $@
77
78$(srcdir)/timer.texi: timer.t
79        $(BMENU2) -p "" \
80            -u "Top" \
81            -n "" < $< > $@
82
83$(srcdir)/rtc.texi: rtc.t
84        $(BMENU2) -p "" \
85            -u "Top" \
86            -n "" < $< > $@
87
88$(srcdir)/ata.texi: ata.t
89        $(BMENU2) -p "" \
90            -u "Top" \
91            -n "" < $< > $@
92
93$(srcdir)/ide-ctrl.texi: ide-ctrl.t
94        $(BMENU2) -p "" \
95            -u "Top" \
96            -n "" < $< > $@
97
98$(srcdir)/nvmem.texi: nvmem.t
99        $(BMENU2) -p "" \
100            -u "Top" \
101            -n "" < $< > $@
102#
103#  Grab the chapter on writing a network device driver.
104#
105$(srcdir)/network.texi: ../networking/driver.t
106        $(BMENU2) -p "" \
107            -u "Top" \
108            -n "" < $< > $@
109
110$(srcdir)/shmsupp.texi: shmsupp.t
111        $(BMENU2) -p "" \
112            -u "Top" \
113            -n "" < $< > $@
114
115$(srcdir)/analog.texi: analog.t
116        $(BMENU2) -p "" \
117            -u "Top" \
118            -n "" < $< > $@
119
120$(srcdir)/discrete.texi: discrete.t
121        $(BMENU2) -p "" \
122            -u "Top" \
123            -n "" < $< > $@
124
125EXTRA_DIST = adaintr.t analog.t clock.t console.t discrete.t init.t intro.t \
126    linkcmds.t makefiles.t nvmem.t rtc.t shmsupp.t support.t target.t \
127    timer.t
Note: See TracBrowser for help on using the repository browser.